Captur

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

Captur là gì?

Captur là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Captur

Tải xuống các tệp mở rộng Captur dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Captur Captur
ID aacoejeofdjipkomicinbdcffhhmadff
URL Chính Thức https://chromewebstore.google.com/detail/captur/aacoejeofdjipkomicinbdcffhhmadff
Mô tả This Add-In helps you to take screenshot while executing your flow and export them to word file to email it further
Kích Thước Tệp 76.18 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-03-25
Ngày Phát Hành 2019-03-20
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}