webext-dynamic-content-scripts icon indicating copy to clipboard operation
webext-dynamic-content-scripts copied to clipboard

WebExtension module: Automatically registers your content_scripts on domains added via permission.request

Results 12 webext-dynamic-content-scripts issues
Sort by recently updated
recently updated
newest added

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" }], ```

enhancement
help wanted
good first issue