Advertisement
Asicosilomu

YouTube Thumbnail Grabber (Bookmarklet)

Jul 21st, 2021
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Use a bookmarklet creator like https://caiorss.github.io/bookmarklet-maker to turn this into the final product
  2. // After you placed the bookmarklet on your bookmarks bar, go to any YouTube video and click it to instantly open its thumbnail in a new tab
  3.  
  4. if( window.location.hostname == "www.youtube.com" ) {
  5. if( window.location.pathname == "/watch" ) {
  6. var url = window.location.href
  7. var currentVideoID = null
  8. currentVideoID = url.replace("https://www.youtube.com/watch?v=", "");
  9. currentVideoID = currentVideoID.replace("http://www.youtube.com/watch?v=", "");
  10. currentVideoID = currentVideoID.replace("www.youtube.com/watch?v=", "");
  11. currentVideoID = currentVideoID.replace("youtube.com/watch?v=", "");
  12. window.open("https://i.ytimg.com/vi_webp/" + currentVideoID + "/maxresdefault.webp")
  13. } else {
  14. alert("YouTube Thumbnail Grabber only works on YouTube videos!")
  15. }
  16. } else {
  17. alert("YouTube Thumbnail Grabber only works on YouTube videos!")
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement