ROBUX to Dollars Display
Converts ROBUX amounts to American Dollars on the ROBLOX website.
什么是ROBUX to Dollars Display?
ROBUX to Dollars Display是由Stephen Leitnick开发的Chrome扩展程序,该扩展的主要功能是“Converts ROBUX amounts to American Dollars on the ROBLOX website.”。
扩展截图
下载ROBUX to Dollars Display扩展crx文件
下载ROBUX to Dollars Display扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | cjidafeffoionbhpaknjkmpgikdceojm |
官方URL | https://chrome.google.com/webstore/detail/robux-to-dollars-display/cjidafeffoionbhpaknjkmpgikdceojm |
简介 | Converts ROBUX amounts to American Dollars on the ROBLOX website. |
文件大小 | 127 KB |
安装次数 | 10,000 |
当前版本 | 1.1.5 |
更新时间 | 2017-03-02 |
上架时间 | 2017-03-02 |
评分 | 3.48/5 共362次评分 |
开发者 | Stephen Leitnick |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |