Signature Viewer

Shows information about embedded XAdES signatures

Signature Viewerคืออะไร?

Signature Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://opensbr.org และคุณลักษณะหลักของมันคือ "Shows information about embedded XAdES signatures"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Signature Viewer

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}