This repository has been archived on 2021-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
D3/D3-Annotator/manifest.json

47 lines
1011 B
JSON

{
"manifest_version": 2,
"name": "D3 Annotator",
"version": "1.0",
"browser_specific_settings": {
"gecko": {
"id" : "cs2lab@dsv.su.se",
"strict_min_version" : "54.0"
}
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_area": "navbar",
"default_title": "D3 Annotator",
"default_popup": "popup/default.html",
"default_icon": {
"64": "icons/64.png",
"48": "icons/48.png",
"32": "icons/32.png"
}
},
"permissions": ["storage", "tabs", "unlimitedStorage", "pkcs11", "contextMenus", "activeTab", "menus", "notifications"],
"icons" : {
"48" : "icons/48.png"
},
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
}
}
},
"description": "Make annotations on dark web sites to archive and label textual data from WWW or Onion sites.",
"options_ui": {
"page": "popup/options.html",
"open_in_tab": true
}
}