您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Move navbar position, change font color, and more.
/* ==UserStyle== @name Choi Xo So 3 Mien Can Luu Y Nhung Gi De Trung So Dam? @description Move navbar position, change font color, and more. @namespace eight04.blogspot @version 0.1.8 @author eight04 <[email protected]> (https://github.com/eight04) @homepageURL http://example.com/ @supportURL http://example.com/issues @license unlicense @preprocessor stylus @var color fontColor "Font color" #123456 @var select navPos "Navbar position" { "Top": "top", "Bottom": "bottom" } @var checkbox fixNav "Fixed navbar" 1 @var text navHeight "Navbar height" 60px ==/UserStyle== */ @-moz-document domain("stackoverflow.com") { body { color: fontColor; background: #eee; } if navPos == "bottom" { body > .container { padding-top: 0 !important; } body > footer { padding-bottom: 60px !important; } body > header { top: auto !important; bottom: 0 !important; } } if not fixNav { body { position: relative !important; } body > header { position: absolute !important; } } body > header { height: navHeight !important; } }