11c667b9bf
This adds a rudimentary web clipper browser extension. It allows to save page titles and URLs into cards. URLs will be written into the first found card property of type 'url' (if any). Relates to: #438
34 lines
760 B
JSON
34 lines
760 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Focalboard Web Clipper",
|
|
"version": "0.1.0",
|
|
"description": "Save websites directly into Focalboard",
|
|
"icons": {
|
|
"48": "icons/48.png",
|
|
"96": "icons/96.png"
|
|
},
|
|
"page_action": {
|
|
"browser_style": true,
|
|
"default_icon": {
|
|
"19": "icons/19.png",
|
|
"38": "icons/38.png"
|
|
},
|
|
"default_title": "Save to Focalboard",
|
|
"default_popup": "src/views/popup.html",
|
|
"show_matches": ["<all_urls>"]
|
|
},
|
|
"options_ui": {
|
|
"page": "src/views/options.html",
|
|
"browser_style": true
|
|
},
|
|
"web_accessible_resources": [],
|
|
"permissions": [
|
|
"<all_urls>",
|
|
"storage"
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "focalboard-web-clipper@mattermost.com"
|
|
}
|
|
}
|
|
}
|