-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
47 lines (42 loc) · 844 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
44
45
46
47
{
"manifest_version": 2,
"name": "Mark Wrap",
"description": "This extension wraps the selected text in a markdown link with the contents of the clipboard",
"version": "0.1",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"activeTab",
"clipboardRead"
],
"commands": {
"toggle-feature-foo": {
"suggested_key": {
"default": "Ctrl+Shift+V",
"mac": "Command+Shift+V"
},
"description": "Toggle feature foo"
}
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"contentscript.js"
]
}
],
"icons": {
"19": "assets/icon19.png",
"38": "assets/icon38.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
}
}