NeoLine

NEO thin wallet for chrome extension

NeoLineคืออะไร?

NeoLine เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://neoline.io และคุณลักษณะหลักของมันคือ "NEO thin wallet for chrome extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NeoLine

ดาวน์โหลดไฟล์ส่วนขยาย NeoLine ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NeoLine NeoLine
ID cphhlgmgameodnhkjdmkpanlelnlohao
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/neoline/cphhlgmgameodnhkjdmkpanlelnlohao
คำอธิบาย NEO thin wallet for chrome extension
ขนาดไฟล์ 4.03 MB
จำนวนการติดตั้ง 30,000
เวอร์ชันปัจจุบัน 4.0.6
อัปเดตครั้งล่าสุด 2023-11-20
วันที่เผยแพร่ 2020-06-28
คะแนน 3.00/5 รวมทั้งหมด 36 คะแนน
ผู้พัฒนา https://neoline.io
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://neoline.io
URL หน้านโยบายความเป็นส่วนตัว https://neoline.io/en/privacy
ภาษาที่รองรับ 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"
}