Captur

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

¿Qué es Captur?

Captur es una extensión de Chrome desarrollada por Unknown, y su función principal es "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Captur

Descarga archivos de extensión Captur en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
URL Oficial https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Descripción This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Tamaño del Archivo 76.18 KB
Cantidad de Instalaciones 32
Versión Actual 1.0
Última Actualización 2019-03-25
Fecha de Publicación 2019-03-20
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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"
    ]
}