BlueCat Address Manager Page Size 256

Add option for Page Size of 256 in BlueCat Address Manager

当前为 2018-02-22 提交的版本,查看 最新版本

// ==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);
    }
}