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"
    ]
}