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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

NanoTipBot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}