您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add option for Page Size of 256 in BlueCat Address Manager
当前为
// ==UserScript== // @name BlueCat Address Manager Page Size 256 // @namespace * // @description Add option for Page Size of 256 in BlueCat Address Manager // @include */app* // @version 1 // @grant none // @author Marius Galm // @copyright 2018, Marius Galm // @license MIT // @icon https://www.bluecatnetworks.com/wp-content/themes/bluecat/assets/img/icons/favicon.ico // ==/UserScript== if (document.readyState === "interactive" ) { var sel = document.getElementById("PropertySelection"); if(sel){ var option = document.createElement("option"); option.text = "256"; option.value = "256"; sel.appendChild(option); } }