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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |