Copy & Download for Drive

Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.

O que é Copy & Download for Drive?

Copy & Download for Drive é uma extensão do Chrome desenvolvida por donxd, e sua principal característica é "Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Copy & Download for Drive

Baixe arquivos de extensão Copy & Download for Drive no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Copy & Download for Drive Copy & Download for Drive
ID femoceldnoapcgdolkaonodhaadjhoad
URL Oficial https://chromewebstore.google.com/detail/copy-download-for-drive/femoceldnoapcgdolkaonodhaadjhoad
Descrição Adds the option of direct copy to the clipboard of Google drive text content, or download links found within spreadsheets.
Tamanho do Arquivo 22.6 KB
Contagem de Instalações 260
Versão Atual 0.0.6
Última Atualização 2021-02-10
Data de Publicação 2020-07-26
Desenvolvedor donxd
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}