Signadot

Browser Extension to enable preview functionality when using Signadot Sandboxes & Route Groups through the injection of headers

Τι είναι το Signadot;

Το Signadot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://signadot.com, και η κύρια λειτουργία του είναι "Browser Extension to enable preview functionality when using Signadot Sandboxes & Route Groups through the injection of headers".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Signadot

Λήψη αρχείων επέκτασης Signadot σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is intended for use with Sandboxes and Route Groups set up using Signadot in Kubernetes clusters. It enables preview functionality over self-hosted Ingress or Load Balancer URLs. 

If you are logged into app.signadot.com, the extension fetches the list of Sandboxes and Route Groups associated with your organization and allows you to select one of them. Once selected, the corresponding Routing Key header is injected on all outgoing requests from your browser. 

To see all the different formats of headers (OpenTelemetry Baggage, Datadog, etc) that are injected, please see https://www.signadot.com/docs/context-propagation.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Signadot Signadot
ID aigejiccjejdeiikegdjlofgcjhhnkim
Επίσημο URL https://chromewebstore.google.com/detail/signadot/aigejiccjejdeiikegdjlofgcjhhnkim
Περιγραφή Browser Extension to enable preview functionality when using Signadot Sandboxes & Route Groups through the injection of headers
Μέγεθος Αρχείου 388 KB
Αριθμός Εγκαταστάσεων 294
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2024-03-01
Ημερομηνία Δημοσίευσης 2023-11-27
Προγραμματιστής https://signadot.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.signadot.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.signadot.com/docs
URL της Σελίδας Πολιτικής Απορρήτου https://www.signadot.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Signadot",
    "description": "Browser Extension to enable preview functionality when using Signadot Sandboxes & Route Groups through the injection of headers",
    "version": "1.1.0",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "action": {
        "default_icon": "images\/signadot-logo.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback",
        "declarativeNetRequestWithHostAccess",
        "cookies"
    ],
    "host_permissions": [
        ""
    ]
}