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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Probely และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Probely Sequence Recorder

ดาวน์โหลดไฟล์ส่วนขยาย Probely Sequence Recorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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:\/\/*\/*"
    ]
}