Betrust Token signing

Sign and authenticate with the Belgian EID Card.

Cos'è Betrust Token signing?

Betrust Token signing è un'estensione di Chrome sviluppata da https://www.betrust.be, e la sua funzione principale è "Sign and authenticate with the Belgian EID Card.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Betrust Token signing

Scarica i file di estensione Betrust Token signing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Betrust smart card signing extension                    

Informazioni di Base sull'Estensione

Nome Betrust Token signing Betrust Token signing
ID mfoloilgpgkfabbphpkcfckbagcepbnj
URL Ufficiale https://chromewebstore.google.com/detail/betrust-token-signing/mfoloilgpgkfabbphpkcfckbagcepbnj
Descrizione Sign and authenticate with the Belgian EID Card.
Dimensione del File 13.05 KB
Conteggio Installazioni 10,000
Versione Corrente 4.0.1
Ultimo Aggiornamento 2022-12-11
Data di Pubblicazione 2018-08-02
Valutazione 1.85/5 Totale 13 Valutazioni
Sviluppatore https://www.betrust.be
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://pro.scribble.be
URL della Pagina di Aiuto https://pro.scribble.be/en/contact/
URL della Pagina della Politica sulla Privacy https://pro.scribble.be/public/serve.html?page=privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Betrust Token signing",
    "version": "4.0.1",
    "minimum_chrome_version": "88.0",
    "manifest_version": 3,
    "description": "Sign and authenticate with the Belgian EID Card.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.scribble.be\/*",
                "https:\/\/*.mypapers.be\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.scribble.be\/download\/*",
                "https:\/\/*.mypapers.be\/download\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page.js"
            ],
            "matches": [
                "https:\/\/*.scribble.be\/*",
                "https:\/\/*.mypapers.be\/*"
            ]
        }
    ],
    "permissions": [
        "nativeMessaging",
        "downloads"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.scribble.be\/*",
            "https:\/\/*.mypapers.be\/*"
        ]
    }
}