BrGP for Chrome

Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.

Co to jest BrGP for Chrome?

BrGP for Chrome to rozszerzenie Chrome opracowane przez NeoAtlantis, a jego główną funkcją jest „Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia BrGP for Chrome

Pobierz pliki rozszerzeń BrGP for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa BrGP for Chrome BrGP for Chrome
ID dfpdhfddmhkgpibedoejadlgpfkgakpb
Oficjalny URL https://chromewebstore.google.com/detail/brgp-for-chrome/dfpdhfddmhkgpibedoejadlgpfkgakpb
Opis Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.
Rozmiar pliku 301 KB
Liczba instalacji 82
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2016-06-19
Data Publikacji 2016-06-19
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper NeoAtlantis
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://bitbucket.org/neoatlantis/brgp-chrome
Obsługiwane Języki 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:\/\/*\/"
    ]
}