Seamore

Identify NFTs rarity

Что такое Seamore?

Seamore - это расширение Chrome, разработанное Lumx Studios, и его основная функция - "Identify NFTs rarity".

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

screenshot

Скачать файл CRX расширения Seamore

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

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

                        Seamore is a sniping and analytics tool created by Lumx Studios. With Seamore extension you'll be able to visualize Rarity and Price Estimation of NFTs on Opensea so you can get the best deals.

Profit Indicator:
Profit indication for whenever the listing price is lower than the estimated price.

Price Estimator:
Find out how much an NFT is worth based on our estimation algorithm prices nfts. Make great trades by sniping NFTs with the listing price below the estimated price.                    

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

Название Seamore Seamore
ID knlejcekebcafdhnjpboplhpkbhdehcm
Официальный URL https://chromewebstore.google.com/detail/seamore/knlejcekebcafdhnjpboplhpkbhdehcm
Описание Identify NFTs rarity
Размер файла 606 KB
Количество установок 321
Текущая Версия 1.1.4
Последнее Обновление 2022-09-16
Дата публикации 2022-04-04
Рейтинг 5.00/5 Всего 10 оценок
Разработчик Lumx Studios
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seamore",
    "description": "Identify NFTs rarity",
    "version": "1.1.4",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/opensea.io\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "seamore.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}