DigiSigner

Extension to Digitally Sign Documents from the browser

Co je DigiSigner?

DigiSigner je rozšíření Chrome vyvinuté maiya.rakshith, a jeho hlavní funkcí je „Extension to Digitally Sign Documents from the browser“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření DigiSigner

Stáhněte si soubory rozšíření DigiSigner ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Extension to Digitally Sign Documents from the browser                    

Základní Informace o Rozšíření

Název DigiSigner DigiSigner
ID pkanbbhddamiojahlbjmmkapoedmnlfi
Oficiální URL https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi
Popis Extension to Digitally Sign Documents from the browser
Velikost souboru 20.48 KB
Počet instalací 1,165
Aktuální Verze 1.0
Poslední Aktualizace 2023-03-16
Datum Vydání 2023-03-15
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář maiya.rakshith
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DigiSigner",
    "author": "Centre for Smart Governance",
    "version": "1.0",
    "description": "Extension to Digitally Sign Documents from the browser",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/user_page.js"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost:* http:\/\/127.0.0.1:*;"
    },
    "icons": {
        "16": "Icons\/icon16.png",
        "32": "Icons\/icon32.png",
        "48": "Icons\/icon48.png",
        "128": "Icons\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "nativeMessaging"
    ]
}