Always desktop Wikihow

Redirects wikihow's mobile website to desktop

安装此脚本
作者推荐脚本

您可能也喜欢Reddit search on Google

安装此脚本
  1. // ==UserScript==
  2. // @name Always desktop Wikihow
  3. // @version 1.3
  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. // @match *://m.wikihow.fitness/*
  10. // @run-at document-start
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. location.href = location.href.replace("m.wikihow", "www.wikihow");
  18. })();