Inline PGP
Automatically detects and decrypts PGP messages on a web page
O que é Inline PGP?
Inline PGP é uma extensão do Chrome desenvolvida por waifutech, e sua principal característica é "Automatically detects and decrypts PGP messages on a web page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Inline PGP
Baixe arquivos de extensão Inline PGP no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Inline PGP |
ID | ilbcgbbjobmcldeiebijihfbndolhbfl |
URL Oficial | https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl |
Descrição | Automatically detects and decrypts PGP messages on a web page |
Tamanho do Arquivo | 3.48 MB |
Contagem de Instalações | 126 |
Versão Atual | 0.1.2 |
Última Atualização | 2020-10-07 |
Data de Publicação | 2019-01-18 |
Classificação | 3.00/5 Total de 3 Avaliações |
Desenvolvedor | waifutech |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/waifutech/inline-pgp |
Idiomas Suportados | 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" ] } |