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!」です。
拡張機能のスクリーンショット
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
拡張機能の基本情報
名前 | |
ID | cdodgeepemgelfgfbblcojdidkminkao |
公式URL | 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 |
Eメール | [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 } } |