webext-dynamic-content-scripts
webext-dynamic-content-scripts copied to clipboard
WebExtension module: Automatically registers your content_scripts on domains added via permission.request
Quite difficult, but I wanted to open an issue to link to my last attempt: https://github.com/fregante/content-scripts-register-polyfill/pull/58#issuecomment-1157420311 We're here hoping that someone will simplify the process of starting Firefox and loading...
https://groups.google.com/a/chromium.org/g/chromium-extensions/c/_zKyp9XvIzY/m/a5fV4MTcAgAJ This can now appear in the manifest: ```js "content_scripts": [{ "js": ["content.js"], "matches": [""], "run_at": "document_start" }, { "world": "MAIN", "js": ["page.js"], "matches": [""], "run_at": "document_start" }], ```
Seeing this consistently in https://github.com/fregante/webext-dynamic-content-scripts/pull/70 ``` ● static: iframe › should load the content script after a reload, once Execution context was destroyed, most likely because of a navigation. 69...