Copy the selected text only, when the mouse button is pressed for a specified time.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Copy the selected text only, when the mouse button is pressed for a specified time.",
"manifest_version": 2,
"name": "AutoCopy",
"version": "1.4.3",
"applications": {
"gecko": {
"id": "autocopy@mozilla.org",
"strict_min_version": "63.0"
}
},
"permissions": [
"clipboardWrite",
"storage",
"<all_urls>",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"128": "copy.png"
},
"default_title": "AutoCopy"
},
"icons": {
"128": "copy.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"content.css"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
},
{
"matches": [
"<all_urls>"
],
"css": [
"notification.css"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options.html",
"browser_style": true
}
}