Breedict

Axie Infinity - Breed Prediction Simulator

Was ist Breedict?

Breedict ist eine Chrome-Erweiterung, die von hiraishinstudios entwickelt wurde, und ihr Hauptmerkmal ist "Axie Infinity - Breed Prediction Simulator".

Erweiterungsscreenshots

screenshot

Breedict-Erweiterungs-CRX-Datei herunterladen

Laden Sie Breedict-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

                        Breedict is free to help Axie Infinity players.
Our extension tries to predict the status of an Axie egg.

Disclaimer: Breedict doesn't display real data from Axie Infinity game. Numbers, predictions and data could be wrong!                    

Grundlegende Informationen zur Erweiterung

Name Breedict Breedict
ID lmcdhjgkpgdoejhddiiknaiajmcodnfk
Offizielle URL https://chromewebstore.google.com/detail/breedict/lmcdhjgkpgdoejhddiiknaiajmcodnfk
Beschreibung Axie Infinity - Breed Prediction Simulator
Dateigröße 61.88 KB
Installationsanzahl 81
Aktuelle Version 1.1.0
Letztes Update 2021-10-16
Veröffentlichungsdatum 2021-10-05
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler hiraishinstudios
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://nft-tools.github.io/
Unterstützte Sprachen pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.1.0",
    "name": "Breedict",
    "description": "Axie Infinity - Breed Prediction Simulator",
    "author": "Porai",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Breedict",
        "default_popup": "index.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/graphql-gateway.axieinfinity.com\/*",
        "https:\/\/marketplace.axieinfinity.com\/*",
        "https:\/\/axieinfinity.com\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/graphql-gateway.axieinfinity.com\/*",
                "https:\/\/marketplace.axieinfinity.com\/*",
                "https:\/\/axieinfinity.com\/*"
            ],
            "js": [
                "constants.js",
                "dna.js",
                "axios.min.js",
                "bignumber.min.js",
                "script.js"
            ],
            "run_at": "document_start"
        }
    ]
}