Axie.zone Pricing Helper

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

Что такое Axie.zone Pricing Helper?

Axie.zone Pricing Helper - это расширение Chrome, разработанное https://oshiteku.app, и его основная функция - "This extension allows you to visualize the sold prices in the Axie.zone Finder.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Axie.zone Pricing Helper

Скачайте файлы расширений Axie.zone Pricing Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Axie.zone Pricing Helper Axie.zone Pricing Helper
ID gnejflagnhkhfalcogkkcpejgkiflibf
Официальный URL https://chromewebstore.google.com/detail/axiezone-pricing-helper/gnejflagnhkhfalcogkkcpejgkiflibf
Описание This extension allows you to visualize the sold prices in the Axie.zone Finder.
Размер файла 845 KB
Количество установок 927
Текущая Версия 1.1
Последнее Обновление 2020-11-03
Дата публикации 2020-11-01
Разработчик https://oshiteku.app
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}