Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Copy & Download for Drive",
"short_name": "copy-gdrive",
"version": "0.0.6",
"description": "Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.",
"minimum_chrome_version": "18",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"permissions": [
"*://docs.google.com/*",
"*://drive.google.com/*",
"notifications"
],
"background": {
"scripts": [
"back.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://drive.google.com/file/*"
],
"js": [
"content-preview-file.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://drive.google.com/drive/*"
],
"js": [
"content-preview.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://docs.google.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
}