GoogleChrome / chrome-extensions-samples

Chrome Extensions Samples
https://developer.chrome.com/docs/extensions
Apache License 2.0
15.17k stars 8.13k forks source link

declaractiveNetRequest #833

Open absiddiqi opened 1 year ago

absiddiqi commented 1 year ago

Trying to add a parameter to any request going to getshowflow.com. Original request: getshowflow.com/abcd Modified request should be getshowflow.com/abcd?username=siddiqi

no luck so far, thanks for the help!

[ { "id": 1, "priority": 1, "action": { "type": "redirect", "redirect": { "redirectUrl": "https://www.getshowflow.com/abcd?&user=username", "permanent": false } }, "condition": { "urlFilter": "https://www.getshowflow.com/*", "resourceTypes": ["main_frame"] } } ]

Abhilekhgautam commented 1 year ago

Try this one, "action": { "type": "redirect", "redirect": { "url": "https://www.getshowflow.com/abcd?&user=username" } },

reference : https://developer.chrome.com/docs/extensions/reference/declarativeNetRequest/#example