-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 805 Bytes
/
manifest.json
File metadata and controls
37 lines (37 loc) · 805 Bytes
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
{
"manifest_version": 2,
"name": "HTTP Status Code",
"description": "Shows HTTP response status code as a badge icon.",
"version": "1.2.0",
"homepage_url": "https://github.com/amad/firefox-status-code",
"icons": {
"48": "icon.svg",
"96": "icon.svg"
},
"browser_action": {
"default_icon": {
"16": "icon.svg",
"32": "icon.svg"
}
},
"permissions": [
"<all_urls>",
"tabs",
"webNavigation",
"webRequest"
],
"background": {
"scripts": [
"index.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"all_frames": true,
"run_at": "document_start"
}
]
}