webextensions/manifest.json

51 lines
988 B
JSON
Raw Normal View History

2018-04-08 22:33:36 +02:00
{
2018-11-20 22:00:09 +01:00
"name": "Shikiryu Read Later",
2018-12-12 08:06:04 +01:00
"version": "0.0.2.2",
2018-04-08 22:33:36 +02:00
"manifest_version": 2,
"description": "__MSG_extensionDescription__",
2018-04-08 22:33:36 +02:00
"icons": {
"16": "icons/icon-16.png",
"128": "icons/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/background.js"
]
},
"permissions": [
2018-11-20 22:00:09 +01:00
"activeTab",
"storage"
2018-04-08 22:33:36 +02:00
],
"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": {
2018-10-01 07:23:43 +02:00
"16": "icons/favicon-16x16.png",
"32": "icons/favicon-32x32.png",
"96": "icons/favicon-96x96.png"
2018-04-08 22:33:36 +02:00
},
"default_title": "Shikiryu Bookmarklet",
"default_popup": "popup.html"
},
"applications": {
"gecko": {
"id": "bookmarklet@shikiryu.com"
2018-04-08 22:33:36 +02:00
}
}
}