Time = Money
Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!
O que é Time = Money?
Time = Money é uma extensão do Chrome desenvolvida por because_curious, e sua principal característica é "Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Time = Money
Baixe arquivos de extensão Time = Money no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | cdodgeepemgelfgfbblcojdidkminkao |
URL Oficial | https://chromewebstore.google.com/detail/time-money/cdodgeepemgelfgfbblcojdidkminkao |
Descrição | Replace all prices with the time you need to work to earn that much. Find real value of stuff you buy! |
Tamanho do Arquivo | 14.76 KB |
Contagem de Instalações | 22 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2022-02-09 |
Data de Publicação | 2022-02-04 |
Desenvolvedor | because_curious |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/becausecurious/time-money |
URL da Página de Ajuda | https://becausecurious.me/contact |
URL da Página de Política de Privacidade | https://snapsell.ai/privacy |
Idiomas Suportados | 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 } } |