Crypto Notepad

A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances

Что такое Crypto Notepad?

Crypto Notepad - это расширение Chrome, разработанное https://www.owenmelbourne.com, и его основная функция - "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances".

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

screenshot

Скачать файл CRX расширения Crypto Notepad

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

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

                        Provides a simple to use scratch pad style note pad right inside your browser.

Using AES encryption and Argon2 hashing mechanisms to help keep the your notes secure.

Using the Chrome syncing facility it will keep your notes in-sync across your chrome instances.

We do not store or have access to any of your data, it is all controlled by your browser install.                    

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

Название Crypto Notepad Crypto Notepad
ID hhjkkblcfjmflhhgjmhciccicdnocbag
Официальный URL https://chromewebstore.google.com/detail/crypto-notepad/hhjkkblcfjmflhhgjmhciccicdnocbag
Описание A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
Размер файла 456 KB
Количество установок 80
Текущая Версия 0.0.5
Последнее Обновление 2018-04-22
Дата публикации 2018-04-22
Рейтинг 4.50/5 Всего 4 оценок
Разработчик https://www.owenmelbourne.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crypto Notepad",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Crypto Notes",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' http:\/\/localhost:8098; object-src 'self'"
}