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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy & Download for Drive एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } |