Web Notes

Allows user to stick notes for specific url.

Что такое Web Notes?

Web Notes - это расширение Chrome, разработанное https://sunnysinghdev.blogspot.com, и его основная функция - "Allows user to stick notes for specific url.".

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

screenshot

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

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

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

                        Web Notes is a chrome extension that allows user to save notes based on a part(tag) of a url. So whenever you visit the url it will show notes saved related to tag in the url.                    

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

Название Web Notes Web Notes
ID lhoaebkagfpaglcedmehlkbmchagmimj
Официальный URL https://chromewebstore.google.com/detail/web-notes/lhoaebkagfpaglcedmehlkbmchagmimj
Описание Allows user to stick notes for specific url.
Размер файла 37.45 KB
Количество установок 254
Текущая Версия 0.1
Последнее Обновление 2018-01-19
Дата публикации 2018-01-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://sunnysinghdev.blogspot.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Notes",
    "version": "0.1",
    "description": "Allows user to stick notes for specific url.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Toggle the helpcenter screen",
            "global": true
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+9",
                "mac": "Command+Shift+9",
                "chromeos": "Ctrl+Shift+9",
                "linux": "Ctrl+Shift+9"
            }
        }
    }
}