Skip to content

plsankar/awesome-bookmarklets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');})();

Remove All Videos

Remove all video elements from the page.

javascript:(document.querySelectorAll('video').forEach(v => v.remove()))();

Pause All Videos

Pause all video elements from the page.

javascript:(document.querySelectorAll('video').forEach(v => v.pause()))();

Stop All Videos

Stop all video elements from the page.

javascript:(document.querySelectorAll('video').forEach(v => {v.pause();v.currentTime = 0}))();

Remove All Audios

Remove all audio elements from the page.

javascript:(document.querySelectorAll('audio').forEach(v => v.remove()))();

Pause All Audios

Pause all audio elements from the page.

javascript:(document.querySelectorAll('audio').forEach(v => v.pause()))();

Stop All Audios

Stop all audio elements from the page.

javascript:(document.querySelectorAll('audio').forEach(v => {v.pause();v.currentTime = 0}))();

Domain

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}`})();

SimilarWeb

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}/`})();

Web 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())})();

Scroll 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)})();

View 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);})();

About

Awesome Bookmarklets, a curated collection of powerful and handy bookmarklets to enhance your browsing experience.

Topics

Resources

License

Stars

Watchers

Forks