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 là gì?

Google Drive Images Redirector là một tiện ích mở rộng Chrome được phát triển bởi dvhb, và tính năng chính của nó là "When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.".

Tải xuống tệp CRX của tiện ích mở rộng Google Drive Images Redirector

Tải xuống các tệp mở rộng Google Drive Images Redirector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Drive Images Redirector Google Drive Images Redirector
ID fndebjggeamljkklolciingbiankaobg
URL Chính Thức https://chrome.google.com/webstore/detail/google-drive-images-redir/fndebjggeamljkklolciingbiankaobg
Mô tả When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.
Kích Thước Tệp 5.65 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-07-29
Ngày Phát Hành 2015-07-29
Nhà Phát Triển dvhb
Loại Thanh Toán free
Trang Web Mở Rộng http://dvhb.ru
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}