Time = Money

Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!

Time = Money là gì?

Time = Money là một tiện ích mở rộng Chrome được phát triển bởi because_curious, và tính năng chính của nó là "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Time = Money

Tải xuống các tệp mở rộng Time = Money dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Seamlessly replace all prices with the time you need to work to earn that much. 

Find real value of stuff you buy!

You can set your own numbers in Options.

Only $ prices are supported (like $5, but not 5 dollars).
This is a beta version and it might not work on some sites. Please report bugs at https://becausecurious.me/contact.

Permissions:
- The extension needs access to all pages to look for prices there and replace them with time. Nothing else is done.

This extension is open source: https://github.com/becausecurious/time-money                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Time = Money Time = Money
ID cdodgeepemgelfgfbblcojdidkminkao
URL Chính Thức https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao
Mô tả Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
Kích Thước Tệp 14.76 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2022-02-09
Ngày Phát Hành 2022-02-04
Nhà Phát Triển because_curious
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/becausecurious/time-money
URL Trang Trợ Giúp https://becausecurious.me/contact
URL Trang Chính Sách Bảo Mật https://snapsell.ai/privacy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Time = Money",
    "description": "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!",
    "version": "0.0.0.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "glue.js",
                "options_util.js",
                "script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{8a55e6be-3bef-4750-96d9-9c2fd3f55a12}"
        }
    },
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}