NeoLine

NEO thin wallet for chrome extension

Co to jest NeoLine?

NeoLine to rozszerzenie Chrome opracowane przez https://neoline.io, a jego główną funkcją jest „NEO thin wallet for chrome extension”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia NeoLine

Pobierz pliki rozszerzeń NeoLine 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

                        NeoLine is a thin wallet chrome extension, it provides dapis for developers who want to interact easily with NEO blockchain.                    

Podstawowe informacje o rozszerzeniu

Nazwa NeoLine NeoLine
ID cphhlgmgameodnhkjdmkpanlelnlohao
Oficjalny URL https://chromewebstore.google.com/detail/neoline/cphhlgmgameodnhkjdmkpanlelnlohao
Opis NEO thin wallet for chrome extension
Rozmiar pliku 4.03 MB
Liczba instalacji 30,000
Aktualna Wersja 4.0.6
Ostatnia Aktualizacja 2023-11-20
Data Publikacji 2020-06-28
Ocena 3.00/5 Łącznie 36 Oceny
Deweloper https://neoline.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://neoline.io
Adres URL Strony Polityki Prywatności https://neoline.io/en/privacy
Obsługiwane Języki en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NeoLine",
    "description": "NEO thin wallet for chrome extension",
    "version": "4.0.6",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html#popup",
        "default_icon": "assets\/logo128.png"
    },
    "default_locale": "en",
    "commands": [],
    "icons": {
        "16": "assets\/logo16.png",
        "48": "assets\/logo48.png",
        "128": "assets\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "neoline.js",
                "neolineN3.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dapi.js",
                "dapiN3.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ],
    "permissions": [
        "storage",
        "notifications",
        "activeTab",
        "alarms"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/neoline.cn\/*"
        ],
        "ids": [
            "*"
        ]
    },
    "content_security_policy": {
        "extension_pages": "frame-ancestors 'none'; script-src 'self'; object-src 'self'"
    },
    "minimum_chrome_version": "88"
}