Now that Google Chrome extensions can register Service Workers, how can I use them in order to modify HTTP responses from all hosts, e.g. by replacing all occurrences of cat
with dog
?
Below is a sample code from Craig Russell, but how to use it inside Chrome extensions and bind it to all hosts?
self.addEventListener('fetch', function(event) {
event.respondWith(
fetch(event.request).then(function(response) {
var init = {
status: response.status,
statusText: response.statusText,
headers: {'X-Foo': 'My Custom Header'}
};
response.headers.forEach(function(v,k) {
init.headers[k] = v;
});
return response.text().then(function(body) {
return new Response(body.replace(/cat/g, 'dog'), init);
});
})
);
});
Solution
≪manifest.json≫:
≪asd≫:
≪sdf.js≫:
Go to ≪page url≫ (≪chrome-extension://≪ext id≫/≪page path≫≫) and see the replacements.
Standalone response
≪manifest.json≫ and ≪asd≫ same as above.
≪sdf.js≫:
Btw
Serviceworker has other events that can be delved into eg:
Alternatives
Note that currently serviceworker [–cf webNavigation, webRequest] is the only way to do this because some lamer in Google development team has decided that its "insecure" for response-modifying webNavigation and webRequest.
Note
Chrome bugs: