Always desktop Wikihow

Redirects wikihow's mobile website to desktop

ही स्क्रिप्ट इंस्टॉल करा?
लेखकाने सुचवलेली स्क्रिप्ट

तुम्हाला कदाचित ही स्क्रिप्टदेखील आवडेल: Reddit search on Google.

ही स्क्रिप्ट इंस्टॉल करा
// ==UserScript==
// @name         Always desktop Wikihow
// @version      1.3
// @description  Redirects wikihow's mobile website to desktop
// @author       Mario O.M.
// @namespace    https://github.com/marioortizmanero
// @match        *://m.wikihow.com/*
// @match        *://m.wikihow.mom/*
// @match        *://m.wikihow.fitness/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

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