content-scripts-register-polyfill
content-scripts-register-polyfill copied to clipboard
WebExtensions: Polyfill for browser.contentScripts.register() for Chrome.
- https://github.com/puppeteer/puppeteer/issues/5743#issuecomment-621664876
- [x] Enable tests on CI, disabled due to https://github.com/smooth-code/jest-puppeteer/issues/419 - [ ] Split tests for tab-based and webNavigation-based versions - [ ] Add tests for cross-origin iframes - [x]...
Hi there! I am using your polyfill to register my content script via: `var content_script_registration_dict = {` `"matches":["*://*.twitch.tv/*"],` `"includeGlobs":['*player.twitch.tv*'],` `"js":[{file:"my_javascript.js"}],` `"css":[{file:"my_css.css"}]` `}` `chrome.contentScripts.register(content_script_registration_dict);` However I am noticing that my includeGlobs...
`matchAboutBlank` isn't considered anywhere in the code, it likely needs further thought
Step to Reproduce --- - Version 3.2.2 (imported via webext-dynamic-content-scripts version 9.2.2) - Grant optional permissions to `https://www.linkedin.com/*` - Open a new tab and type: linkedin.com - If you're logged...