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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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