FungyProof

Check the technical quality of NFTs while browsing OpenSea.

Что такое FungyProof?

FungyProof - это расширение Chrome, разработанное https://fungyproof.com, и его основная функция - "Check the technical quality of NFTs while browsing OpenSea.".

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

screenshot
screenshot

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

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

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

                        FungyProof is a new way to grade, enrich, and display NFTs. 

Check your NFT for 30+ data points related to security, decentralization and energy then fix grade issues by adding your NFT to the registry with a FungyProof Case.                    

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

Название FungyProof FungyProof
ID hclifjggbhfngpojckopbommebllpbgl
Официальный URL https://chromewebstore.google.com/detail/fungyproof/hclifjggbhfngpojckopbommebllpbgl
Описание Check the technical quality of NFTs while browsing OpenSea.
Размер файла 1.1 MB
Количество установок 17
Текущая Версия 0.0.2
Последнее Обновление 2021-11-16
Дата публикации 2021-11-10
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://fungyproof.com
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.fungyproof.com/legal
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FungyProof",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Check the technical quality of NFTs while browsing OpenSea.",
    "homepage_url": "https:\/\/fungyproof.com",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/testnets.opensea.io\/*",
                "https:\/\/opensea.io\/*"
            ],
            "js": [
                "vendor\/jquery.js",
                "vendor\/sqrl.js",
                "vendor\/modal.js",
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "FungyProof",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/testnets.opensea.io\/*\/*",
        "https:\/\/opensea.io\/*\/*"
    ],
    "web_accessible_resources": [
        "assets\/*",
        "templates.html"
    ]
}