Morning Routine

This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning

Что такое Morning Routine?

Morning Routine - это расширение Chrome, разработанное javierguzmandev, и его основная функция - "This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning".

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

screenshot

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

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

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

                        This add-on lets you to specify in the options a bunch of web pages URLs separated by a line. When you are in your morning routine you can click the add-on icon and it will open your favorites web pages.                    

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

Название Morning Routine Morning Routine
ID oomonogdlncffnaapifnabnobndkiojm
Официальный URL https://chromewebstore.google.com/detail/morning-routine/oomonogdlncffnaapifnabnobndkiojm
Описание This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning
Размер файла 7.22 KB
Количество установок 39
Текущая Версия 1.0
Последнее Обновление 2022-10-21
Дата публикации 2022-10-20
Разработчик javierguzmandev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/javierguzman/morning-routine
URL страницы помощи https://github.com/javierguzman/morning-routine
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This addon lets you to specify a bunch of urls to be open when you click the coffee cup in the morning",
    "manifest_version": 3,
    "name": "Morning Routine",
    "version": "1.0",
    "author": "Javier Guzman",
    "homepage_url": "https:\/\/github.com\/javierguzman\/morning-routine",
    "icons": {
        "48": "icons\/coffee-cup-48.png"
    },
    "action": {
        "default_icon": {
            "48": "icons\/coffee-cup-48.png"
        },
        "default_title": "Morning Routine"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}