Gatherhub Screen Capture

Help users to do screen casting on GatherHub.

Что такое Gatherhub Screen Capture?

Gatherhub Screen Capture - это расширение Chrome, разработанное https://www.gatherhub.xyz, и его основная функция - "Help users to do screen casting on GatherHub.".

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

screenshot
screenshot

Скачать файл CRX расширения Gatherhub Screen Capture

Скачайте файлы расширений Gatherhub Screen Capture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This extension could help to do screen capture automatically when you use the screen casting feature on www.gatherhub.com.                    

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

Название Gatherhub Screen Capture Gatherhub Screen Capture
ID bdnieppldnkoaajefibbnpmemgfdkben
Официальный URL https://chromewebstore.google.com/detail/gatherhub-screen-capture/bdnieppldnkoaajefibbnpmemgfdkben
Описание Help users to do screen casting on GatherHub.
Размер файла 11.96 KB
Количество установок 39
Текущая Версия 0.1.2
Последнее Обновление 2015-12-17
Дата публикации 2015-12-16
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://www.gatherhub.xyz
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gatherhub Screen Capture",
    "description": "Help users to do screen casting on GatherHub.",
    "version": "0.1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "browser_action": {
        "default_icon": "ghub-16.png"
    },
    "icons": {
        "16": "ghub-16.png",
        "48": "ghub-48.png",
        "128": "ghub-128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.gatherhub.xyz\/*",
                "https:\/\/www.gatherhub.com\/*",
                "https:\/\/192.168.10.10\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.gatherhub.xyz\/*",
            "https:\/\/www.gatherhub.com\/*",
            "https:\/\/192.168.10.10\/*"
        ]
    }
}