DigiSigner

Extension to Digitally Sign Documents from the browser

什麼是DigiSigner?

DigiSigner是由maiya.rakshith開發的Chrome擴展程式,該擴展的主要功能是“Extension to Digitally Sign Documents from the browser”。

擴展截圖

screenshot

下載DigiSigner擴展crx文件

下載DigiSigner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Extension to Digitally Sign Documents from the browser                    

擴展基本資訊

名稱 DigiSigner DigiSigner
ID pkanbbhddamiojahlbjmmkapoedmnlfi
官方網址 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"
    ]
}