Time = Money
Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
Qu'est-ce que Time = Money ?
Time = Money est une extension Chrome développée par because_curious, et sa fonction principale est "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Time = Money
Téléchargez les fichiers d'extension Time = Money au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | cdodgeepemgelfgfbblcojdidkminkao |
URL Officiel | https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao |
Description | Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy! |
Taille du Fichier | 14.76 KB |
Nombre d'Installations | 22 |
Version Actuelle | 0.0.0.1 |
Dernière Mise à Jour | 2022-02-09 |
Date de Publication | 2022-02-04 |
Développeur | because_curious |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/becausecurious/time-money |
URL de la Page d'Aide | https://becausecurious.me/contact |
URL de la Page de Politique de Confidentialité | https://snapsell.ai/privacy |
Langues Prises en Charge | 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 } } |