Procrastination Alert

Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.

Что такое Procrastination Alert?

Procrastination Alert - это расширение Chrome, разработанное Simon Li, и его основная функция - "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.                    

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

Название Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
Официальный URL https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
Описание Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Размер файла 14.67 KB
Количество установок 46
Текущая Версия 1.0
Последнее Обновление 2020-11-25
Дата публикации 2020-11-25
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Simon Li
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Procrastination Alert",
    "version": "1.0",
    "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.",
    "manifest_version": 2,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-32.png",
        "default_title": "Procrastination Alert",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}