-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
67 lines (67 loc) · 1.52 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
{
"manifest_version": 2,
"name": "Wikidata",
"version": "0.632",
"default_locale": "en",
"description": "Display information from wikidata.",
"icons": {
"48": "icons/wikidata.svg",
"96": "icons/wikidata.svg",
"128": "icons/wikidata.svg"
},
"options_ui": {
"page": "options/index.html",
"browser_style": true
},
"browser_action": {
"default_icon": "icons/wikidata.svg",
"default_title": "Wikibase for Web"
},
"sidebar_action": {
"default_icon": "icons/wikibase.svg",
"default_title": "Wikibase view",
"default_panel": "sidebar/index.html",
"open_at_install": true
},
"permissions": [
"<all_urls>",
"scripting",
"search",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"background": {
"page": "background/index.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_end",
"js": [
"content/url-reference.js",
"content/movementObserver.js",
"content/selection-observer.js",
"content/hash-change-observer.js",
"content/element-highlighter.js"
]
}
],
"web_accessible_resources": ["/content/element-highlighter.css"],
"browser_specific_settings": {
"gecko": {
"id": "{8b348118-df28-4d6b-aa90-4e90049c7f19}",
"strict_min_version": "102.0"
}
},
"commands": {
"toggle-sidebar": {
"suggested_key": {
"default": "Alt+3"
},
"description": "Show/hide sidebar"
}
}
}