-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (37 loc) · 944 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
{
"manifest_version": 2,
"name": "BlizzCon Ticket Grabber",
"description": "Aids in the purchasing of blizzcon tickets",
"version": "0.3.0",
"permissions": [
"tabs",
"https://www.universe.com/*",
"http://www.universe.com/*"
],
"browser_action": {
"default_icon": "img/icon-48.png"
},
"content_scripts" : [{
"matches" : [
"https://www.universe.com/*",
"http://www.universe.com/*"
],
"js" : ["js/jquery.js","js/app.js"],
"run_at": "document_end"
}],
"options_page": "options.html",
"icons": {
"16":"img/icon-16.png",
"48":"img/icon-48.png",
"128":"img/icon-128.png"
},
"background": {
"scripts": ["js/background.js"]
},
"web_accessible_resources": [
"js/jquery.js",
"js/background.js",
"js/bootstrap.min.js",
"js/app.js"
]
}