DigiSigner
Extension to Digitally Sign Documents from the browser
Cos'è DigiSigner?
DigiSigner è un'estensione di Chrome sviluppata da maiya.rakshith, e la sua funzione principale è "Extension to Digitally Sign Documents from the browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DigiSigner
Scarica i file di estensione DigiSigner 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
Extension to Digitally Sign Documents from the browser Informazioni di Base sull'Estensione
| Nome | |
| ID | pkanbbhddamiojahlbjmmkapoedmnlfi |
| URL Ufficiale | https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi |
| Descrizione | Extension to Digitally Sign Documents from the browser |
| Dimensione del File | 20.48 KB |
| Conteggio Installazioni | 1,165 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-03-16 |
| Data di Pubblicazione | 2023-03-15 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | maiya.rakshith |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |