Captur

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

Was ist Captur?

Captur ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Erweiterungsscreenshots

screenshot

Captur-Erweiterungs-CRX-Datei herunterladen

Laden Sie Captur-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
Offizielle URL https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Beschreibung This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Dateigröße 76.18 KB
Installationsanzahl 32
Aktuelle Version 1.0
Letztes Update 2019-03-25
Veröffentlichungsdatum 2019-03-20
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}