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文件

下載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
官方網址 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:\/\/*\/*"
    ]
}