Roblox DevEst
Estimates USD earnings from any given asset on Roblox.
什么是Roblox DevEst?
Roblox DevEst是由noahwillcrow开发的Chrome扩展程序,该扩展的主要功能是“Estimates USD earnings from any given asset on Roblox.”。
扩展截图
下载Roblox DevEst扩展crx文件
下载Roblox DevEst扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension automatically shows an estimate of USD earned by any given purchasable asset on Roblox. If you've ever wondered how much the top developers on Roblox are making, this extension will help you to figure that out! Source code is available on GitHub!
扩展基本信息
名称 | Roblox DevEst |
ID | mjoelkhmpnpbpdblgocjimjabjjdfmpo |
官方URL | https://chromewebstore.google.com/detail/roblox-devest/mjoelkhmpnpbpdblgocjimjabjjdfmpo |
简介 | Estimates USD earnings from any given asset on Roblox. |
文件大小 | 39.54 KB |
安装次数 | 8,882 |
当前版本 | 1.3.1 |
更新时间 | 2017-07-22 |
上架时间 | 2017-07-22 |
评分 | 3.02/5 共53次评分 |
开发者 | noahwillcrow |
付费类型 | free |
扩展官网 | https://github.com/noahwillcrow/DevEst |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Roblox DevEst", "short_name": "DevEst", "version": "1.3.1", "description": "Estimates USD earnings from any given asset on Roblox.", "icons": { "32": "icon.png", "128": "icon-128.png" }, "permissions": [ "http:\/\/*.roblox.com\/", "https:\/\/*.roblox.com\/" ], "browser_action": { "default_title": "", "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.roblox.com\/*" ], "js": [ "jquery-3.2.1.min.js", "devest.js" ] } ] } |