Inline PGP
Automatically detects and decrypts PGP messages on a web page
Was ist Inline PGP?
Inline PGP ist eine Chrome-Erweiterung, die von waifutech entwickelt wurde, und ihr Hauptmerkmal ist "Automatically detects and decrypts PGP messages on a web page".
Erweiterungsscreenshots
Inline PGP-Erweiterungs-CRX-Datei herunterladen
Laden Sie Inline PGP-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ilbcgbbjobmcldeiebijihfbndolhbfl |
| Offizielle URL | https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl |
| Beschreibung | Automatically detects and decrypts PGP messages on a web page |
| Dateigröße | 3.48 MB |
| Installationsanzahl | 126 |
| Aktuelle Version | 0.1.2 |
| Letztes Update | 2020-10-07 |
| Veröffentlichungsdatum | 2019-01-18 |
| Bewertung | 3.00/5 Insgesamt 3 Bewertungen |
| Entwickler | waifutech |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/waifutech/inline-pgp |
| Unterstützte Sprachen | 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"
]
} | |