Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CopyDrop",
"version": "1.0.0",
"description": "Drag, drop, and store text & images in a private sidebar. Stay in flow, feel the focus.",
"permissions": [
"sidePanel",
"storage",
"clipboardWrite",
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"side_panel": {
"default_path": "index.html"
},
"commands": {
"toggle-sidebar": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "Open CopyDrop"
}
},
"action": {
"default_title": "Open CopyDrop",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}