NanoTipBot

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

NanoTipBot क्या है?

NanoTipBot mitche50 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a tip button to tweets so you can easily send Nano through Twitter."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NanoTipBot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    }
}