Inline PGP

Automatically detects and decrypts PGP messages on a web page

Apa itu Inline PGP?

Inline PGP adalah ekstensi Chrome yang dikembangkan oleh waifutech, dan fitur utamanya adalah "Automatically detects and decrypts PGP messages on a web page".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Inline PGP

Unduh file ekstensi Inline PGP dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Inline PGP Inline PGP
ID ilbcgbbjobmcldeiebijihfbndolhbfl
URL Resmi https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl
Deskripsi Automatically detects and decrypts PGP messages on a web page
Ukuran File 3.48 MB
Jumlah Instalasi 126
Versi Saat Ini 0.1.2
Terakhir Diperbarui 2020-10-07
Tanggal Publikasi 2019-01-18
Penilaian 3.00/5 Total 3 Penilaian
Pengembang waifutech
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/waifutech/inline-pgp
Bahasa yang Didukung 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"
    ]
}