Signature Viewer

Shows information about embedded XAdES signatures

¿Qué es Signature Viewer?

Signature Viewer es una extensión de Chrome desarrollada por https://opensbr.org, y su función principal es "Shows information about embedded XAdES signatures".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Signature Viewer

Descarga archivos de extensión Signature Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Signature Viewer Signature Viewer
ID fajipgpjjoingnglmfndnookaiebecop
URL Oficial https://chromewebstore.google.com/detail/signature-viewer/fajipgpjjoingnglmfndnookaiebecop
Descripción Shows information about embedded XAdES signatures
Tamaño del Archivo 158 KB
Cantidad de Instalaciones 607
Versión Actual 1.1.2
Última Actualización 2020-06-10
Fecha de Publicación 2020-06-09
Desarrollador https://opensbr.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://opensbr.org/inline/
URL de la Página de Ayuda https://opensbr.org/inline/#support
URL de la Página de Política de Privacidad https://opensbr.org/inline/privacypolicy.html
Idiomas Soportados 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"
    }
}