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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้านโยบายความเป็นส่วนตัว 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": [
                ""
            ]
        }
    ]
}