41 lines
920 B
JSON
41 lines
920 B
JSON
{
|
|
"name": "Shikiryu Read Later",
|
|
"version": "0.0.3",
|
|
"manifest_version": 2,
|
|
"description": "__MSG_extensionDescription__",
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"128": "icons/icon-128.png"
|
|
},
|
|
"default_locale": "en",
|
|
"background": {
|
|
"scripts": ["scripts/background.js"]
|
|
},
|
|
"permissions": ["activeTab", "storage"],
|
|
"options_ui": {
|
|
"page": "options.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"js": ["scripts/contentscript.js"],
|
|
"run_at": "document_end",
|
|
"all_frames": false
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "icons/favicon-16x16.png",
|
|
"32": "icons/favicon-32x32.png",
|
|
"96": "icons/favicon-96x96.png"
|
|
},
|
|
"default_title": "Shikiryu Bookmarklet",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "bookmarklet@shikiryu.com"
|
|
}
|
|
}
|
|
}
|