NanoTipBot
Add a tip button to tweets so you can easily send Nano through Twitter.
什么是NanoTipBot?
NanoTipBot是由mitche50开发的Chrome扩展程序,该扩展的主要功能是“Add a tip button to tweets so you can easily send Nano through Twitter.”。
扩展截图
下载NanoTipBot扩展crx文件
下载NanoTipBot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enhances Twitter to make tipping through the Nano cryptocurrency more accessible. Notable features: - Tip button on tweets - Tip button on profile - Account information on dropdown v0.1.2: Bug Fix: Multiple tip buttons showing in profile after clicking tweet. v0.1.1: Bug Fix: Wait for response from server to update popup balances Bug Fix: Use id_str instead of id to get user information UX Fix: Button styling updated Backend Fix: Only tip consecutive users after !tip command
扩展基本信息
名称 | NanoTipBot |
ID | hmjkjbjlbldbjflklmgmdmpkeaopbmbd |
官方URL | https://chromewebstore.google.com/detail/nanotipbot/hmjkjbjlbldbjflklmgmdmpkeaopbmbd |
简介 | Add a tip button to tweets so you can easily send Nano through Twitter. |
文件大小 | 42.62 KB |
安装次数 | 62 |
当前版本 | 0.1.2 |
更新时间 | 2019-02-24 |
上架时间 | 2019-02-24 |
评分 | 5.00/5 共6次评分 |
开发者 | mitche50 |
付费类型 | free |
扩展官网 | https://nanotipbot.com |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NanoTipBot", "description": "Add a tip button to tweets so you can easily send Nano through Twitter.", "version": "0.1.2", "author": "Andrew Mitchell", "icons": { "24": "logo24.png", "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "64": "logo64.png", "128": "logo128.png" }, "content_scripts": [ { "run_at": "document_idle", "css": [ "style.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/twitter.com\/*" ], "exclude_matches": [ "https:\/\/twitter.com\/intent\/*" ] }, { "run_at": "document_idle", "css": [ "style.css" ], "js": [ "intentscreen.js" ], "matches": [ "https:\/\/twitter.com\/intent\/tweet*@NanoTipBot*!tip*" ] } ], "background": { "scripts": [ "background.js" ], "css": [ "style.css" ], "persistent": false }, "permissions": [ "declarativeContent", "activeTab", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "24": "logo24.png", "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "64": "logo64.png", "128": "logo128.png" } } } |