-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 881 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
{
"name": "Titulky plus",
"short_name": "Titulky+",
"author": "Jan Richter",
"version": "0.92",
"description": "Vylepšení webu titulky.com pro pohodlnější práci (nejen pro překladatele).",
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
"*.png",
"*.jpg"
],
"content_scripts": [
{
"js": ["jquery.min.js","chosen.jquery.min.js","pusher.min.js","autolinker.min.js","content.js"],
"matches": ["*://*.titulky.com/*"],
"css": ["chosen.min.css","cstyle.css"]
}
],
"page_action": {
"default_icon": "icon16.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"permissions": [
"tabs",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"minimum_chrome_version": "33.0.0"
}