Discord Pro Mode

Discord mod mods

当前为 2023-12-17 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Discord Pro Mode
// @namespace    trysten
// @version      0.2.0
// @description  Discord mod mods
// @author       trysten
// @match        https://*.discord.com/app
// @match        https://*.discord.com/channels/*
// @icon         https://discord.com/assets/847541504914fd33810e70a0ea73177e.ico
// @license      GPLv3
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function respond(e) {
        // function showChar(e) {
        //     console.debug(`Key Pressed: ${e.key}\nCTRL key pressed: ${e.ctrlKey}\n`);
        // }
        // console.debug(showChar(e));

        if(e.altKey) {
          switch (e.key) {
            // disappear left menu and use ctrl + k to be mega
            case '[':
              var sidebar = document.getElementById('channels').parentElement.parentElement;
              var newstate = sidebar.style.display == "none" ? "" : "none";
              sidebar.style.display = newstate;
              e.preventDefault();
              break;
            // phat search
            case ']':
              var sidebar = document.getElementById('search-results').parentElement.parentElement;
              console.log(sidebar.style.width);
              if (sidebar.style.width == "" || sidebar.style.width == "418px") {
                var newstate = "836px";
              }
              else if (sidebar.style.width == "836px") {
                var newstate = "100%";
              }
              else {
                var newstate = "418px"
              }
                sidebar.style.width = newstate;
                e.preventDefault();
                break;
              default:
                Function.prototype(); //noop lol
                break;
            }
        }
    }
    document.addEventListener('keydown', respond, false);
})();