DigiSigner
Extension to Digitally Sign Documents from the browser
ما هو DigiSigner؟
DigiSigner هو إضافة Chrome تم تطويرها بواسطة maiya.rakshith، والميزة الرئيسية لها هي "Extension to Digitally Sign Documents from the browser".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة DigiSigner
قم بتنزيل ملفات الامتداد DigiSigner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } |