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 là gì?

Probely Sequence Recorder là một tiện ích mở rộng Chrome được phát triển bởi Probely, và tính năng chính của nó là "You can use Probely Sequence Recorder to save and export a login or navigation sequence to be replayed during scans. To record a…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Probely Sequence Recorder

Tải xuống các tệp mở rộng Probely Sequence Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Probely Sequence Recorder Probely Sequence Recorder
ID hldkejmiceccmcfgicnfbgminlidgkph
URL Chính Thức https://chromewebstore.google.com/detail/probely-sequence-recorder/hldkejmiceccmcfgicnfbgminlidgkph
Mô tả You can use Probely Sequence Recorder to save and export a login or navigation sequence to be replayed during scans. To record a…
Kích Thước Tệp 180 KB
Số Lần Cài Đặt 321
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2024-02-26
Ngày Phát Hành 2021-05-19
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Probely
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://probely.com/
URL Trang Trợ Giúp https://help.probely.com/
URL Trang Chính Sách Bảo Mật https://probely.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}