Captur

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

Τι είναι το Captur;

Το Captur είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Captur

Λήψη αρχείων επέκτασης Captur σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
Επίσημο URL https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Περιγραφή This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Μέγεθος Αρχείου 76.18 KB
Αριθμός Εγκαταστάσεων 32
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2019-03-25
Ημερομηνία Δημοσίευσης 2019-03-20
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}