Modify response text of ajax requests
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "ModifyAjaxResponse",
"description": "Modify response text of ajax requests",
"version": "1.6.0",
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"action": {
"default_icon": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_scripts.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"/dist/pageInjectScript.js"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}