Roblox DevEst

Estimates USD earnings from any given asset on Roblox.

Cos'è Roblox DevEst?

Roblox DevEst è un'estensione di Chrome sviluppata da noahwillcrow, e la sua funzione principale è "Estimates USD earnings from any given asset on Roblox.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Roblox DevEst

Scarica i file di estensione Roblox DevEst 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

                        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!                    

Informazioni di Base sull'Estensione

Nome Roblox DevEst Roblox DevEst
ID mjoelkhmpnpbpdblgocjimjabjjdfmpo
URL Ufficiale https://chromewebstore.google.com/detail/roblox-devest/mjoelkhmpnpbpdblgocjimjabjjdfmpo
Descrizione Estimates USD earnings from any given asset on Roblox.
Dimensione del File 39.54 KB
Conteggio Installazioni 8,882
Versione Corrente 1.3.1
Ultimo Aggiornamento 2017-07-22
Data di Pubblicazione 2017-07-22
Valutazione 3.02/5 Totale 53 Valutazioni
Sviluppatore noahwillcrow
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/noahwillcrow/DevEst
Lingue Supportate 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"
            ]
        }
    ]
}