-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathmanifest.firefox.json
File metadata and controls
35 lines (35 loc) · 1.01 KB
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
{
"manifest_version": 3,
"name": "jsdiff.diff(...)",
"version": "3.4.2",
"description": "Compare objects in memory with jsdiff.diff(old, new) devtools function",
"browser_specific_settings": {
"gecko": {
"id": "{d010c440-61aa-4972-a4ca-30838c593b51}",
"strict_min_version": "148.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"homepage_url": "https://github.com/zendive/jsdiff#readme",
"permissions": ["storage", "devtools", "activeTab"],
"host_permissions": ["<all_urls>"],
"background": {
"scripts": ["public/build/firefox/jsdiff-background.js"]
},
"devtools_page": "public/jsdiff-devtools.html",
"icons": {
"28": "public/img/panel-icon28.png",
"64": "public/img/panel-icon64.png",
"128": "public/img/panel-icon128.png"
},
"content_scripts": [
{
"js": ["public/build/jsdiff-console.js", "public/build/jsdiff-proxy.js"],
"matches": ["*://*/*"],
"all_frames": true,
"run_at": "document_start"
}
]
}