ROBUX to Dollars Display
Converts ROBUX amounts to American Dollars on the ROBLOX website.
O que é ROBUX to Dollars Display?
ROBUX to Dollars Display é uma extensão do Chrome desenvolvida por Stephen Leitnick, e sua principal característica é "Converts ROBUX amounts to American Dollars on the ROBLOX website.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ROBUX to Dollars Display
Baixe arquivos de extensão ROBUX to Dollars Display 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
Automatically appends the American Dollar amount to all ROBUX listings on the ROBLOX website. The conversion is based on the Developers Exchange rate, not the purchase rate. This is most useful for ROBLOX developers that use DevEx.
Informações Básicas da Extensão
Nome | |
ID | cjidafeffoionbhpaknjkmpgikdceojm |
URL Oficial | https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm |
Descrição | Converts ROBUX amounts to American Dollars on the ROBLOX website. |
Tamanho do Arquivo | 127 KB |
Contagem de Instalações | 10,000 |
Versão Atual | 1.1.5 |
Última Atualização | 2017-03-02 |
Data de Publicação | 2017-03-02 |
Classificação | 3.48/5 Total de 362 Avaliações |
Desenvolvedor | Stephen Leitnick |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ROBUX to Dollars Display", "description": "Converts ROBUX amounts to American Dollars on the ROBLOX website.", "version": "1.1.5", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/www.roblox.com\/*", "https:\/\/www.roblox.com\/*" ], "js": [ "convert.js", "tracking.js" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs" ] } |