Inline PGP

Automatically detects and decrypts PGP messages on a web page

¿Qué es Inline PGP?

Inline PGP es una extensión de Chrome desarrollada por waifutech, y su función principal es "Automatically detects and decrypts PGP messages on a web page".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Inline PGP

Descarga archivos de extensión Inline PGP en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Inline PGP Inline PGP
ID ilbcgbbjobmcldeiebijihfbndolhbfl
URL Oficial https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl
Descripción Automatically detects and decrypts PGP messages on a web page
Tamaño del Archivo 3.48 MB
Cantidad de Instalaciones 126
Versión Actual 0.1.2
Última Actualización 2020-10-07
Fecha de Publicación 2019-01-18
Calificación 3.00/5 Total de 3 Calificaciones
Desarrollador waifutech
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/waifutech/inline-pgp
Idiomas Soportados 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"
    ]
}