-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
29 lines (29 loc) · 1.21 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
{
"background": {
"scripts": [ "background.js" ]
},
"content_scripts": [ {
"all_frames": true,
"js": [ "jquery.min.js","script.js" ],
"matches": [ "\u003Call_urls>" ],
"run_at": "document_end"
} ],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"description": "Keyboard optimized for touch screen kiosk apps",
"icons": {
"128": "keyboard.png",
"16": "keyboard.png",
"48": "keyboard.png"
},
"manifest_version": 2,
"name": "CK Touch Keyboard",
"options_page": "options.html",
"page_action": {
"default_icon": "buttons/keyboard_2.png",
"default_popup": "toggle.html",
"default_title": "Touch Kiosk Keyboard Toggle"
},
"permissions": [ "tabs", "\u003Call_urls>" ],
"version": "1.0",
"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" ]
}