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 |
| 官方網址 | 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"
}
}
} | |