forked from Atrasoftware/chrome-virtual-keyboard-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.23 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
{
"name": "Virtual Keyboard",
"description": "Fullscreen on-screen virtual keyboard for touch screen devices",
"manifest_version": 2,
"version": "1.11.1",
"icons": { "16": "keyboard.png",
"48": "keyboard.png",
"128": "keyboard.png" },
"background": {
"scripts": ["background.js"]
},
"options_page": "options.html",
"page_action": {
"default_icon": "buttons/keyboard_2.png",
"default_title": "Virtual Keyboard Toggle",
"default_popup": "toggle.html"
},
"permissions": [
"tabs", "<all_urls>"
],
"web_accessible_resources": [
"keyboard.html",
"keyboard_*.html",
"keyboard_en.html",
"keyboard_ru.html",
"style.css",
"options.js",
"toggle.html",
"toggle.js",
"icons/*",
"icons/backspace.png",
"icons/backspace-e.png",
"icons/close.png",
"icons/enter.png",
"icons/enter-e.png",
"icons/settings.png",
"icons/shift.png",
"buttons/*",
"buttons/keyboard_1.png",
"buttons/keyboard_2.png",
"buttons/keyboard_3.png"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["script.js"],
"run_at": "document_end",
"all_frames": true
}
]
}