Perfecto Sample Session Tool

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

What is Perfecto Sample Session Tool?

Perfecto Sample Session Tool is a Chrome extension developed by perfectoplugin, and its main feature is "Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page".

Extension Screenshots

screenshot

Download Perfecto Sample Session Tool Extension CRX File

Download Perfecto Sample Session Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Perfecto Sample Session Tool Perfecto Sample Session Tool
ID kaahoccgkcgbecneomiolciombockmnk
Official URL https://chromewebstore.google.com/detail/perfecto-sample-session-t/kaahoccgkcgbecneomiolciombockmnk
Description Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page
File Size 679 KB
Installation Count 51
Current Version 3.1
Last Updated 2022-06-06
Publish Date 2022-05-26
Developer perfectoplugin
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.perforce.com/privacy-policy
Supported Languages 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": [
                ""
            ]
        }
    ]
}