Betrust Token signing
Sign and authenticate with the Belgian EID Card.
Vad är Betrust Token signing?
Betrust Token signing är en Chrome-tillägg utvecklad av https://www.betrust.be, och dess huvudfunktion är "Sign and authenticate with the Belgian EID Card.".
Tilläggsskärmbilder
Ladda ner Betrust Token signing-förlängningens CRX-fil
Ladda ner Betrust Token signing-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Betrust smart card signing extension
Grundläggande Information om Tillägg
Namn | Betrust Token signing |
ID | mfoloilgpgkfabbphpkcfckbagcepbnj |
Officiell webbadress | https://chromewebstore.google.com/detail/betrust-token-signing/mfoloilgpgkfabbphpkcfckbagcepbnj |
Beskrivning | Sign and authenticate with the Belgian EID Card. |
Filstorlek | 13.05 KB |
Antal Installationer | 10,000 |
Aktuell Version | 4.0.1 |
Senast Uppdaterad | 2022-12-11 |
Publiceringsdatum | 2018-08-02 |
Betyg | 1.85/5 Totalt 13 Betyg |
Utvecklare | https://www.betrust.be |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://pro.scribble.be |
Hjälpsida URL | https://pro.scribble.be/en/contact/ |
URL till Sekretesspolicy Sidan | https://pro.scribble.be/public/serve.html?page=privacy |
Stödda Språk | 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\/*" ] } } |