NotaBene

Put sticky notes on web pages

Что такое NotaBene?

NotaBene - это расширение Chrome, разработанное NB, и его основная функция - "Put sticky notes on web pages".

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

screenshot

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

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

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

                        NotaBene is a Chrome extension that allows you to put sticky notes on web pages. The notes are saved automatically and remain until you decide to remove them, even if you restart your browser. To use NotaBene, click the yellow N in the upper right of your browser. A note will appear at the top right of the page, which you can move, resize, and write your notes in!                    

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

Название NotaBene NotaBene
ID nlbdclkaoocmegfnminofjekdkdgpdof
Официальный URL https://chrome.google.com/webstore/detail/notabene/nlbdclkaoocmegfnminofjekdkdgpdof
Описание Put sticky notes on web pages
Размер файла 95.19 KB
Количество установок 52
Текущая Версия 0.1
Последнее Обновление 2016-09-26
Дата публикации 2016-09-26
Рейтинг 4.00/5 Всего 2 оценок
Разработчик NB
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NotaBene",
    "version": "0.1",
    "description": "Put sticky notes on web pages",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "content.js"
            ],
            "css": [
                "note_style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "run_at": "document_idle"
    },
    "browser_action": {
        "default_icon": {
            "19": "nb_icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "nb_icon.png",
        "48": "nb_icon.png",
        "128": "nb_icon.png"
    }
}