wiki-toggle-panel

Uses a keyboard shortcut to toggle the left panel in wikis.

目前為 2020-06-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name         wiki-toggle-panel
// @version      0.0
// @description  Uses a keyboard shortcut to toggle the left panel in wikis.
// @match        https://*.wikipedia.org/*
// @namespace    https://gf.qytechs.cn/en/users/217495-eric-toombs
// ==/UserScript==


function hide() {
    console.log("hiding");
    document.getElementById("mw-panel").hidden = true;
    document.getElementById("content").style.marginLeft = "0em";
    document.panel_hidden = true;
}
function show() {
    console.log("showing");
    document.getElementById("content").style.marginLeft = "10em";
    document.getElementById("mw-panel").hidden = false;
    document.panel_hidden = false;
}

hide();

document.onkeydown = async function(k) {
    if (k.which === "F".codePointAt(0)) {
        if (document.panel_hidden) {
            show();
        } else {
            hide();
        }
    }
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址