Google Drive Images Redirector

When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.

O que é Google Drive Images Redirector?

Google Drive Images Redirector é uma extensão do Chrome desenvolvida por dvhb, e sua principal característica é "When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.".

Baixar o arquivo CRX da Extensão Google Drive Images Redirector

Baixe arquivos de extensão Google Drive Images Redirector 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

                        When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.                    

Informações Básicas da Extensão

Nome Google Drive Images Redirector Google Drive Images Redirector
ID fndebjggeamljkklolciingbiankaobg
URL Oficial https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg
Descrição When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
Tamanho do Arquivo 5.65 KB
Contagem de Instalações 57
Versão Atual 1.0.1
Última Atualização 2015-07-29
Data de Publicação 2015-07-29
Desenvolvedor dvhb
Tipo de Pagamento free
Site da Extensão http://dvhb.ru
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Drive Images Redirector",
    "description": "",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": ".\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "background"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/drive.google.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}