forked from mywebshortcuts/mywebshortcuts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 1.12 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
{
"manifest_version": 3,
"name": "My Web Shortcuts",
"version": "1.0.0",
"icons": {
"16": "src/assets/16x16.png",
"32": "src/assets/32x32.png",
"48": "src/assets/48x48.png",
"128": "src/assets/128x128.png"
},
"action": {
"default_icon": {
"16": "src/assets/16x16.png",
"24": "src/assets/24x24.png",
"32": "src/assets/32x32.png"
},
"default_title": "My Web Shortcuts",
"default_popup": "src/popup/popup.html"
},
"background": {
"service_worker": "src/background/background.js"
},
"content_scripts": [
{
"matches": [
"https://opensource.guide/*",
"https://www.google.com/*",
"https://www.heyprakhar.xyz/*"
],
"all_frames": true,
"js": [
"src/scripts/useCustomShortcut.js"
]
}
],
"options_page": "src/options/options.html",
"permissions": [
"tabs",
"activeTab",
"scripting",
"storage",
"nativeMessaging"
]
}