Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Copy Text Easily",
"description": "Extension that lets you view and reuse clipboard history with drag and drop, and copy text with one click",
"version": "2.6.0",
"action": {
"default_popup": "popup.html",
"default_title": "Copy Text Easily",
"default_icon": "images\/enabled.png"
},
"permissions": [
"storage",
"tabs",
"unlimitedStorage",
"offscreen",
"clipboardRead",
"commands",
"contextMenus"
],
"commands": {
"open-clipboard": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "Command+Shift+H"
},
"description": "Open clipboard history"
},
"open-settings": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Open extension settings"
}
},
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "images\/enabled.png",
"48": "images\/enabled.png",
"128": "images\/enabled.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"style.css",
"images\/enabled.png",
"images\/disabled.png",
"panel.html",
"images\/bookmark-manager.png",
"images\/link-snapper.png",
"images\/text-to-image.png"
],
"matches": [
"<all_urls>"
]
}
]
}