Captur

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

O que é Captur?

Captur é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Captur

Baixe arquivos de extensão Captur no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
URL Oficial https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Descrição This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Tamanho do Arquivo 76.18 KB
Contagem de Instalações 32
Versão Atual 1.0
Última Atualização 2019-03-25
Data de Publicação 2019-03-20
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}