wikia youtube

Automatically redirect Wikia video pages to the appropriate Youtube link.

  1. // ==UserScript==
  2. // @name wikia youtube
  3. // @namespace wikia-monobook
  4. // @description:en Automatically redirect Wikia video pages to the appropriate Youtube link.
  5. // @include *.wikia.com/wiki/File:*
  6. // @version 1
  7. // @grant none
  8. // @run-at document-end
  9. // @description Automatically redirect Wikia video pages to the appropriate Youtube link.
  10. // ==/UserScript==
  11. // @run-at document-start
  12. // @run-at document-end
  13. // @run-at document-idle
  14.  
  15.  
  16. if (window.playerParams && window.playerParams.jsParams && window.playerParams.jsParams.videoId) {
  17. location.replace('https://youtu.be/' + window.playerParams.jsParams.videoId);
  18. }

QingJ © 2025

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