Captur

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

Co to jest Captur?

Captur to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Captur

Pobierz pliki rozszerzeń Captur w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
Oficjalny URL https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Opis This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Rozmiar pliku 76.18 KB
Liczba instalacji 32
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-03-25
Data Publikacji 2019-03-20
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    ]
}