手機版維基百科自動切換至桌面版

當訪問 m.wikipedia.org 時切換至桌面版

目前為 2022-05-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name             手機版維基百科自動切換至桌面版
// @namespace        http://tampermonkey.net/
// @version          0.1
// @description      當訪問 m.wikipedia.org 時切換至桌面版
// @author           Rabbit1345
// @license          MIT
// @match            https://*.m.wikipedia.org/*
// @icon             https://wikipedia.org/static/favicon/wikipedia.ico
// @grant            none
// ==/UserScript==


(function() {
    document.getElementById("mw-mf-display-toggle").click();

})();