Inline PGP

Automatically detects and decrypts PGP messages on a web page

Inline PGPとは何ですか?

Inline PGPはwaifutechによって開発されたChromeの拡張機能で、その主な機能は「Automatically detects and decrypts PGP messages on a web page」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Inline PGP拡張機能のCRXファイルをダウンロード

Inline PGP拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Adds ad-hoc end-to-end encryption to any web application. Use PGP with messengers, forums, comment sections - anything, that has a web interface.

Features:
Detects PGP key and message blocks on any web page and replaces them with a nice UI. 
Key management. Generate new or import existing keys.
Encrypts and decrypts text and small files.                    

拡張機能の基本情報

名前 Inline PGP Inline PGP
ID ilbcgbbjobmcldeiebijihfbndolhbfl
公式URL https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl
説明 Automatically detects and decrypts PGP messages on a web page
ファイルサイズ 3.48 MB
インストール数 126
現在のバージョン 0.1.2
最終更新日 2020-10-07
公開日 2019-01-18
評価 3.00/5 合計 3 レビュー
開発者 waifutech
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/waifutech/inline-pgp
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inline PGP",
    "version": "0.1.2",
    "description": "Automatically detects and decrypts PGP messages on a web page",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "dist\/background-build.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "dist\/content-build.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "frame.html",
        "dist\/frame-build.js",
        "dist\/frame-build.css"
    ]
}