mirror of
https://github.com/zadam/trilium.git
synced 2026-02-11 00:04:27 +01:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"version": "1.0.1",
|
|
"homepage_url": "https://github.com/zadam/trilium-web-clipper",
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
|
"icons": {
|
|
"32": "icons/32.png",
|
|
"48": "icons/48.png",
|
|
"96": "icons/96.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icons/32.png",
|
|
"default_title": "Trilium Web Clipper",
|
|
"default_popup": "popup/popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"js": [
|
|
"lib/browser-polyfill.js"
|
|
]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": [
|
|
"lib/browser-polyfill.js"
|
|
]
|
|
},
|
|
"commands": {
|
|
"saveSelection": {
|
|
"description": "Save the selected text into a note",
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+S"
|
|
}
|
|
},
|
|
"saveWholePage": {
|
|
"description": "Save the current page",
|
|
"suggested_key": {
|
|
"default": "Alt+Shift+S"
|
|
}
|
|
},
|
|
"saveCroppedScreenshot": {
|
|
"description": "Take a cropped screenshot of the current page",
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+E"
|
|
}
|
|
}
|
|
}
|
|
}
|