-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1 KB
/
manifest.json
File metadata and controls
53 lines (53 loc) · 1 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
{
"name": "ShareDis",
"version": "1.1.3",
"manifest_version": 3,
"description": "Simple webpage sharing tool",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
},
"gecko_android": {
"strict_min_version": "120.0"
}
},
"action": {
"default_icon": "assets/icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"functionality.js",
"background.js"
]
},
"page_action": {
"default_icon": "assets/svg.svg",
"default_title": "Share this page",
"show_matches": [
"http://*/*",
"https://*/*"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+X"
}
}
},
"permissions": [
"tabs",
"activeTab",
"storage",
"contextMenus",
"clipboardWrite",
"clipboardRead"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}