DigiSigner
Extension to Digitally Sign Documents from the browser
什么是DigiSigner?
DigiSigner是由maiya.rakshith开发的Chrome扩展程序,该扩展的主要功能是“Extension to Digitally Sign Documents from the browser”。
扩展截图
下载DigiSigner扩展crx文件
下载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" ] } |