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
公式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
Eメール [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:\/\/*\/*"
    ]
}