NotAlone chat toggle

Toggles chan on notalone player

当前为 2022-06-15 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         NotAlone chat toggle
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Toggles chan on notalone player
// @author       EnergoStalin
// @match        https://notalone.tv/room/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=notalone.tv
// @grant        nonechrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/options.html#nav=new-user-script+editor
// @license      GPLV3
// ==/UserScript==

(function() {
    'use strict';

    const toggleAttribute = (elem, attr, val) => {
        const tgattr = (elem, attr, val) => {
            if(elem.hasAttribute(attr)) {
                let atrval = elem.getAttribute(attr);
                if(atrval.includes(val)) {
                    let rep = atrval.replace(val, '');
                    !rep.length ? elem.removeAttribute(attr) : elem.setAttribute(attr, rep);
                } else elem.setAttribute(attr, elem.getAttribute(attr) + val);
            } else elem.setAttribute(attr, val);
        }

        if(elem instanceof Array) {
            for(let key in elem) {
                tgattr(elem[key], attr, val);
            }
        } else tgattr(elem, attr, val);
    }

    window.addEventListener('keydown', (evt) => {
        if(!(evt.key === 'h' && evt.altKey)) return;

        evt.preventDefault();
        toggleAttribute(
            document.body.querySelector('#player_chat > div.grid66.bg-white.pd-0.playerGrid'),
            'style',
            'flex: auto;'
        );
        toggleAttribute(
            [
                document.body.querySelector('#player_chat > div.grid33.chat_grid.pd-0'),
                document.body.querySelector('body > main > div.grid.settings_container')
            ],
            'style',
            'display: none;'
        );
    })

    // Your code here...
})();