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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}