-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.28 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
{
"name": "Get Source Code",
"description": "Helps ticket resellers work with their partners to determine whether or not they should buy a ticket.",
"version": "1.0.3",
"manifest_version": 3,
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js",
"run_at": "document_start"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"jquery.min.js",
"jquery-ui.min.js",
"main/main.js",
"main/observer.js"
],
"css": [
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"webRequest",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"tabs",
"activeTab"
],
"web_accessible_resources": [
{
"resources": [ "images/*" ],
"matches": [ "http://*/*","https://*/*","*://*/*" ]
}
],
"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"
},
"action": {
"default_popup": "popup.html"
}
}