NeoLine
NEO thin wallet for chrome extension
什么是NeoLine?
NeoLine是由https://neoline.io开发的Chrome扩展程序,该扩展的主要功能是“NEO thin wallet for chrome extension”。
扩展截图
下载NeoLine扩展crx文件
下载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 |
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" } |