Skip to content

Instantly share code, notes, and snippets.

View ponchofiesta's full-sized avatar

Michael Richter ponchofiesta

View GitHub Profile
@ponchofiesta
ponchofiesta / zte.js
Last active November 3, 2025 15:13 — forked from tpoechtrager/zte.js
// ==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==
@ponchofiesta
ponchofiesta / bamboo_delete_plan_branch.js
Last active September 16, 2021 09:58
Delete Bamboo plan Branch
/*
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
}