Awesome Bookmarklets
Awesome Bookmarklets, a curated collection of powerful and handy bookmarklets to enhance your browsing experience. Bookmarklets are small JavaScript programs that can be stored as bookmarks in your web browser, providing quick and easy access to useful functionality without the need for extensions or add-ons.
Usability
Download Youtube Video
Open the current video on www.ssyoutube.com for download.
javascript:(function(){vard=window.location.href;d=d.replace("youtube.com","ssyoutube.com");window.open(d,'_blank');})();LINK:
Download Youtube VideoRemove All Videos
Remove all video elements from the page.
Pause All Videos
Pause all video elements from the page.
Stop All Videos
Stop all video elements from the page.
javascript:(document.querySelectorAll('video').forEach(v => {v.pause();v.currentTime = 0}))();LINK:
Stop All VideosRemove All Audios
Remove all audio elements from the page.
Pause All Audios
Pause all audio elements from the page.
Stop All Audios
Stop all audio elements from the page.
javascript:(document.querySelectorAll('audio').forEach(v => {v.pause();v.currentTime = 0}))();LINK:
Stop All AudiosDomain
Find Whois
Easily find the WHOIS information of the current website you're visiting with a single click.
javascript:(function(){window.location.href=`https://www.whois.com/whois/${window.location.hostname}`})();LINK:
Find WhoisSimilarWeb
Quickly access SimilarWeb statistics for the current website to analyze its traffic and performance.
javascript:(function(){window.location.href=`https://www.similarweb.com/website/${window.location.hostname}/`})();LINK:
SimilarWebWeb Development
Google Fonts Select All Styles
Quickly select all font styles on Google Fonts for easy downloading or comparison.
javascript:(function(){document.querySelectorAll('.selection-toggle-button').forEach(e => e.click())})();LINK:
Google Fonts Select All StylesScroll 100Vh
Scroll down by 100% of the viewport height, making it easier to navigate through long pages.
javascript:(function(){window.scrollTo(0, window.innerHeight + document.documentElement.scrollTop)})();LINK:
Scroll 100VhView Formatted JSON In Browser
Automatically format JSON content in the browser for better readability and debugging.
javascript:(function(){var element=document.querySelector("pre"); var obj=JSON.parse(element.innerText); element.innerHTML=JSON.stringify(obj,undefined,2);})();LINK:
View Formatted JSON In Browser