Scandium Test Scenario Recorder

Turn your site interactions into actionable steps that can be repeated

Scandium Test Scenario Recorder란 무엇입니까?

Scandium Test Scenario Recorder은(는) Scandium Systems에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn your site interactions into actionable steps that can be repeated"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Scandium Test Scenario Recorder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Scandium helps testers, and non-technical product owners create test automation of the web apps by recording their site interactions and replaying the recorded steps.                    

확장 프로그램 기본 정보

이름 Scandium Test Scenario Recorder Scandium Test Scenario Recorder
ID dokpohocljpghkmobklkccilgdiecgok
공식 URL https://chromewebstore.google.com/detail/scandium-test-scenario-re/dokpohocljpghkmobklkccilgdiecgok
설명 Turn your site interactions into actionable steps that can be repeated
파일 크기 293 KB
설치 횟수 259
현재 버전 0.0.58 private beta
최근 업데이트 2024-03-06
출시 날짜 2023-02-15
평점 5.00/5 총 12 개의 평점
개발자 Scandium Systems
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://getscandium.com
개인정보 보호 정책 페이지 URL https://getscandium.com/scandium-privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scandium Test Scenario Recorder",
    "description": "Turn your site interactions into actionable steps that can be repeated",
    "version": "0.0.58",
    "version_name": "0.0.58 private beta",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "incognito": "spanning",
    "permissions": [
        "storage",
        "webNavigation",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "match_about_blank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/playback.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "http:\/\/*.getscandium.com\/*",
                "https:\/\/*.getscandium.com\/*",
                "http:\/\/localhost\/*",
                "https:\/\/*.pages.dev\/*",
                "http:\/\/*.pages.dev\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/activate.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/hackDialogBoxes.js",
                "icons\/stop.png",
                "icons\/assertion.png",
                "icons\/mail.png",
                "icons\/sms.png",
                "icons\/move.png",
                "icons\/dropdown.png",
                "frames\/overlayFrame\/frame.html",
                "frames\/overlayFrame\/toolbar.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/*.getscandium.com\/*",
            "https:\/\/*.getscandium.com\/*",
            "http:\/\/localhost\/*",
            "http:\/\/127.0.0.1\/*",
            "https:\/\/*.draft-scandium-controller.pages.dev\/*",
            "http:\/\/*.draft-scandium-controller.pages.dev\/*",
            "https:\/\/draft-scandium-controller.pages.dev\/app\/*",
            "http:\/\/draft-scandium-controller.pages.dev\/*"
        ]
    }
}