mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
27 lines
502 B
JSON
Executable File
27 lines
502 B
JSON
Executable File
{
|
|
|
|
"description": "Altering HTTP responses",
|
|
"manifest_version": 2,
|
|
"name": "http-response-filter",
|
|
"version": "1.0",
|
|
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/http-response",
|
|
"icons": {
|
|
"48": "pen.svg"
|
|
},
|
|
|
|
"permissions": [
|
|
"webRequest", "webRequestBlocking", "https://example.com/*"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "57.0a1"
|
|
}
|
|
}
|
|
|
|
}
|