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.
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');})();
Remove all video elements from the page.
javascript:(document.querySelectorAll('video').forEach(v => v.remove()))();
Pause all video elements from the page.
javascript:(document.querySelectorAll('video').forEach(v => v.pause()))();
Stop all video elements from the page.
javascript:(document.querySelectorAll('video').forEach(v => {v.pause();v.currentTime = 0}))();
Remove all audio elements from the page.
javascript:(document.querySelectorAll('audio').forEach(v => v.remove()))();
Pause all audio elements from the page.
javascript:(document.querySelectorAll('audio').forEach(v => v.pause()))();
Stop all audio elements from the page.
javascript:(document.querySelectorAll('audio').forEach(v => {v.pause();v.currentTime = 0}))();
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}`})();
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}/`})();
Quickly select all font styles on Google Fonts for easy downloading or comparison.
javascript:(function(){document.querySelectorAll('.selection-toggle-button').forEach(e => e.click())})();
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)})();
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);})();