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": "Select Text to Copy - Allow Copy & Select Range",
"description": "\uc6b0\ud074\ub9ad \uc81c\ud55c \ubb34\uc2dc, \ud074\ub9ad\uc73c\ub85c \uae00 \uc804\uccb4 \ubcf5\uc0ac Allow Copy & Select Range",
"version": "1.1.0",
"permissions": [
"activeTab",
"scripting",
"clipboardWrite",
"storage"
],
"icons": {
"16": "images\/main\/icon_16.png",
"32": "images\/main\/icon_32.png",
"48": "images\/main\/icon_48.png",
"128": "images\/main\/icon_128.png"
},
"action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts\/content.js"
],
"all_frames": true,
"run_at": "document_idle"
}
],
"background": {
"service_worker": "scripts\/background.js"
},
"commands": {
"activate-copy-mode": {
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z"
},
"description": "Hot Key: select text to copy"
}
}
}