Perfecto Sample Session Tool

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

Co je Perfecto Sample Session Tool?

Perfecto Sample Session Tool je rozšíření Chrome vyvinuté perfectoplugin, a jeho hlavní funkcí je „Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Perfecto Sample Session Tool

Stáhněte si soubory rozšíření Perfecto Sample Session Tool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Perfecto Sample Session Tool Perfecto Sample Session Tool
ID kaahoccgkcgbecneomiolciombockmnk
Oficiální URL https://chromewebstore.google.com/detail/perfecto-sample-session-t/kaahoccgkcgbecneomiolciombockmnk
Popis Takes high-res screenshot, run Accessibility report, or download a HAR file on specified page
Velikost souboru 679 KB
Počet instalací 51
Aktuální Verze 3.1
Poslední Aktualizace 2022-06-06
Datum Vydání 2022-05-26
Vývojář perfectoplugin
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.perforce.com/privacy-policy
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}