mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-13 06:13:06 +00:00
36 lines
1 KiB
JSON
36 lines
1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Point+",
|
|
"version": "1.0",
|
|
"author": "Alexey Skobkin",
|
|
"homepage_url": "https://bitbucket.org/skobkin/chrome_point_plus",
|
|
"description": "Some new features for point.im",
|
|
"options_page": "options.html",
|
|
"page_action": {
|
|
"default_icon": "images/icon38.png",
|
|
"default_title": "Point+",
|
|
"default_popup": "options.html"
|
|
},
|
|
"icons": {
|
|
"128": "images/icon128.png"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*.point.im/*"],
|
|
"js": ["js/jquery-1.10.1.min.js", "js/jquery.fancybox.pack.js", "js/jquery.fancybox-media.js", "js/point-plus.js"],
|
|
"css": ["css/jquery.fancybox.css"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
"images/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["js/background.js"]
|
|
},
|
|
"permissions": [
|
|
"http://*.point.im/*",
|
|
"storage",
|
|
"tabs"
|
|
]
|
|
} |