DigiSigner
Extension to Digitally Sign Documents from the browser
DigiSigner क्या है?
DigiSigner maiya.rakshith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to Digitally Sign Documents from the browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में DigiSigner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Extension to Digitally Sign Documents from the browser
एक्सटेंशन की मूल जानकारी
नाम | DigiSigner |
ID | pkanbbhddamiojahlbjmmkapoedmnlfi |
आधिकारिक URL | https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi |
विवरण | Extension to Digitally Sign Documents from the browser |
फ़ाइल का आकार | 20.48 KB |
स्थापना संख्या | 1,165 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2023-03-16 |
प्रकाशन तिथि | 2023-03-15 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | maiya.rakshith |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |