Minimal Notes

It's minimal. Test it.

Что такое Minimal Notes?

Minimal Notes - это расширение Chrome, разработанное Mojtaba Javan, и его основная функция - "It's minimal. Test it.".

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

screenshot

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

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

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

                        It's a simple, free, open-source and offline note-taking extension.
It's best suited for those who want to take notes while reading a page and copy/paste them to another file/service at once.

How does it work?
1. Select your text in a web page.
2. Right-click and select "Take note".
3. To see your notes, click the icon.
4. Copy if you want.

Changelog
- 1.0.3
  - Used context menu instead of keyboard shortcut
  - Fixed some minor bugs                    

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

Название Minimal Notes Minimal Notes
ID hkfapjkjbdhfoeoomnmjmafpehckingh
Официальный URL https://chromewebstore.google.com/detail/minimal-notes/hkfapjkjbdhfoeoomnmjmafpehckingh
Описание It's minimal. Test it.
Размер файла 12.95 KB
Количество установок 48
Текущая Версия 1.0.3
Последнее Обновление 2019-06-11
Дата публикации 2019-06-11
Разработчик Mojtaba Javan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mrmowji/minimal-notes
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Minimal Notes",
    "description": "It's minimal. Test it.",
    "version": "1.0.3",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon-128.png"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}