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 拡張機能の基本情報
| 名前 | |
| 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"
}
}
} | |