Daru/manifest.json

40 lines
749 B
JSON
Raw Permalink Normal View History

2021-02-07 13:41:33 +00:00
{
"manifest_version": 2,
"name": "Daru",
2021-02-07 19:45:32 +00:00
"version": "0.1.1",
2021-02-07 13:41:33 +00:00
"description": "An extension to integrate FG42 with Firefox (Possibly, it can be used with any org-mode setup).",
2021-02-07 19:45:32 +00:00
"background": {
"scripts": ["background.js"]
},
2021-02-07 13:41:33 +00:00
"icons": {
"48": "icons/48.png",
"96": "icons/96.png"
},
2021-02-07 19:45:32 +00:00
"permissions": ["tabs"],
"commands": {
"bookmark": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"linux": "Ctrl+Shift+0"
},
"description": "Bookmark the page in org mode"
}
},
2021-02-07 13:41:33 +00:00
2021-02-07 19:45:32 +00:00
"browser_specific_settings": {
"gecko": {
"id": "{fbc15118-c371-4ffd-b686-209a13ff6a5e}"
}
},
2021-02-07 13:41:33 +00:00
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["daru.js"]
}
]
}