ROBUX to Dollars Display
Converts ROBUX amounts to American Dollars on the ROBLOX website.
Cos'è ROBUX to Dollars Display?
ROBUX to Dollars Display è un'estensione di Chrome sviluppata da Stephen Leitnick, e la sua funzione principale è "Converts ROBUX amounts to American Dollars on the ROBLOX website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ROBUX to Dollars Display
Scarica i file di estensione ROBUX to Dollars Display in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | cjidafeffoionbhpaknjkmpgikdceojm |
URL Ufficiale | https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm |
Descrizione | Converts ROBUX amounts to American Dollars on the ROBLOX website. |
Dimensione del File | 127 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 1.1.5 |
Ultimo Aggiornamento | 2017-03-02 |
Data di Pubblicazione | 2017-03-02 |
Valutazione | 3.48/5 Totale 362 Valutazioni |
Sviluppatore | Stephen Leitnick |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |