Skip to content

Instantly share code, notes, and snippets.

@Graff46
Graff46 / userChrome.css
Last active September 29, 2025 17:59
Theme for Firefox: Ultra mini
#browser {
padding-top: 5px;
}
#urlbar-container .urlbar-input-container {
border: none !important;
}
#navigator-toolbox {
position: fixed !important;
@Graff46
Graff46 / HTMLparser.js
Created August 28, 2025 19:58
HTML parser on JS
const o = Object.create(null);
function mtest(str) {
var ch;
var state = 0;
var accStr = String();
var arr = '';
for (const i in str) {