Add-to-Semantic-Scuttle-WebExt/manifest.json
2017-08-12 18:25:57 +02:00

48 lines
1.1 KiB
JSON

{
"manifest_version" : 2,
"name": "Add to (Semantic)Scuttle",
"version" : "0.8",
"description" : "Add bookmarks to a (Semantic)Scuttle instance, a social bookmarking tool experimenting with tags and collaborative tag descriptions.",
"homepage_url" : "https://addons.mozilla.org/fr/firefox/addon/add-to-semantic-scuttle/",
"icons" : {
"48" : "data/icon48.png"
},
"applications": {
"gecko": {
"id": "add2scuttle@spaceoasis.gotdns.org",
"strict_min_version": "52.0"
}
},
"options_ui" : {
"page": "options.html"
},
"permissions" : [
"storage",
"notifications",
"contextMenus",
"activeTab",
"tabs"
],
"browser_action" : {
"default_title" : "Add to (Semantic)Scuttle",
"default_icon" : "data/icon48.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"]
}
],
"background" : {
"scripts" : ["background.js"]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Add to (Semantic)Scuttle keyboard shortcut"
}
}
}