Add-to-Semantic-Scuttle-WebExt/manifest.json

34 lines
776 B
JSON
Raw Normal View History

2017-07-14 05:11:06 +00:00
{
"manifest_version" : 2,
"name": "Add to (Semantic)Scuttle",
"version" : "0.2",
2017-07-14 05:11:06 +00:00
"description" : "Allow to add bookmarks to (Semantic)Scuttle, a social bookmarking tool experimenting with tags and collaborative tag descriptions.",
"homepage_url" : "http://semanticscuttle.sourceforge.net/",
"icons" : {
"48" : "data/icon48.png"
},
2017-07-14 05:54:27 +00:00
"applications": {
"gecko": {
"id": "add2scuttle@spaceoasis.gotdns.org",
"strict_min_version": "52.0"
}
},
2017-07-14 05:11:06 +00:00
"options_ui" : {
"page": "options.html"
},
"permissions" : [
"storage",
"notifications",
"contextMenus",
"activeTab",
"tabs"],
"browser_action" : {
"default_title" : "Add to (Semantic)Scuttle",
"default_icon" : "data/icon48.png"
},
"background" : {
"scripts" : ["background.js"]
}
}