This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name ZTE Router Info | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-11-03 | |
| // @description Show more info in ZTE MC888 Router | |
| // @author You | |
| // @match *://giga.cube/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| This Code can delete a Bamboo plan branch via a web browser. See the minified version down below to be used as browser bookmark. | |
| */ | |
| (function(){ | |
| url = new URL(location.href) | |
| params = new URLSearchParams(url.search) | |
| if (!params.has('planKey')) { | |
| alert('Browser is not on correct page.') | |
| return | |
| } |