Time = Money

Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!

Co je Time = Money?

Time = Money je rozšíření Chrome vyvinuté because_curious, a jeho hlavní funkcí je „Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Time = Money

Stáhněte si soubory rozšíření Time = Money ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Seamlessly replace all prices with the time you need to work to earn that much. 

Find real value of stuff you buy!

You can set your own numbers in Options.

Only $ prices are supported (like $5, but not 5 dollars).
This is a beta version and it might not work on some sites. Please report bugs at https://becausecurious.me/contact.

Permissions:
- The extension needs access to all pages to look for prices there and replace them with time. Nothing else is done.

This extension is open source: https://github.com/becausecurious/time-money                    

Základní Informace o Rozšíření

Název Time = Money Time = Money
ID cdodgeepemgelfgfbblcojdidkminkao
Oficiální URL https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao
Popis Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
Velikost souboru 14.76 KB
Počet instalací 22
Aktuální Verze 0.0.0.1
Poslední Aktualizace 2022-02-09
Datum Vydání 2022-02-04
Vývojář because_curious
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/becausecurious/time-money
URL Stránky Nápovědy https://becausecurious.me/contact
URL Stránky Zásad Ochrany Soukromí https://snapsell.ai/privacy
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Time = Money",
    "description": "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!",
    "version": "0.0.0.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "glue.js",
                "options_util.js",
                "script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{8a55e6be-3bef-4750-96d9-9c2fd3f55a12}"
        }
    },
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}