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
官方網址 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"
            ]
        }
    ]
}