DigiSigner

Extension to Digitally Sign Documents from the browser

Co to jest DigiSigner?

DigiSigner to rozszerzenie Chrome opracowane przez maiya.rakshith, a jego główną funkcją jest „Extension to Digitally Sign Documents from the browser”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia DigiSigner

Pobierz pliki rozszerzeń DigiSigner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Extension to Digitally Sign Documents from the browser                    

Podstawowe informacje o rozszerzeniu

Nazwa DigiSigner DigiSigner
ID pkanbbhddamiojahlbjmmkapoedmnlfi
Oficjalny URL https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi
Opis Extension to Digitally Sign Documents from the browser
Rozmiar pliku 20.48 KB
Liczba instalacji 1,165
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-03-16
Data Publikacji 2023-03-15
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper maiya.rakshith
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}