Signadot

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

Signadot란 무엇입니까?

Signadot은(는) https://signadot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser Extension to enable preview functionality when using Signadot Sandboxes & Route Groups through the injection of headers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Signadot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
        ""
    ]
}