Probely Sequence Recorder

You can use Probely Sequence Recorder to save and export a login or navigation sequence to be replayed during scans. To record a…

Probely Sequence Recorder란 무엇입니까?

Probely Sequence Recorder은(는) Probely에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can use Probely Sequence Recorder to save and export a login or navigation sequence to be replayed during scans. To record a…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Probely Sequence Recorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can use Probely Sequence Recorder to save and export a login or navigation sequence to be replayed  during scans.

To record a sequence, you need to:

- Download Probely's extension by clicking on "Add to Chrome".
- Click on Probely's icon in the address bar to open up the plugin, type your target URL and  "Start recording".
- Access your target and make sure to perform every step necessary for the sequence to work as intended.
- Copy or download the recorded sequence.
- Paste or upload the sequence to your target settings on Probely.

Once those steps are completed, you can start a scan!                    

확장 프로그램 기본 정보

이름 Probely Sequence Recorder Probely Sequence Recorder
ID hldkejmiceccmcfgicnfbgminlidgkph
공식 URL https://chromewebstore.google.com/detail/probely-sequence-recorder/hldkejmiceccmcfgicnfbgminlidgkph
설명 You can use Probely Sequence Recorder to save and export a login or navigation sequence to be replayed during scans. To record a…
파일 크기 180 KB
설치 횟수 321
현재 버전 0.0.3
최근 업데이트 2024-02-26
출시 날짜 2021-05-19
평점 5.00/5 총 5 개의 평점
개발자 Probely
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://probely.com/
도움말 페이지 URL https://help.probely.com/
개인정보 보호 정책 페이지 URL https://probely.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 3,
    "name": "Probely Sequence Recorder",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-34.png",
            "48": "icon-48.png"
        }
    },
    "icons": {
        "128": "icon-128.png"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}