Time-Money

When you get too lazy to work or lose motivation, just start our extension. Time passes, and money accrues.

Что такое Time-Money?

Time-Money - это расширение Chrome, разработанное Roman Rybachuk, и его основная функция - "When you get too lazy to work or lose motivation, just start our extension. Time passes, and money accrues.".

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

screenshot
screenshot

Скачать файл CRX расширения Time-Money

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

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

                        What is the main motivation to perform well That's right - money, money and again, money! 💵💵💵

When you get lazy to work or lose motivation, just start our extension. Time passes and money accrues. 💸💸💸

One of the reasons to use an extension. 🤑 💰💰💰
-The work day has just started and you're not motivated to work today. 
-You have a lot of paid overtime, but you don't feel that money. 
-You just like to see how much you make per hour/day.                    

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

Название Time-Money Time-Money
ID dmdomffmhgdpmnnlikklieapbbaegkfm
Официальный URL https://chromewebstore.google.com/detail/time-money/dmdomffmhgdpmnnlikklieapbbaegkfm
Описание When you get too lazy to work or lose motivation, just start our extension. Time passes, and money accrues.
Размер файла 42.46 KB
Количество установок 43
Текущая Версия 0.0.0.1
Последнее Обновление 2023-10-01
Дата публикации 2023-10-01
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Roman Rybachuk
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Time-Money",
    "description": "When you get too lazy to work or lose motivation, just start our extension. Time passes, and money accrues.",
    "version": "0.0.0.1",
    "icons": {
        "16": "\/assets\/icons\/icon16.png",
        "32": "\/assets\/icons\/icon32.png",
        "48": "\/assets\/icons\/icon48.png",
        "128": "\/assets\/icons\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/assets\/icons\/icon16.png",
            "32": "\/assets\/icons\/icon32.png",
            "48": "\/assets\/icons\/icon48.png",
            "128": "\/assets\/icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "\/ExtensionBackground.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "\/ExtensionContent.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ]
}