1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  | 
{
    "manifest_version": 2,
    "name": "Simple extension to replace site-served JS",
    "short_name": "Simple extension to replace site-served JS",
    "version": "2025.7.27",
    "author": "Woj. Kosior",
    "description": "Control your \"Web\" browsing.",
    "applications": {
	"gecko": {
	    "id": "{13796007-0fcc-45ce-ac5c-32624d1734bd}",
	    "strict_min_version": "60.0"
	}
    },
    "icons":{
	"128": "icons/extension-128.png",
	"64": "icons/extension-64.png",
	"48": "icons/extension-48.png",
	"32": "icons/extension-32.png",
	"16": "icons/extension-16.png"
    },
    "permissions": [
	"webRequest",
	"webRequestBlocking",
	"tabs",
	"<all_urls>"
    ],
    "browser_action": {
	"browser_style": true,
	"default_icon": {
	    "128": "icons/extension-128.png",
	    "64": "icons/extension-64.png",
	    "48": "icons/extension-48.png",
	    "32": "icons/extension-32.png",
	    "16": "icons/extension-16.png"
	},
	"default_title": "Simple extension to replace site-served JS"
    },
    "background": {
	"persistent": true,
	"scripts": [
            "background/background.js"
	]
    },
    "content_scripts": [$contentScriptSpecs$]
}
  |