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
公式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
Eメール [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"
    ]
}