-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
61 lines (52 loc) · 1.16 KB
/
Copy pathmanifest.json
File metadata and controls
61 lines (52 loc) · 1.16 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
{
"name" : "__MSG_extensionName__",
"short_name" : "Anchors Reveal",
"description" : "__MSG_extensionDescription__",
"manifest_version" : 3,
"version" : "1.4.1",
"author" : "Xavier “dascritch” Mouton-Dubosc",
"homepage_url" : "https://dascritch.net/post/2014/06/24/Sniffeur-d-ancre",
"default_locale" : "en",
"browser_specific_settings": {
"gecko": {
"id": "jid1-XX0TcCGBa7GVGw@jetpack",
"data_collection_permissions": {
"required": ["websiteContent"]
}
}
},
"permissions": [
"activeTab",
"scripting",
"storage",
"contextMenus"
],
"background": {
"scripts": ["background.js"],
"type": "module"
},
"options_ui": {
"page": "options.html"
},
"icons" : {
"16" : "data/icon-16.png",
"32" : "data/icon-32.png",
"64" : "data/icon-64.png"
},
"action": {
"default_area" : "navbar",
"default_icon": {
"16" : "data/icon-16.png",
"32" : "data/icon-32.png",
"64" : "data/icon-64.png"
},
"default_title": "__MSG_buttonDescription__"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+A"
}
}
}
}