NeoLine

NEO thin wallet for chrome extension

NeoLine là gì?

NeoLine là một tiện ích mở rộng Chrome được phát triển bởi https://neoline.io, và tính năng chính của nó là "NEO thin wallet for chrome extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NeoLine

Tải xuống các tệp mở rộng NeoLine dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NeoLine NeoLine
ID cphhlgmgameodnhkjdmkpanlelnlohao
URL Chính Thức https://chromewebstore.google.com/detail/neoline/cphhlgmgameodnhkjdmkpanlelnlohao
Mô tả NEO thin wallet for chrome extension
Kích Thước Tệp 4.03 MB
Số Lần Cài Đặt 30,000
Phiên Bản Hiện Tại 4.0.6
Cập Nhật Lần Cuối 2023-11-20
Ngày Phát Hành 2020-06-28
Đánh Giá 3.00/5 Tổng số 36 Đánh Giá
Nhà Phát Triển https://neoline.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://neoline.io
URL Trang Chính Sách Bảo Mật https://neoline.io/en/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
}