-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest_firefox.json
More file actions
85 lines (85 loc) · 2.42 KB
/
manifest_firefox.json
File metadata and controls
85 lines (85 loc) · 2.42 KB
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
{
"manifest_version": 3,
"author": "Aionda GmbH",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://mail.aionda.com/",
"name": "__MSG_extensionName__",
"short_name": "TrashMail",
"version": "5.0.4",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "spam@trashmail.net",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"icons": {
"16": "images/Icon-16.png",
"18": "images/Icon-18.png",
"19": "images/Icon-19.png",
"32": "images/Icon-32.png",
"48": "images/Icon-48.png",
"64": "images/Icon-64.png",
"128": "images/Icon-128.png"
},
"permissions": [
"tabs",
"storage",
"contextMenus",
"webRequest",
"webRequestBlocking",
"webNavigation",
"notifications",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": ["api.js", "publicsuffixlist.js", "background.js", "guardian.js"]
},
"action": {
"default_icon": {
"16": "images/Icon-16.png",
"18": "images/Icon-18.png",
"19": "images/Icon-19.png",
"32": "images/Icon-32.png",
"48": "images/Icon-48.png",
"64": "images/Icon-64.png",
"128": "images/Icon-128.png"
},
"default_popup": "popup/popup.html",
"default_title": "__MSG_extensionName__"
},
"commands": {
"paste-address": {
"suggested_key": {
"default": "Ctrl+Shift+D"
},
"description": "Paste a disposable email address."
}
},
"content_scripts": [
{
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options/options.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": ["public_suffix.js", "api.js", "argon2-bundled.min.js", "srp-client.js", "libopaque.js", "opaque-client.js", "public_key.json"],
"matches": ["<all_urls>"]
}
]
}