adding to gitea repo

This commit is contained in:
Lucca Pirovano
2026-06-15 14:20:38 -04:00
commit cd7a2bd773
21 changed files with 1994 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// ==UserScript==
// @name Rename Tab Alt+F2
// @match *://*/*
// @run-at document-start
// ==/UserScript==
addEventListener('keydown', e=>{
if (e.altKey && e.key==='F2') {
e.preventDefault();
let t = prompt('New title:', document.title);
document.title = t?.trim() || document.title;
}
}, true);