ResourceOverride
ResourceOverride copied to clipboard
An extension to help you gain full control of any website by redirecting traffic, replacing, editing, or inserting new content.
According to [API docs](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/webRequest/onBeforeRequest) for `onBeforeRequest`, returning `{cancel: true}` will cancel the request. Yet this is exactly what we're doing when using `URL -> File` mode in [replaceContent](https://github.com/kylepaulsen/ResourceOverride/blob/f19d8bf6d9409e3a693c266d67827078506594a7/src/background/requestHandling.js#L14) the result...
Hello, Thanks for this really great plugin! :-) Redirecting javascript resources workes like a charm. The only struggle is that i want to override the "Host" header for a html...
So - I recently realized I could use a feature where I could actually give RO a URL and have it add it to the page as a new script...
This worked so well with our CRA implementation, allowing us to access network resources from our staging environment while redirecting to our local bundle was a huge leap forward in...
How can I add the resource override rules to the HTML file?
For https://github.com/kylepaulsen/ResourceOverride/issues/63
Hi, I have a trouble when modifying the header of a request. The header modify rules only take effect in the first tab group. I am not sure but I...
I'm using RO on the Edge browser. It works fine, but two times I had sad issue, where all my configured scripts just resets and disappeared. It's bad because I...
Hi. Is it possible to somehow add a dark theme to your extension? Something simple (see the image) would do.. One switch in the Option to load the style_dark.css file,...
Here is some sample code creating a SharedWorker: ` const myWorker = new SharedWorker('worker.js') myWorker.port.start() myWorker.port.onmessage = function (e) { console.log('Message received from worker', e) } window.setTimeout(() => { console.log('Posting...