Captur

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

Apa itu Captur?

Captur adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Captur

Unduh file ekstensi Captur dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
URL Resmi https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Deskripsi This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Ukuran File 76.18 KB
Jumlah Instalasi 32
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-03-25
Tanggal Publikasi 2019-03-20
Penilaian 4.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}