-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
32 lines (32 loc) · 1.09 KB
/
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
{
"manifest_version": 2,
"name": "Dam koto?",
"description": "This extension adds a price tag in native currency selected beside the current price tags of amazon's price tags.",
"version": "3.1.2",
"permissions": ["tabs", "activeTab", "storage"],
"browser_action": {
"default_icon": {
"19": "images/main_icon_19.png",
"38": "images/main_icon_38.png"
},
"default_popup":"main_panel.html"
},
"background": {
"scripts": ["background.js"]
},
"icons": { "16": "images/main_icon_16.png",
"48": "images/main_icon_48.png",
"128": "images/main_icon_128.png" },
"content_scripts": [
{
"run_at" :"document_end",
"matches": ["https://www.amazon.com/*", "https://www.amazon.co.uk/*","https://www.amazon.ca/*", "https://www.aliexpress.com/*", "https://www.alibaba.com/*"],
"js": ["jquery-3.1.0.min.js","content.js"]
} ],
"web_accessible_resources":[
"flags/*.png",
"css/*.css",
"fonts/*.woff2",
"images/*.png"
]
}