NanoTipBot

Add a tip button to tweets so you can easily send Nano through Twitter.

NanoTipBotคืออะไร?

NanoTipBot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mitche50 และคุณลักษณะหลักของมันคือ "Add a tip button to tweets so you can easily send Nano through Twitter."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NanoTipBot

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
        }
    }
}