Signature Viewer

Shows information about embedded XAdES signatures

Cos'è Signature Viewer?

Signature Viewer è un'estensione di Chrome sviluppata da https://opensbr.org, e la sua funzione principale è "Shows information about embedded XAdES signatures".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Signature Viewer

Scarica i file di estensione Signature Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Signature Viewer Signature Viewer
ID fajipgpjjoingnglmfndnookaiebecop
URL Ufficiale https://chromewebstore.google.com/detail/signature-viewer/fajipgpjjoingnglmfndnookaiebecop
Descrizione Shows information about embedded XAdES signatures
Dimensione del File 158 KB
Conteggio Installazioni 607
Versione Corrente 1.1.2
Ultimo Aggiornamento 2020-06-10
Data di Pubblicazione 2020-06-09
Sviluppatore https://opensbr.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://opensbr.org/inline/
URL della Pagina di Aiuto https://opensbr.org/inline/#support
URL della Pagina della Politica sulla Privacy https://opensbr.org/inline/privacypolicy.html
Lingue Supportate 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"
    }
}