BrGP for Chrome
Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.
Vad är BrGP for Chrome?
BrGP for Chrome är en Chrome-tillägg utvecklad av NeoAtlantis, och dess huvudfunktion är "Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.".
Tilläggsskärmbilder
Ladda ner BrGP for Chrome-förlängningens CRX-fil
Ladda ner BrGP for Chrome-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension adds generic PGP features to your browser without external dependencies.
Beside full management by clicking on an icon added right-top, you may just encrypt
a text by right clicking on any selection in a web page. Decrypting PGP messages you
received is alike.
Features including (1) key management: key generating/importing/exporting (2) message generation: encrypting & signing and (3) message reading: decrypting & verifying. Grundläggande Information om Tillägg
| Namn | |
| ID | dfpdhfddmhkgpibedoejadlgpfkgakpb |
| Officiell webbadress | https://chromewebstore.google.com/detail/brgp-for-chrome/dfpdhfddmhkgpibedoejadlgpfkgakpb |
| Beskrivning | Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu. |
| Filstorlek | 301 KB |
| Antal Installationer | 82 |
| Aktuell Version | 0.0.5 |
| Senast Uppdaterad | 2016-06-19 |
| Publiceringsdatum | 2016-06-19 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | NeoAtlantis |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://bitbucket.org/neoatlantis/brgp-chrome |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "BrGP for Chrome",
"version": "0.0.5",
"icons": {
"48": "resource\/pgp-48.png"
},
"description": "Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.",
"author": "NeoAtlantis",
"background": {
"scripts": [
"background\/main.js"
]
},
"browser_action": {
"default_icon": "resource\/pgp-32.png",
"default_title": "BrGP"
},
"sandbox": {
"pages": [
"brgp\/index.html"
]
},
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"contextMenus",
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |