Betrust Token signing

Sign and authenticate with the Belgian EID Card.

Betrust Token signing란 무엇입니까?

Betrust Token signing은(는) https://www.betrust.be에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sign and authenticate with the Belgian EID Card."입니다.

확장 프로그램 스크린샷

screenshot

Betrust Token signing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Betrust smart card signing extension                    

확장 프로그램 기본 정보

이름 Betrust Token signing Betrust Token signing
ID mfoloilgpgkfabbphpkcfckbagcepbnj
공식 URL https://chromewebstore.google.com/detail/betrust-token-signing/mfoloilgpgkfabbphpkcfckbagcepbnj
설명 Sign and authenticate with the Belgian EID Card.
파일 크기 13.05 KB
설치 횟수 10,000
현재 버전 4.0.1
최근 업데이트 2022-12-11
출시 날짜 2018-08-02
평점 1.85/5 총 13 개의 평점
개발자 https://www.betrust.be
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pro.scribble.be
도움말 페이지 URL https://pro.scribble.be/en/contact/
개인정보 보호 정책 페이지 URL https://pro.scribble.be/public/serve.html?page=privacy
지원되는 언어 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\/*"
        ]
    }
}