40 lines
762 B
JSON
40 lines
762 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Postify",
|
|
"version": "1.0.6",
|
|
"description": "Post current url to external web-server.",
|
|
"icons": {
|
|
"48": "icons/postify-48.png"
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "postify@mozilla.org",
|
|
"strict_min_version": "45.0"
|
|
}
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"notifications",
|
|
"storage",
|
|
"webRequest",
|
|
"*://localhost/*"
|
|
],
|
|
"background": {
|
|
"scripts": ["storage.js", "postify.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icons/postify-32.png",
|
|
"default_title": "Postify"
|
|
},
|
|
"commands": {
|
|
"_execute_browser_action": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+D"
|
|
}
|
|
}
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html"
|
|
}
|
|
}
|