DigiSigner
Extension to Digitally Sign Documents from the browser
Qu'est-ce que DigiSigner ?
DigiSigner est une extension Chrome développée par maiya.rakshith, et sa fonction principale est "Extension to Digitally Sign Documents from the browser".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DigiSigner
Téléchargez les fichiers d'extension DigiSigner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Extension to Digitally Sign Documents from the browser
Informations de Base sur l'Extension
Nom | DigiSigner |
ID | pkanbbhddamiojahlbjmmkapoedmnlfi |
URL Officiel | https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi |
Description | Extension to Digitally Sign Documents from the browser |
Taille du Fichier | 20.48 KB |
Nombre d'Installations | 1,165 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-03-16 |
Date de Publication | 2023-03-15 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | maiya.rakshith |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |