YouTube Thumbnail Retriever

Created for anyone who wants the URL of a YouTube video and doesn't want to work for it.

当前为 2014-11-06 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @id 1033369
  3. // @name YouTube Thumbnail Retriever
  4. // @version 1
  5. // @namespace YTTR10fd
  6. // @author 10fd3nd3rm3n
  7. // @description Created for anyone who wants the URL of a YouTube video and doesn't want to work for it.
  8. // @include https://www.youtube.com/*
  9. // @run-at document-end
  10. // ==/UserScript==
  11. try {
  12. var thumbnailurl = document.getElementsByTagName('META') [6];
  13. var win = window.open(thumbnailurl.content, '_blank');
  14. } catch (e)
  15. {
  16. }