Google Drive Images Redirector

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

Co je Google Drive Images Redirector?

Google Drive Images Redirector je rozšíření Chrome vyvinuté dvhb, a jeho hlavní funkcí je „When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.“.

Stáhnout soubor CRX rozšíření Google Drive Images Redirector

Stáhněte si soubory rozšíření Google Drive Images Redirector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Google Drive Images Redirector Google Drive Images Redirector
ID fndebjggeamljkklolciingbiankaobg
Oficiální URL https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg
Popis When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
Velikost souboru 5.65 KB
Počet instalací 57
Aktuální Verze 1.0.1
Poslední Aktualizace 2015-07-29
Datum Vydání 2015-07-29
Vývojář dvhb
Typ Platby free
Webové stránky Rozšíření http://dvhb.ru
Podporované Jazyky 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"
            ]
        }
    ]
}