Captur

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

Hvad er Captur?

Captur er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Udvidelsesskærmbilleder

screenshot

Download Captur-udvidelses-CRX-fil

Download Captur-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
Officiel URL https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Beskrivelse This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Filstørrelse 76.18 KB
Antal Installationer 32
Nuværende Version 1.0
Senest Opdateret 2019-03-25
Udgivelsesdato 2019-03-20
Bedømmelse 4.00/5 Samlet 1 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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"
    ]
}