-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (30 loc) · 744 Bytes
/
manifest.json
File metadata and controls
32 lines (30 loc) · 744 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
{
"manifest_version": 2,
"name": "Javascript Injector",
"version": "1.0.2",
"browser_specific_settings": {
"gecko": {
"id": "javascript-injector@arturrosa.pl",
"strict_min_version": "59.0a1"
}
},
"description": "Evaluate Javascript code on pages at a given domain without being blocked by CSP. Create custom shortcuts with JS.",
"icons": {
"48": "icons/js-48.png",
"128": "icons/js-128.png"
},
"permissions": [
"storage",
"<all_urls>"
],
"browser_action": {
"default_icon": {
"48": "icons/js-48.png"
},
"default_title": "Javascript Injector",
"default_popup": "dist/popup/index.html"
},
"background": {
"scripts": ["dist/background/background.js"]
}
}