-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·37 lines (37 loc) · 947 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
{
"name": "PyeongChang tickets bookmarkify",
"version": "0.0.2",
"manifest_version": 2,
"description": "Purchase 2018 Olympic & Paralympic Winter Games tickets from the PyeongChang Organizing Committee. resale/search/bookmarkify",
"homepage_url": "https://github.com/itsazzad/pyeongChang-tickets-bookmarkify",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"permissions": [
"webRequest",
"tabs",
"storage",
"https://*.pyeongchang2018.com/*",
"http://*.pyeongchang2018.com/*",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://*.pyeongchang2018.com/*",
"http://*.pyeongchang2018.com/*"
],
"js": [
"js/jquery/jquery-3.2.1.min.js",
"src/inject/inject.js"
]
}
]
}