BrGP for Chrome

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

Что такое BrGP for Chrome?

BrGP for Chrome - это расширение Chrome, разработанное NeoAtlantis, и его основная функция - "Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения BrGP for Chrome

Скачайте файлы расширений BrGP for Chrome в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название BrGP for Chrome BrGP for Chrome
ID dfpdhfddmhkgpibedoejadlgpfkgakpb
Официальный URL https://chromewebstore.google.com/detail/brgp-for-chrome/dfpdhfddmhkgpibedoejadlgpfkgakpb
Описание Extend the browser with generic PGP features. Manage PGP keys and process messages via dashboard or right-click menu.
Размер файла 301 KB
Количество установок 82
Текущая Версия 0.0.5
Последнее Обновление 2016-06-19
Дата публикации 2016-06-19
Рейтинг 5.00/5 Всего 2 оценок
Разработчик NeoAtlantis
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://bitbucket.org/neoatlantis/brgp-chrome
Поддерживаемые языки 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:\/\/*\/"
    ]
}