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 |
Eメール | [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" } ] } |