Breedict

Axie Infinity - Breed Prediction Simulator

Co to jest Breedict?

Breedict to rozszerzenie Chrome opracowane przez hiraishinstudios, a jego główną funkcją jest „Axie Infinity - Breed Prediction Simulator”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Breedict

Pobierz pliki rozszerzeń Breedict w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Breedict Breedict
ID lmcdhjgkpgdoejhddiiknaiajmcodnfk
Oficjalny URL https://chromewebstore.google.com/detail/breedict/lmcdhjgkpgdoejhddiiknaiajmcodnfk
Opis Axie Infinity - Breed Prediction Simulator
Rozmiar pliku 61.88 KB
Liczba instalacji 81
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2021-10-16
Data Publikacji 2021-10-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper hiraishinstudios
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://nft-tools.github.io/
Obsługiwane Języki 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"
        }
    ]
}