()
| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected