DigiSigner
Extension to Digitally Sign Documents from the browser
What is DigiSigner?
DigiSigner is a Chrome extension developed by maiya.rakshith, and its main feature is "Extension to Digitally Sign Documents from the browser".
Extension Screenshots
Download DigiSigner Extension CRX File
Download DigiSigner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension to Digitally Sign Documents from the browser
Extension Basic Information
Name | DigiSigner |
ID | pkanbbhddamiojahlbjmmkapoedmnlfi |
Official URL | https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi |
Description | Extension to Digitally Sign Documents from the browser |
File Size | 20.48 KB |
Installation Count | 1,165 |
Current Version | 1.0 |
Last Updated | 2023-03-16 |
Publish Date | 2023-03-15 |
Rating | 5.00/5 Total 4 Ratings |
Developer | maiya.rakshith |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |