-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
69 lines (67 loc) · 1.81 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
69
{
"manifest_version": 2,
"author": "Aionda GmbH",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://trashmail.com/",
"name": "__MSG_extensionName__",
"short_name": "TrashMail",
"version": "4.1.0",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
}
},
"default_locale": "en",
"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",
"menus",
"storage"
],
"background": {
"scripts": ["api.js", "publicsuffixlist.js", "background.js"]
},
"browser_action": {
"browser_style": true,
"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": {
"browser_style": true,
"page": "options/options.html"
}
}