Youtube Unblocker

Automatically forwards country-blocked YouTube videos to clipzag.com and unblocks the video.

当前为 2023-06-19 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Youtube Unblocker
  3. // @namespace YTUB
  4. // @version 6.4
  5. // @description Automatically forwards country-blocked YouTube videos to clipzag.com and unblocks the video.
  6. // @author drhouse
  7. // @include https://www.youtube.com/watch*
  8. // @require http://code.jquery.com/jquery-3.4.1.min.js
  9. // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js
  10. // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js
  11. // @license CC-BY-NC-SA-4.0
  12. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  13. // @locale en
  14. // ==/UserScript==
  15.  
  16. this.$ = this.jQuery = jQuery.noConflict(true);
  17. (function($){
  18.  
  19. setTimeout(function(){
  20. if($("#subreason").text() === 'The uploader has not made this video available in your country'){
  21. location.replace('https://clipzag.com/watch' + location.search);
  22. }
  23. }, 1000);
  24.  
  25. })(jQuery);