您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Improves the functionality of the brainslayer theme for DD-WRT
当前为
- // ==UserScript==
- // @name Brainslayer DD-WRT Theme Improver
- // @version 1
- // @match http://192.168.0.1/*
- // @match http://192.168.1.1/*
- // @match http://192.168.2.1/*
- // @match http://10.0.0.1/*
- // @match http://10.0.1.1/*
- // @match https://192.168.0.1/*
- // @match https://192.168.1.1/*
- // @match https://192.168.2.1/*
- // @match https://10.0.0.1/*
- // @match https://10.0.1.1/*
- // @description Improves the functionality of the brainslayer theme for DD-WRT
- // @grant none
- // @namespace https://greasyfork.org/users/1783
- // ==/UserScript==
- let el = document.querySelector('div.submitFooter')
- el.style.position = 'fixed'
- el.style.backgroundColor = '#FAF9F9'
- el = document.querySelector('div#menu')
- el.style.backgroundColor = '#FAF9F9'
- el = document.querySelector('iframe#syslog')
- if (el) {
- document.querySelector('div#content').id = 'main'
- }