Time Well Spent — See prices in hours

Replace all prices with time based on your hourly wage.

Τι είναι το Time Well Spent — See prices in hours;

Το Time Well Spent — See prices in hours είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gregrgreiner, και η κύρια λειτουργία του είναι "Replace all prices with time based on your hourly wage.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Time Well Spent — See prices in hours

Λήψη αρχείων επέκτασης Time Well Spent — See prices in hours σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Time Well Spent — See prices in hours Time Well Spent — See prices in hours
ID fagkeimkebmhbeelogmpfpcfdiamhpoa
Επίσημο URL https://chromewebstore.google.com/detail/time-well-spent-%E2%80%94-see-pri/fagkeimkebmhbeelogmpfpcfdiamhpoa
Περιγραφή Replace all prices with time based on your hourly wage.
Μέγεθος Αρχείου 66.91 KB
Αριθμός Εγκαταστάσεων 689
Τρέχουσα Έκδοση 3.0
Τελευταία Ενημέρωση 2023-12-28
Ημερομηνία Δημοσίευσης 2018-05-12
Αξιολόγηση 3.16/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής gregrgreiner
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://gregrgreiner.com/
Υποστηριζόμενες Γλώσσες 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
}