Google Drive Images Redirector

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

什么是Google Drive Images Redirector?

Google Drive Images Redirector是由dvhb开发的Chrome扩展程序,该扩展的主要功能是“When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.”。

下载Google Drive Images Redirector扩展crx文件

下载Google Drive Images Redirector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Google Drive Images Redirector Google Drive Images Redirector
ID fndebjggeamljkklolciingbiankaobg
官方URL https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg
简介 When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
文件大小 5.65 KB
安装次数 57
当前版本 1.0.1
更新时间 2015-07-29
上架时间 2015-07-29
开发者 dvhb
付费类型 free
扩展官网 http://dvhb.ru
支持的语言 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"
            ]
        }
    ]
}