-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
35 lines (35 loc) · 900 Bytes
/
manifest.json
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
{
"background": {
"persistent": true,
"page": "background.html"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "js/content.js" ],
"matches": [ "http://*/*", "https://*/*","file://*/*"]
} ],
"browser_action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"options_ui":{
"options_page": "options.html",
"page": "options.html",
"browser_style": true
},
"description": "Convert foregin currency into nepali currency",
"icons": {
"128": "img/logo.png"
},
"manifest_version": 2,
"name": "NC",
"offline_enabled": true,
"permissions": [ "<all_urls>", "tabs", "webNavigation", "storage"],
"version": "1.0",
"web_accessible_resources": [ "img/logo.png", "img/logo-gray.png"],
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}