|
Revision 25, 0.8 kB
(checked in by hill, 4 months ago)
|
|
Added a new option to exclude adding a comment if a minimum number of words are selected.
|
| Line | |
|---|
| 1 | { |
|---|
| 2 | "name" : "Auto Copy", |
|---|
| 3 | "description" : "Automatically copy selected text to the clipboard. Has options for copying as plain text; including the URL in the copied text; etc.", |
|---|
| 4 | "version" : "2.1.0", |
|---|
| 5 | "icons" : { |
|---|
| 6 | "16" : "autoCopy-16.png", |
|---|
| 7 | "32" : "autoCopy-32.png", |
|---|
| 8 | "48" : "autoCopy-48.png", |
|---|
| 9 | "64" : "autoCopy-64.png", |
|---|
| 10 | "128" : "autoCopy-128.png" |
|---|
| 11 | }, |
|---|
| 12 | "minimum_chrome_version" : "13", |
|---|
| 13 | "options_page" : "options.html", |
|---|
| 14 | "background_page" : "background.html", |
|---|
| 15 | "permissions" : [ |
|---|
| 16 | "clipboardRead", |
|---|
| 17 | "clipboardWrite" |
|---|
| 18 | ], |
|---|
| 19 | "content_scripts" : [{ |
|---|
| 20 | "matches" : ["http://*/*", "https://*/*"], |
|---|
| 21 | "css" : [], |
|---|
| 22 | "js" : ["autoCopy.js"], |
|---|
| 23 | "run_at" : "document_end", |
|---|
| 24 | "all_frames" : true |
|---|
| 25 | }] |
|---|
| 26 | } |
|---|