-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
68 lines (68 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "Ticket Decision Assistant - Mv2",
"description": "TDA helps ticket resellers work with their pullers to determine whether or not they should buy a ticket.",
"version": "2.0.8",
"manifest_version": 2,
"background": {
"service_worker": "background.js",
"run_at": "document_start"
},
"content_scripts": [
{
"matches": ["*://checkout.ticketmaster.com/*", "*://*.ticketmaster.com/checkout/*", "*://checkout.livenation.com/*", "*://checkout.ticketmaster.ca/*", "*://*.ticketmaster.ca/checkout/*"],
"js": [
"jquery.min.js",
"jquery-ui.min.js",
"main/all_files.js"
],
"css": [
],
"run_at": "document_start"
},
{
"matches": ["*://checkout.ticketmaster.com/*", "*://*.ticketmaster.com/checkout/*", "*://checkout.livenation.com/*", "*://checkout.ticketmaster.ca/*", "*://*.ticketmaster.ca/checkout/*"],
"js": [
"sweetalert.js"
],
"css": [
"animate.min.css",
"sweetalert.css",
"three-dots.min.css"
],
"all_frames": true
},
{
"matches": ["https://discord.com/*"],
"js": [
"jquery.min.js",
"bindly.js",
"discord/discord.js"
],
"css": [
"discord/discord.css",
"three-dots-white.min.css"
],
"run_at": "document_start"
}
],
"permissions": [
"*://checkout.ticketmaster.com/*", "*://*.ticketmaster.com/checkout/*", "*://checkout.livenation.com/*", "*://checkout.ticketmaster.ca/*", "*://*.ticketmaster.ca/checkout/*", "https://discord.com/*",
"storage",
"tabs",
"activeTab"
],
"web_accessible_resources": [
"images/*", "collectDataFromWindowVars.js", "3dots.html"
],
"incognito": "spanning",
"icons": {
"16": "./images/ticket-assistant-logo-png-32.png",
"32": "./images/ticket-assistant-logo-png-32.png",
"48": "./images/ticket-assistant-logo-png-32.png",
"128": "./images/ticket-assistant-logo-png-32.png"
},
"browser_action": {
"default_icon": "/images/ticket-assistant-logo-png-32.png",
"default_popup": "popup.html"
}
}