ROBUX to Dollars Display
Converts ROBUX amounts to American Dollars on the ROBLOX website.
What is ROBUX to Dollars Display?
ROBUX to Dollars Display is a Chrome extension developed by Stephen Leitnick, and its main feature is "Converts ROBUX amounts to American Dollars on the ROBLOX website.".
Extension Screenshots
Download ROBUX to Dollars Display Extension CRX File
Download ROBUX to Dollars Display extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | cjidafeffoionbhpaknjkmpgikdceojm |
Official URL | https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm |
Description | Converts ROBUX amounts to American Dollars on the ROBLOX website. |
File Size | 127 KB |
Installation Count | 10,000 |
Current Version | 1.1.5 |
Last Updated | 2017-03-02 |
Publish Date | 2017-03-02 |
Rating | 3.48/5 Total 362 Ratings |
Developer | Stephen Leitnick |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |