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