Google Drive Images Redirector

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

What is Google Drive Images Redirector?

Google Drive Images Redirector is a Chrome extension developed by dvhb, and its main feature is "When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.".

Download Google Drive Images Redirector Extension CRX File

Download Google Drive Images Redirector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Google Drive Images Redirector Google Drive Images Redirector
ID fndebjggeamljkklolciingbiankaobg
Official URL https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg
Description When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
File Size 5.65 KB
Installation Count 57
Current Version 1.0.1
Last Updated 2015-07-29
Publish Date 2015-07-29
Developer dvhb
Payment Type free
Extension Website http://dvhb.ru
Supported Languages 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"
            ]
        }
    ]
}