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?

Time = Money是由because_curious開發的Chrome擴展程式,該擴展的主要功能是“Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Time = Money擴展crx文件

下載Time = Money擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Time = Money Time = Money
ID cdodgeepemgelfgfbblcojdidkminkao
官方網址 https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao
簡介 Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
檔案大小 14.76 KB
安裝次數 22
目前版本 0.0.0.1
更新時間 2022-02-09
上架時間 2022-02-04
開發者 because_curious
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/becausecurious/time-money
說明頁面URL https://becausecurious.me/contact
隱私政策頁面URL https://snapsell.ai/privacy
支援的語言 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
    }
}