-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
59 lines (59 loc) · 1.44 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
{
"action": {
"default_title": "Highbrighter",
"default_popup": "views/popup.html",
"default_icon": "icons/highlighter48.png"
},
"author": "Jahn08",
"background": {
"service_worker": "background_scripts/menuInitialisation.js",
"type": "module"
},
"content_security_policy": {},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content_scripts/index.js"
],
"css": [
"content/index.css"
]
}
],
"default_locale": "en",
"description": "__MSG_description__",
"homepage_url": "https://github.com/Jahn08/WEB-PAGE-HIGHLIGHTER",
"icons": {
"48": "icons/highlighter48.png",
"96": "icons/highlighter96.png"
},
"manifest_version": 3,
"name": "Highbrighter",
"omnibox": {
"keyword": "highbrighter"
},
"options_ui": {
"page": "views/preferences.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"contextMenus",
"storage",
"unlimitedStorage"
],
"version": "2.0.1",
"web_accessible_resources": [
{
"resources": [
"content_scripts/*.js"
],
"matches": [
"*://*/*"
]
}
]
}