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 - это расширение Chrome, разработанное dvhb, и его основная функция - "When activated shows a direct link to a Google Drive image instead of opening it in the Google Drive Viewer.".

Скачать файл CRX расширения Google Drive Images Redirector

Скачайте файлы расширений 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"
            ]
        }
    ]
}