Captur

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

Co je Captur?

Captur je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Captur

Stáhněte si soubory rozšíření Captur ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
Oficiální URL https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Popis This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Velikost souboru 76.18 KB
Počet instalací 32
Aktuální Verze 1.0
Poslední Aktualizace 2019-03-25
Datum Vydání 2019-03-20
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
    ]
}