Captur

This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further

Что такое Captur?

Captur - это расширение Chrome, разработанное Unknown, и его основная функция - "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

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

screenshot

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

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

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

                        This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further                    

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

Название Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
Официальный URL https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Описание This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Размер файла 76.18 KB
Количество установок 32
Текущая Версия 1.0
Последнее Обновление 2019-03-25
Дата публикации 2019-03-20
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Captur",
    "author": "Pankaj Prakash Shinde ([email protected])",
    "version": "1.0",
    "description": "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "FileSaver.js",
                "jquery.wordexport.js",
                "underscore.js",
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon_on-19.png",
        "48": "icons\/icon_on-19.png",
        "128": "icons\/icon_on-19.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon_off-19.png"
    },
    "web_accessible_resources": [
        "jquery.min.js",
        "FileSaver.js",
        "jquery.wordexport.js",
        "underscore.js"
    ]
}