2018-05-16 15:16:14 +02:00
|
|
|
{
|
2018-06-14 20:11:22 +02:00
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Joplin Web Clipper [DEV]",
|
2021-06-17 19:26:58 +02:00
|
|
|
"version": "2.1.0",
|
2018-06-14 20:11:22 +02:00
|
|
|
"description": "Capture and save web pages and screenshots from your browser to Joplin.",
|
2019-04-18 15:59:17 +02:00
|
|
|
"homepage_url": "https://joplinapp.org",
|
2020-02-12 19:46:42 +02:00
|
|
|
"content_security_policy": "script-src 'self'; object-src 'self'",
|
2018-06-14 20:11:22 +02:00
|
|
|
"icons": {
|
2019-02-15 01:03:01 +02:00
|
|
|
"32": "icons/32.png",
|
2018-06-14 20:11:22 +02:00
|
|
|
"48": "icons/48.png",
|
|
|
|
"96": "icons/96.png"
|
|
|
|
},
|
|
|
|
"permissions": [
|
|
|
|
"activeTab",
|
|
|
|
"tabs",
|
|
|
|
"http://*/",
|
2018-05-24 19:32:30 +02:00
|
|
|
"https://*/",
|
2018-05-26 16:46:57 +02:00
|
|
|
"<all_urls>",
|
|
|
|
"storage"
|
2018-06-14 20:11:22 +02:00
|
|
|
],
|
|
|
|
"browser_action": {
|
|
|
|
"default_icon": "icons/32.png",
|
|
|
|
"default_title": "Joplin Web Clipper",
|
|
|
|
"default_popup": "popup/build/index.html"
|
|
|
|
},
|
2020-02-11 12:49:07 +02:00
|
|
|
"commands": {
|
|
|
|
"_execute_browser_action": {
|
|
|
|
"suggested_key": {
|
|
|
|
"default": "Alt+Shift+J"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"clipCompletePage": {
|
|
|
|
"suggested_key": {
|
|
|
|
"default": "Alt+Shift+C"
|
|
|
|
},
|
|
|
|
"description": "Clip complete page (uses last selected notebook)"
|
|
|
|
},
|
|
|
|
"clipCompletePageHtml": {
|
|
|
|
"description": "Clip complete page (HTML) (uses last selected notebook)"
|
|
|
|
},
|
|
|
|
"clipSimplifiedPage": {
|
|
|
|
"description": "Clip simplified page (uses last selected notebook)"
|
|
|
|
},
|
|
|
|
"clipUrl": {
|
|
|
|
"description": "Clip url (uses last selected notebook)"
|
|
|
|
},
|
|
|
|
"clipSelection": {
|
|
|
|
"description": "Clip selection (uses last selected notebook)"
|
|
|
|
}
|
|
|
|
},
|
2018-06-14 20:11:22 +02:00
|
|
|
"background": {
|
|
|
|
"scripts": [
|
|
|
|
"background.js"
|
|
|
|
],
|
|
|
|
"persistent": false
|
|
|
|
},
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{8419486a-54e9-11e8-9401-ac9e17909436}"
|
|
|
|
}
|
|
|
|
}
|
2020-02-15 17:22:38 +02:00
|
|
|
}
|