-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest-firefox.json
48 lines (48 loc) · 1.15 KB
/
manifest-firefox.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
{
"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": [
"contextualIdentities",
"tabs",
"cookies",
"activeTab",
"webRequest",
"webRequestBlocking",
"https://*.awsapps.com/*",
"https://*.cloudfront.net/*",
"https://*.aws.amazon.com/*"
],
"content_scripts": [
{
"all_frames": true,
"matches": [ "https://*.awsapps.com/*", "https://*.cloudfront.net/*", "https://*.aws.amazon.com/*" ],
"run_at": "document_start",
"js": [ "content-script.js" ]
}
],
"browser_specific_settings": {
"gecko": {
"id": "leapp-extension@noovolari.com"
}
}
}