youtube-nsfw

NSFW Youtube

目前為 2016-04-07 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @author @leoncastro
  3. // @namespace https://github.com/leoncastro
  4. // @name youtube-nsfw
  5. // @version 0.01
  6. // @description NSFW Youtube
  7. // @icon http://s.ytimg.com/yts/img/favicon_48-vfl1s0rGh.png
  8. // @include /^(?:https?:)?\/\/(www\.)?youtube\.com\/.*/
  9. // @compatible firefox+greasemonkey
  10. // @compatible chrome+tampermonkey
  11. // @grant none
  12. // @run-at document-end
  13. // ==/UserScript==
  14. //
  15. if(document.getElementById('watch7-player-age-gate-content'))
  16. {
  17. document.getElementById('player-unavailable').classList.add('hid');
  18. var p=document.getElementById('player-api');
  19. p.classList.remove('off-screen-target');
  20. p.innerHTML='<iframe class="player-width player-height" src="//www.youtube.com/embed/'+document.querySelector('meta[itemprop="videoId"]').getAttribute('content')+'?autoplay=1"/>';
  21. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址