YouTube Buttons for Chat Filter

Turn drop down buttons to normal buttons

目前為 2023-01-03 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

/* ==UserStyle==
@name           YouTube Buttons for Chat Filter
@namespace      github.com/cyfung1031
@version        0.1.0
@description    Turn drop down buttons to normal buttons
@author         CY Fung
@license        MIT 
@preprocessor   stylus
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/live_chat") {
   
    yt-dropdown-menu.yt-sort-filter-sub-menu-renderer{
    
        #trigger, tp-yt-paper-button{
            
            pointer-events: none !important;
            user-select: none !important;
            touch-action: none !important;
            
            #label-icon {
                display:none;
            }
        }
        
        tp-yt-iron-dropdown#dropdown {
            display: block !important;
            position: fixed !important;
            width: 0 !important;
            height: 0 !important;
            padding: 0;
            margin: 0;
        }

        div#contentWrapper {
            padding: 0;
            margin: 0;
        }

        .dropdown-content.style-scope.tp-yt-paper-menu-button {
            padding: 0 !important;
            margin: 0 !important;
            transform: none !important;
            max-height: unset !important;
            max-width: unset !important;
            position: fixed;
            right: 64px;
            border-radius: 0 !important;
        }

        tp-yt-paper-listbox#menu {
            height: auto !important;
            width: 100% !important;
            display: flex;
            flex-direction: row;
            padding: 0 !important;
            border-radius: 0 !important;
        }

        a.yt-simple-endpoint.style-scope.yt-dropdown-menu {
            display: inline-flex !important;
            /* position: absolute !important; */
            z-index: 99999;
            width: 32px !important;
            height: 26px !important;
            background-color: var(--yt-live-chat-toast-background-color);
            border: 1px solid var(--yt-live-chat-toast-text-color);
            padding: 0 !important;
            margin: 0 !important;
            overflow: hidden;
            border-radius: 0 !important;
            color: var(--yt-live-chat-toast-text-color);
            cursor: pointer !important;
            transition: opacity 300ms, background 300ms;
        }

        a.yt-simple-endpoint.style-scope.yt-dropdown-menu::before {
            content: '三';
            font-size: 1.2rem;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none !important;
            user-select: none !important;
            touch-action: none !important;
            transform-origin: 50% 50%;
            transform: scaleX(200%)
        }

        a.yt-simple-endpoint.style-scope.yt-dropdown-menu > * {
            display: none !important;
        }


        a.yt-simple-endpoint.style-scope.yt-dropdown-menu + a.yt-simple-endpoint.style-scope.yt-dropdown-menu::before {
            content: '亖';
        }

        a.yt-simple-endpoint.style-scope.yt-dropdown-menu {
            --opacity: 0.5;
            opacity: var(--opacity);
        }



        a.yt-simple-endpoint.style-scope.yt-dropdown-menu.iron-selected:not(:hover) {
            --opacity: 0.8;
            /* color: black; */
        }

        a.yt-simple-endpoint.style-scope.yt-dropdown-menu:hover {
            /* background-color: var(--yt-live-interactivity-component-background-color); */

            --opacity: 0.7;
            /* color: black; */
        }

        a.yt-simple-endpoint.style-scope.yt-dropdown-menu.iron-selected:hover {
            /* background-color: var(--yt-live-interactivity-component-background-color); */

            --opacity: 1.0;
            /* color: black; */
        }



        a.yt-simple-endpoint.style-scope.yt-dropdown-menu[class].iron-selected {
            background-color: var(--yt-spec-commerce-tonal-hover);

        }

        
    }
}