Captur

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

Cos'è Captur?

Captur è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Captur

Scarica i file di estensione Captur in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
URL Ufficiale https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Descrizione This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Dimensione del File 76.18 KB
Conteggio Installazioni 32
Versione Corrente 1.0
Ultimo Aggiornamento 2019-03-25
Data di Pubblicazione 2019-03-20
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}