Time = Money

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

Vad är Time = Money?

Time = Money är en Chrome-tillägg utvecklad av because_curious, och dess huvudfunktion är "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Time = Money-förlängningens CRX-fil

Ladda ner Time = Money-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Time = Money Time = Money
ID cdodgeepemgelfgfbblcojdidkminkao
Officiell webbadress https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao
Beskrivning Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
Filstorlek 14.76 KB
Antal Installationer 22
Aktuell Version 0.0.0.1
Senast Uppdaterad 2022-02-09
Publiceringsdatum 2022-02-04
Utvecklare because_curious
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/becausecurious/time-money
Hjälpsida URL https://becausecurious.me/contact
URL till Sekretesspolicy Sidan https://snapsell.ai/privacy
Stödda Språk 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
    }
}