您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Change some designs in Tabview Youtube
当前为
/* ==UserStyle== @name Tabview Youtube Design Customization @version 0.1.0 @namespace github.com/cyfung1031 @license MIT @description Change some designs in Tabview Youtube @author CY Fung @supportURL https://github.com/cyfung1031/Tabview-Youtube/ @preprocessor stylus @var checkbox no-rounded-button "No Rounded Button" 0 @var checkbox no-tab-btn-text "No Tab Button Text" 0 ==/UserStyle== */ @-moz-document url-prefix("https://www.youtube.com/watch?v=") { if no-rounded-button { html .yt-spec-button-shape-next--size-m, html .yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--segmented-start, html .yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--icon-button.yt-spec-button-shape-next--segmented-end { border-radius:0; } } if no-tab-btn-text { .tab-btn[tyt-tab-content="#tab-info"] span, .tab-btn[tyt-tab-content="#tab-videos"] span, .tab-btn[tyt-tab-content="#tab-playlist"] span { display: none; } } }