Signature Viewer

Shows information about embedded XAdES signatures

What is Signature Viewer?

Signature Viewer is a Chrome extension developed by https://opensbr.org, and its main feature is "Shows information about embedded XAdES signatures".

Extension Screenshots

screenshot

Download Signature Viewer Extension CRX File

Download Signature Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Signature Viewer Signature Viewer
ID fajipgpjjoingnglmfndnookaiebecop
Official URL https://chromewebstore.google.com/detail/signature-viewer/fajipgpjjoingnglmfndnookaiebecop
Description Shows information about embedded XAdES signatures
File Size 158 KB
Installation Count 607
Current Version 1.1.2
Last Updated 2020-06-10
Publish Date 2020-06-09
Developer https://opensbr.org
Email [email protected]
Payment Type free
Extension Website https://opensbr.org/inline/
Help Page URL https://opensbr.org/inline/#support
Privacy Policy Page URL https://opensbr.org/inline/privacypolicy.html
Supported Languages 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"
    }
}