Time is Money. Money is Time.

Shows the value of your time with respect to your annual salary and hourly wage on Amazon and Ebay.com

Time is Money. Money is Time.คืออะไร?

Time is Money. Money is Time. เป็นส่วนขยายของ Chrome ที่พัฒนาโดย afsheenk และคุณลักษณะหลักของมันคือ "Shows the value of your time with respect to your annual salary and hourly wage on Amazon and Ebay.com"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time is Money. Money is Time.

ดาวน์โหลดไฟล์ส่วนขยาย Time is Money. Money is Time. ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Time is more valuable than money.  This app will show the time it will take you to earn the money to purchase an item you are viewing on amazon or ebay.  The time is calculated based on your annual salary or hourly wage.  For example, say you make $10.00 per hour and you are on an amazon page for an item that costs $100 dollars.  This chrome extension will show you how much time it will cost for you to purchase the item.  In this case, it would cost you 10 working hours!  Hopefully, this extension will help give you a different perspective on the value of your money.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Time is Money. Money is Time. Time is Money. Money is Time.
ID fjhemdbamdjofhkaignpggebhfnpdnnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/time-is-money-money-is-ti/fjhemdbamdjofhkaignpggebhfnpdnnn
คำอธิบาย Shows the value of your time with respect to your annual salary and hourly wage on Amazon and Ebay.com
ขนาดไฟล์ 152 KB
จำนวนการติดตั้ง 97
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-05-10
วันที่เผยแพร่ 2015-05-09
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา afsheenk
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time is Money. Money is Time.",
    "version": "1.0",
    "description": "Shows the value of your time with respect to your annual salary and hourly wage on Amazon and Ebay.com",
    "offline_enabled": true,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/www.ebay.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.qtip.min.js",
                "content.js"
            ],
            "css": [
                "jquery.qtip.css",
                "tooltip.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "Test Extension",
        "default_icon": {
            "19": "clock_16_icon.png",
            "38": "clock_38_icon.png"
        },
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "jquery.min.map",
        "jquery.qtip.min.js.map"
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "clock_48_icon.png",
        "128": "clock_128_icon.png"
    }
}