Time-Money

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

Co to jest Time-Money?

Time-Money to rozszerzenie Chrome opracowane przez Roman Rybachuk, a jego główną funkcją jest „When you get too lazy to work or lose motivation, just start our extension. Time passes, and money accrues.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Time-Money

Pobierz pliki rozszerzeń Time-Money w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Time-Money Time-Money
ID dmdomffmhgdpmnnlikklieapbbaegkfm
Oficjalny URL https://chromewebstore.google.com/detail/time-money/dmdomffmhgdpmnnlikklieapbbaegkfm
Opis When you get too lazy to work or lose motivation, just start our extension. Time passes, and money accrues.
Rozmiar pliku 42.46 KB
Liczba instalacji 43
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2023-10-01
Data Publikacji 2023-10-01
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Roman Rybachuk
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": []
        }
    ]
}