Time = Money

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

¿Qué es Time = Money?

Time = Money es una extensión de Chrome desarrollada por because_curious, y su función principal es "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Time = Money

Descarga archivos de extensión Time = Money en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Time = Money Time = Money
ID cdodgeepemgelfgfbblcojdidkminkao
URL Oficial https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao
Descripción Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
Tamaño del Archivo 14.76 KB
Cantidad de Instalaciones 22
Versión Actual 0.0.0.1
Última Actualización 2022-02-09
Fecha de Publicación 2022-02-04
Desarrollador because_curious
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/becausecurious/time-money
URL de la Página de Ayuda https://becausecurious.me/contact
URL de la Página de Política de Privacidad https://snapsell.ai/privacy
Idiomas Soportados 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
    }
}