Rabbit: Productivity-Procrastination Tracker

An interactive companion to keep you focused and productive.

Что такое Rabbit: Productivity-Procrastination Tracker?

Rabbit: Productivity-Procrastination Tracker - это расширение Chrome, разработанное aaronjiang0, и его основная функция - "An interactive companion to keep you focused and productive.".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Rabbit: Productivity-Procrastination Tracker

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

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

                        Rabbit is a playful companion that keeps you aware of your browsing habits.

This extension keeps track of your activity and highlights your most visited sites.
Rabbit also helps you calculate your productivity index so that you can stay on task!                    

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

Название Rabbit: Productivity-Procrastination Tracker Rabbit: Productivity-Procrastination Tracker
ID ahlcihfjafcicppnhjcnbhcgmajkmimj
Официальный URL https://chromewebstore.google.com/detail/rabbit-productivity-procr/ahlcihfjafcicppnhjcnbhcgmajkmimj
Описание An interactive companion to keep you focused and productive.
Размер файла 1.92 MB
Количество установок 574
Текущая Версия 2.0.4
Последнее Обновление 2023-12-18
Дата публикации 2020-05-12
Рейтинг 4.67/5 Всего 12 оценок
Разработчик aaronjiang0
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/iwasba/Rabbit-Chrome-Extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rabbit: Productivity-Procrastination Tracker",
    "description": "An interactive companion to keep you focused and productive.",
    "version": "2.0.4",
    "icons": {
        "128": "assets\/icon.png"
    },
    "action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "popup\/popup.html",
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ],
    "background": {
        "service_worker": "background\/script.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/script.js"
            ],
            "css": [
                "content-script\/script.css"
            ]
        }
    ]
}