DigiSigner
Extension to Digitally Sign Documents from the browser
O que é DigiSigner?
DigiSigner é uma extensão do Chrome desenvolvida por maiya.rakshith, e sua principal característica é "Extension to Digitally Sign Documents from the browser".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão DigiSigner
Baixe arquivos de extensão DigiSigner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Extension to Digitally Sign Documents from the browser
Informações Básicas da Extensão
Nome | DigiSigner |
ID | pkanbbhddamiojahlbjmmkapoedmnlfi |
URL Oficial | https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi |
Descrição | Extension to Digitally Sign Documents from the browser |
Tamanho do Arquivo | 20.48 KB |
Contagem de Instalações | 1,165 |
Versão Atual | 1.0 |
Última Atualização | 2023-03-16 |
Data de Publicação | 2023-03-15 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | maiya.rakshith |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |