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はgregrgreinerによって開発されたChromeの拡張機能で、その主な機能は「Replace all prices with time based on your hourly wage.」です。

拡張機能のスクリーンショット

screenshot

Time Well Spent — See prices in hours拡張機能のCRXファイルをダウンロード

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
Eメール [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
}