Copy & Download for Drive
Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.
什么是Copy & Download for Drive?
Copy & Download for Drive是由donxd开发的Chrome扩展程序,该扩展的主要功能是“Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.”。
扩展截图
下载Copy & Download for Drive扩展crx文件
下载Copy & Download for Drive扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension allows you to copy the content of text files directly from Google Drive when previewing them. Also, if there are links to Drive content in spreadsheets, the options for copying (text files) and self-downloading are added. Avoiding having to make the selection or download manually.
扩展基本信息
名称 | Copy & Download for Drive |
ID | femoceldnoapcgdolkaonodhaadjhoad |
官方URL | https://chromewebstore.google.com/detail/copy-download-for-drive/femoceldnoapcgdolkaonodhaadjhoad |
简介 | Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets. |
文件大小 | 22.6 KB |
安装次数 | 260 |
当前版本 | 0.0.6 |
更新时间 | 2021-02-10 |
上架时间 | 2020-07-26 |
开发者 | donxd |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
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" } ] } |