wikia monobook

Automatically redirect Wikia pages to Monobook theme

当前为 2016-04-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name wikia monobook
  3. // @namespace wikia-monobook
  4. // @include *.wikia.com/*
  5. // @description Automatically redirect Wikia pages to Monobook theme
  6. // @version 1
  7. // @grant none
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. var suffix = 'useskin=monobook';
  12.  
  13. var url = document.location.href;
  14.  
  15. if (!url.includes(suffix)) {
  16. var sep = url.includes('?') ? '&' : '?';
  17. location.replace(url + sep + suffix);
  18. }