Sticky Notes Everywhere | Digital Mercury

Save and edit sticky notes on any site. 1. Create it | 2. Drag and position it | 3. Save it for the next visit.

Что такое Sticky Notes Everywhere | Digital Mercury?

Sticky Notes Everywhere | Digital Mercury - это расширение Chrome, разработанное https://digital-mercury.com, и его основная функция - "Save and edit sticky notes on any site. 1. Create it | 2. Drag and position it | 3. Save it for the next visit.".

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

screenshot

Скачать файл CRX расширения Sticky Notes Everywhere | Digital Mercury

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

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

                        Create, position, and edit sticky notes on any web page, at any time! Save the sticky notes and the next time you return to the page, they will be just as you left them.                    

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

Название Sticky Notes Everywhere | Digital Mercury Sticky Notes Everywhere | Digital Mercury
ID coppakibehgnbpmfgbjahkdbcfpcaado
Официальный URL https://chromewebstore.google.com/detail/sticky-notes-everywhere-d/coppakibehgnbpmfgbjahkdbcfpcaado
Описание Save and edit sticky notes on any site. 1. Create it | 2. Drag and position it | 3. Save it for the next visit.
Размер файла 16.83 KB
Количество установок 493
Текущая Версия 1.1
Последнее Обновление 2020-12-01
Дата публикации 2020-11-26
Рейтинг 3.00/5 Всего 2 оценок
Разработчик https://digital-mercury.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://digital-mercury.com/
URL страницы помощи https://digital-mercury.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sticky Notes Everywhere | Digital Mercury",
    "description": "Save and edit sticky notes on any site. 1. Create it | 2. Drag and position it | 3. Save it for the next visit.",
    "version": "1.1",
    "manifest_version": 2,
    "icons": {
        "16": "favicon.png",
        "128": "favicon.png"
    },
    "browser_action": {
        "default_popup": ".\/index.html",
        "default_icon": ".\/favicon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens index.html"
        }
    },
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "background.js"
            ]
        }
    ]
}