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
官方URL 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"
    }
}