forked from corbindavenport/wikipedia-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 854 Bytes
/
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
{
"manifest_version": 3,
"name": "Wikipedia Search",
"version": "11",
"author": "Corbin Davenport",
"homepage_url": "https://github.com/corbindavenport/wikipedia-search",
"description": "Search Wikipedia in every language from the address bar and context menu.",
"options_ui": {
"page": "settings.html",
"open_in_tab": false
},
"omnibox": {
"keyword": "wiki"
},
"permissions": [
"contextMenus",
"storage",
"notifications"
],
"minimum_chrome_version": "93",
"host_permissions": [
"https://*.wikipedia.org/*"
],
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": [
"https://*.wikipedia.org/*"
],
"js": [
"js/contentscript.js"
],
"run_at": "document_end"
}
],
"icons": {
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
}