-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (46 loc) · 1.24 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
{
"manifest_version": 2,
"name": "ChangeCase",
"description": "Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.",
"permissions": [ "tabs", "http://*/*", "https://*/*", "contextMenus" ],
"version": "0.1.1",
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"64": "64.png",
"128": "128.png"
},
"background": {
"page": "background.html"
},
"commands": {
"uppercase": {
"description": "Uppercase",
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
}
},
"lowercase": {
"description": "Lowercase",
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
}
},
"convertcase": {
"description": "Convert case",
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z"
}
}
},
"content_scripts": [ {
"all_frames": true,
"js": [ "content.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_end"
} ]
}