NeoLine
NEO thin wallet for chrome extension
What is NeoLine?
NeoLine is a Chrome extension developed by https://neoline.io, and its main feature is "NEO thin wallet for chrome extension".
Extension Screenshots
Download NeoLine Extension CRX File
Download NeoLine extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
NeoLine is a thin wallet chrome extension, it provides dapis for developers who want to interact easily with NEO blockchain.
Extension Basic Information
Name | NeoLine |
ID | cphhlgmgameodnhkjdmkpanlelnlohao |
Official URL | https://chromewebstore.google.com/detail/neoline/cphhlgmgameodnhkjdmkpanlelnlohao |
Description | NEO thin wallet for chrome extension |
File Size | 4.03 MB |
Installation Count | 30,000 |
Current Version | 4.0.6 |
Last Updated | 2023-11-20 |
Publish Date | 2020-06-28 |
Rating | 3.00/5 Total 36 Ratings |
Developer | https://neoline.io |
[email protected] | |
Payment Type | free |
Extension Website | https://neoline.io |
Privacy Policy Page URL | https://neoline.io/en/privacy |
Supported Languages | 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" } |