Always desktop Wikihow

Redirects wikihow's mobile website to desktop

目前为 2019-04-20 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Always desktop Wikihow
  3. // @version 1.2
  4. // @description Redirects wikihow's mobile website to desktop
  5. // @author Mario O.M.
  6. // @namespace https://github.com/marioortizmanero
  7. // @match *://m.wikihow.com/*
  8. // @match *://m.wikihow.mom/*
  9. // @run-at document-start
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. location.href = location.href.replace("m.wikihow", "www.wikihow");
  17. })();