Perfecto Sample Session Tool

Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page

ما هو Perfecto Sample Session Tool؟

Perfecto Sample Session Tool هو إضافة Chrome تم تطويرها بواسطة perfectoplugin، والميزة الرئيسية لها هي "Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Perfecto Sample Session Tool

قم بتنزيل ملفات الامتداد Perfecto Sample Session Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The Perfecto Session Tool uses the information already stored in the browser (cloud URL, authentication, session id, etc.) to run Appium commands with little to no configuration.                    

معلومات أساسية عن التمديد

الاسم Perfecto Sample Session Tool Perfecto Sample Session Tool
ID kaahoccgkcgbecneomiolciombockmnk
عنوان URL الرسمي https://chromewebstore.google.com/detail/perfecto-sample-session-t/kaahoccgkcgbecneomiolciombockmnk
الوصف Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page
حجم الملف 679 KB
عدد التثبيتات 51
النسخة الحالية 3.1
آخر تحديث 2022-06-06
تاريخ النشر 2022-05-26
المطور perfectoplugin
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://www.perforce.com/privacy-policy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Perfecto Sample Session Tool",
    "description": "Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page",
    "version": "3.1",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon128.png"
        }
    },
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background2.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.app.perfectomobile.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_page": "script-src 'self' unsafe-eval object-src 'self'"
    },
    "host_permissions": [
        "",
        "https:\/\/*.app.perfectomobile.com\/*"
    ],
    "permissions": [
        "webRequest",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/ssIcon.png",
                "\/images\/adaImage.png",
                "\/images\/Har.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}