Google Docs Show Image Source

Show the original image source for google doc images.

Что такое Google Docs Show Image Source?

Google Docs Show Image Source - это расширение Chrome, разработанное Jeremy Hay, и его основная функция - "Show the original image source for google doc images.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Docs Show Image Source

Скачайте файлы расширений Google Docs Show Image Source в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Adds links to view or copy the original images used in a google doc. This extension is tied pretty closely to the current implementation of google docs. Therefore, this extension is likely to break. If this happens please file an issue on github: https://github.com/jeremypepper/google-doc-image-links-extension/issues and I'll try to fix it asap.                    

Основная информация о расширении

Название Google Docs Show Image Source Google Docs Show Image Source
ID gkaedlofdpjmokmeoihckjkinfjcilkf
Официальный URL https://chromewebstore.google.com/detail/google-docs-show-image-so/gkaedlofdpjmokmeoihckjkinfjcilkf
Описание Show the original image source for google doc images.
Размер файла 37.28 KB
Количество установок 258
Текущая Версия 0.0.21
Последнее Обновление 2016-01-28
Дата публикации 2016-01-27
Рейтинг 3.40/5 Всего 5 оценок
Разработчик Jeremy Hay
Тип оплаты free
Официальный сайт расширения https://github.com/jeremypepper/google-doc-image-links-extension
URL страницы помощи https://github.com/jeremypepper/google-doc-image-links-extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.21",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}