Time Well Spent — See prices in hours

Replace all prices with time based on your hourly wage.

Cos'è Time Well Spent — See prices in hours?

Time Well Spent — See prices in hours è un'estensione di Chrome sviluppata da gregrgreiner, e la sua funzione principale è "Replace all prices with time based on your hourly wage.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Time Well Spent — See prices in hours

Scarica i file di estensione Time Well Spent — See prices in hours in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension replaces prices on all shopping websites (Amazon, eBay, Target, etc...) with how many hours you would have to spend working to make enough money to pay that price. This is calculated based on your hourly wage after state and federal taxes. (Idea Credit: Aaron Z. Lewis)                    

Informazioni di Base sull'Estensione

Nome Time Well Spent — See prices in hours Time Well Spent — See prices in hours
ID fagkeimkebmhbeelogmpfpcfdiamhpoa
URL Ufficiale https://chromewebstore.google.com/detail/time-well-spent-%E2%80%94-see-pri/fagkeimkebmhbeelogmpfpcfdiamhpoa
Descrizione Replace all prices with time based on your hourly wage.
Dimensione del File 66.91 KB
Conteggio Installazioni 689
Versione Corrente 3.0
Ultimo Aggiornamento 2023-12-28
Data di Pubblicazione 2018-05-12
Valutazione 3.16/5 Totale 19 Valutazioni
Sviluppatore gregrgreiner
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://gregrgreiner.com/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Time Well Spent \u2014 See prices in hours",
    "version": "3.0",
    "description": "Replace all prices with time based on your hourly wage.",
    "author": "Greg Greiner",
    "icons": {
        "16": "icon.png",
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icon.png",
            "48": "[email protected]",
            "128": "[email protected]"
        },
        "default_title": "Time Well Spent"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "Time Well Spent",
    "manifest_version": 3
}