-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (38 loc) · 995 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
36
37
38
39
40
41
42
43
44
45
{
"name": "Affiliate Link Creator",
"manifest_version": 2,
"version": "1.4",
"description": "Easily grab your affiliate link from any Amazon, Bookdepository or Threadless page",
"background": {
"scripts": [
"scripts/background.js",
"scripts/jsuri-1.1.1.min.js"
]},
"content_scripts": [{
"matches": [
"http://www.amazon.com/*",
"http://www.amazon.co.uk/*",
"http://www.amazon.ca/*",
"http://www.amazon.fr/*",
"http://www.threadless.com/*",
"http://www.bookdepository.co.uk/*",
"http://www.bookdepository.com/*"
],
"js": ["scripts/contentscript.js"]
}],
"page_action" : {
"default_icon" : "images/badge19.png",
"default_title" : "Affiliate link found",
"default_popup" : "pages/popup.html"
},
"permissions" : [
"tabs",
"clipboardWrite"
],
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"options_page" : "pages/options.html"
}