DigiSigner
Extension to Digitally Sign Documents from the browser
DigiSigner là gì?
DigiSigner là một tiện ích mở rộng Chrome được phát triển bởi maiya.rakshith, và tính năng chính của nó là "Extension to Digitally Sign Documents from the browser".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DigiSigner
Tải xuống các tệp mở rộng DigiSigner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Extension to Digitally Sign Documents from the browser
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DigiSigner |
ID | pkanbbhddamiojahlbjmmkapoedmnlfi |
URL Chính Thức | https://chromewebstore.google.com/detail/digisigner/pkanbbhddamiojahlbjmmkapoedmnlfi |
Mô tả | Extension to Digitally Sign Documents from the browser |
Kích Thước Tệp | 20.48 KB |
Số Lần Cài Đặt | 1,165 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-03-16 |
Ngày Phát Hành | 2023-03-15 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | maiya.rakshith |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |