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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}