Signature Viewer

Shows information about embedded XAdES signatures

什麼是Signature Viewer?

Signature Viewer是由https://opensbr.org開發的Chrome擴展程式,該擴展的主要功能是“Shows information about embedded XAdES signatures”。

擴展截圖

screenshot

下載Signature Viewer擴展crx文件

下載Signature Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The Signature Viewer helps you to validate the signature on an Inline XBRL document.

The development and publication of this plug-in is endorsed by the Global Legal Entity Identifier Foundation (https://gleif.org/) and XBRL International (https://xbrl.org/).

Sample documents are available on https://opensbr.org/inline/gleif-annual-report-2017/reports/GLEIF-Annual-Report-2017.signed.html and https://www.gleif.org/assets/components/xbrl-viewer/gleif-annual-report-2018-viewer.signed.signed.signed.signed.xhtml

The plug-in only reads website documents, and does not store, collect or forward any information. Web browser activity is only temporarily stored in-memory for the duration of the signature validation and is not stored, submitted or exchanged. Locally stored user data is encrypted using AES-256.
More information on https://opensbr.org/inline/privacypolicy.html                    

擴展基本資訊

名稱 Signature Viewer Signature Viewer
ID fajipgpjjoingnglmfndnookaiebecop
官方網址 https://chromewebstore.google.com/detail/signature-viewer/fajipgpjjoingnglmfndnookaiebecop
簡介 Shows information about embedded XAdES signatures
檔案大小 158 KB
安裝次數 607
目前版本 1.1.2
更新時間 2020-06-10
上架時間 2020-06-09
開發者 https://opensbr.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://opensbr.org/inline/
說明頁面URL https://opensbr.org/inline/#support
隱私政策頁面URL https://opensbr.org/inline/privacypolicy.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Signature Viewer",
    "description": "Shows information about embedded XAdES signatures",
    "version": "1.1.2",
    "author": "Chris Groenveld",
    "background": {
        "scripts": [
            "xades.js",
            "bg.js"
        ]
    },
    "icons": {
        "128": "doc128tick.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "check_signature.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "doc128gray.png"
        },
        "default_title": "Signature Viewer"
    }
}