ollie.fund

ollie powered values.

Was ist ollie.fund?

ollie.fund ist eine Chrome-Erweiterung, die von http://ollie.fund entwickelt wurde, und ihr Hauptmerkmal ist "ollie powered values.".

Erweiterungsscreenshots

screenshot

ollie.fund-Erweiterungs-CRX-Datei herunterladen

Laden Sie ollie.fund-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        uses values from https://rolimons.com/ and demand data collected from https://ollie.fund/

completely open source @ https://github.com/mxmmxx/extension

- adds a percent gain in the middle of trades
- adds the demand of an item in the top right of its photo
- fixes a few graphical bugs in the roblox trade interface, including making catalog links open in a new tab instead of the current tag

this extension is not affiliated with Roblox Corporation or Rolimon's in any shape or form.                    

Grundlegende Informationen zur Erweiterung

Name ollie.fund ollie.fund
ID ehbicfoojmomhdlkccmhnlccbpfkocfo
Offizielle URL https://chrome.google.com/webstore/detail/olliefund/ehbicfoojmomhdlkccmhnlccbpfkocfo
Beschreibung ollie powered values.
Dateigröße 41.49 KB
Installationsanzahl 29
Aktuelle Version 1.0.0
Letztes Update 2022-05-17
Veröffentlichungsdatum 2022-05-17
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://ollie.fund
E-Mail [email protected]
Erweiterungswebsite https://ollie.fund/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ollie.fund",
    "version": "1.0.0",
    "action": {
        "default_icon": {
            "16": "images\/x16.png",
            "24": "images\/x24.png",
            "32": "images\/x32.png",
            "64": "images\/x64.png"
        },
        "default_title": "ollie powered values.",
        "default_popup": "views\/popup.html"
    },
    "description": "ollie powered values.",
    "icons": {
        "16": "images\/x16.png",
        "32": "images\/x32.png",
        "48": "images\/x48.png",
        "128": "images\/x128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/roblox.com\/trades"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.roblox.com\/*"
            ],
            "js": [
                "scripts\/trades.js"
            ],
            "css": [
                "assets\/main.css"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    }
}