-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 818 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 818 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
{
"manifest_version": 2,
"name": "MultiConvertor",
"version": "1.0.8",
"developer": {
"name": "DitherSky"
},
"icons": {
"48": "icons/icon.png"
},
"description": "Do most common web programmer's conversions with ease.",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["includes/multi-convertor.js"],
"run_at": "document_start",
"all_frames":true
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"page": "index.html"
},
"browser_action": {
"default_title": "MultiConvertor",
"default_icon": "icons/icon16.png",
"default_popup": "popup.html"
},
"applications": {
"gecko": {
"id": "multi-convertor@mozilla.firefox"
}
}
}