Update Directory Format

This commit is contained in:
Michael 2024-12-18 18:00:03 -06:00
parent 8e8e0aecc3
commit 6ae632bc44
Signed by: TheShadowEevee
GPG key ID: 7A8AA92B3BAFAB75
3 changed files with 3 additions and 4 deletions

View file

@ -10,15 +10,14 @@
}, },
"background": { "background": {
"scripts": ["remove-by-URL.js"] "scripts": ["./src/remove-by-URL.js"]
}, },
"content_scripts": [ "content_scripts": [
{ {
"matches": ["*://*.github.com/*"], "matches": ["*://*.github.com/*"],
"js": ["remove-by-element.js"], "js": ["./src/remove-by-element.js"],
"run_at": "document_idle", "run_at": "document_end"
"world": "MAIN"
} }
], ],