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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載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 Roblox DevEst
ID mjoelkhmpnpbpdblgocjimjabjjdfmpo
官方網址 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"
            ]
        }
    ]
}