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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Time = Money एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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 } } |