Always desktop Wikihow

Redirects wikihow's mobile website to desktop

当前为 2019-04-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         Always desktop Wikihow
// @version      1.1
// @description  Redirects wikihow's mobile website to desktop
// @author       Mario O.M.
// @namespace    https://github.com/marioortizmanero
// @match        *://*m.wikihow.*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    location.href = location.href.replace("m.wikihow.com/", "www.wikihow.com/");
})();