Time Well Spent — See prices in hours

Replace all prices with time based on your hourly wage.

Was ist Time Well Spent — See prices in hours?

Time Well Spent — See prices in hours ist eine Chrome-Erweiterung, die von gregrgreiner entwickelt wurde, und ihr Hauptmerkmal ist "Replace all prices with time based on your hourly wage.".

Erweiterungsscreenshots

screenshot

Time Well Spent — See prices in hours-Erweiterungs-CRX-Datei herunterladen

Laden Sie Time Well Spent — See prices in hours-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name Time Well Spent — See prices in hours Time Well Spent — See prices in hours
ID fagkeimkebmhbeelogmpfpcfdiamhpoa
Offizielle URL https://chromewebstore.google.com/detail/time-well-spent-%E2%80%94-see-pri/fagkeimkebmhbeelogmpfpcfdiamhpoa
Beschreibung Replace all prices with time based on your hourly wage.
Dateigröße 66.91 KB
Installationsanzahl 689
Aktuelle Version 3.0
Letztes Update 2023-12-28
Veröffentlichungsdatum 2018-05-12
Bewertung 3.16/5 Insgesamt 19 Bewertungen
Entwickler gregrgreiner
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://gregrgreiner.com/
Unterstützte Sprachen 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
}