-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest-chrome.json
92 lines (92 loc) · 2.39 KB
/
manifest-chrome.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"manifest_version": 2,
"name": "Leapp Multi-Console Extension",
"version": "0.1.8",
"description": "Leapp Multi AWS Console Browser Extension",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png"
},
"default_title": "Leapp Browser Extension",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background-script.js"
],
"persistent": true
},
"permissions": [
"tabs",
"cookies",
"activeTab",
"webRequest",
"webRequestBlocking",
"https://*.awsapps.com/*",
"https://*.cloudfront.net/*",
"https://*.amazon.com.be/*",
"https://*.amazon.com.br/*",
"https://*.amazon.ca/*",
"https://*.amazon.cn/*",
"https://*.amazon.eg/*",
"https://*.amazon.fr/*",
"https://*.amazon.de/*",
"https://*.amazon.in/*",
"https://*.amazon.com.au/*",
"https://*.amazon.it/*",
"https://*.amazon.co.jp/*",
"https://*.amazon.com.mx/*",
"https://*.amazon.nl/*",
"https://*.amazon.pl/*",
"https://*.amazon.sa/*",
"https://*.amazon.sg/*",
"https://*.amazon.es/*",
"https://*.amazon.se/*",
"https://*.amazon.com.tr/*",
"https://*.amazon.ae/*",
"https://*.amazon.co.uk/*",
"https://*.amazon.com/*"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"https://*.awsapps.com/*",
"https://*.cloudfront.net/*",
"https://*.amazon.com.be/*",
"https://*.amazon.com.br/*",
"https://*.amazon.ca/*",
"https://*.amazon.cn/*",
"https://*.amazon.eg/*",
"https://*.amazon.fr/*",
"https://*.amazon.de/*",
"https://*.amazon.in/*",
"https://*.amazon.com.au/*",
"https://*.amazon.it/*",
"https://*.amazon.co.jp/*",
"https://*.amazon.com.mx/*",
"https://*.amazon.nl/*",
"https://*.amazon.pl/*",
"https://*.amazon.sa/*",
"https://*.amazon.sg/*",
"https://*.amazon.es/*",
"https://*.amazon.se/*",
"https://*.amazon.com.tr/*",
"https://*.amazon.ae/*",
"https://*.amazon.co.uk/*",
"https://*.amazon.com/*"
],
"run_at": "document_start",
"js": [
"content-script.js"
]
}
]
}