Axie.zone Pricing Helper

This extension allows you to visualize the sold prices in the Axie.zone Finder.

Co to jest Axie.zone Pricing Helper?

Axie.zone Pricing Helper to rozszerzenie Chrome opracowane przez https://oshiteku.app, a jego główną funkcją jest „This extension allows you to visualize the sold prices in the Axie.zone Finder.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Axie.zone Pricing Helper

Pobierz pliki rozszerzeń Axie.zone Pricing Helper 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

                        Axie.zone Finder is very useful for finding the Axie you want, but it doesn't allow you to see the past sales history. This extension will help you to analyze the price of Axie.                    

Podstawowe informacje o rozszerzeniu

Nazwa Axie.zone Pricing Helper Axie.zone Pricing Helper
ID gnejflagnhkhfalcogkkcpejgkiflibf
Oficjalny URL https://chromewebstore.google.com/detail/axiezone-pricing-helper/gnejflagnhkhfalcogkkcpejgkiflibf
Opis This extension allows you to visualize the sold prices in the Axie.zone Finder.
Rozmiar pliku 845 KB
Liczba instalacji 927
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-11-03
Data Publikacji 2020-11-01
Deweloper https://oshiteku.app
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Axie.zone Pricing Helper",
    "description": "This extension allows you to visualize the sold prices in the Axie.zone Finder.",
    "version": "1.1",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "webRequest",
        "https:\/\/axie.zone\/*",
        "https:\/\/axieinfinity.com\/graphql-server\/graphql"
    ],
    "background": {
        "scripts": [
            "event_page.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/axie.zone\/finder*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}