-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmanifest.json
49 lines (49 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"manifest_version": 3,
"name": "EasyConcertKorea",
"description": "Extension to get easily the concert on korean website",
"version": "1.0",
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": ["inject.js"],
"matches": ["<all_urls>"]
}
],
"content_scripts": [
{
"matches": [
"http://ticket.yes24.com/Pages/English/Sale/FnPerfSaleProcess.aspx",
"http://ticket.yes24.com/Pages/English/Sale/FnPerfSaleProcess.aspx*"
],
"js": ["scripts/common/hourToPm.js", "scripts/common/storage.js", "scripts/common/sleep.js", "scripts/yes24/seat.js"]
},
{
"matches": [
"https://tkglobal.melon.com/reservation/popup/onestop.htm/*",
"https://tkglobal.melon.com/reservation/popup/onestop.htm"
],
"js": ["scripts/common/storage.js", "scripts/common/sleep.js", "scripts/melonticket/seat.js"],
"run_at":"document_end"
},
{
"matches": [
"https://tkglobal.melon.com/performance/index.htm*",
"https://tkglobal.melon.com/performance/index.htm"
],
"js": ["scripts/common/hourToPm.js", "scripts/common/storage.js", "scripts/common/sleep.js", "scripts/melonticket/concert.js"],
"run_at":"document_end"
}
],
"action": {
"default_popup": "popup/mainPage/index.html",
"default_icon": "assets/logo_easy_korea_concert.png"
},
"icons": {
"16": "assets/logo_easy_korea_concert.png",
"48": "assets/logo_easy_korea_concert.png",
"128": "assets/logo_easy_korea_concert.png"
}
}