MCPcopy Create free account
hub / github.com/LeFroid/Viper-Browser / GM_listValues

Function GM_listValues

src/app/assets/javascript/GreaseMonkeyAPI.js:58–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56 }
57
58 function GM_listValues() {
59 const keys = [];
60 for (let i = 0; i < localStorage.length; i++) {
61 if (localStorage.key(i).startsWith(_uuid)) {
62 keys.push(localStorage.key(i).slice(_uuid.length));
63 }
64 }
65 return keys;
66 }
67
68 function GM_openInTab(url) {
69 window.open(url);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected