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
}