NanoTipBot
Add a tip button to tweets so you can easily send Nano through Twitter.
¿Qué es NanoTipBot?
NanoTipBot es una extensión de Chrome desarrollada por mitche50, y su función principal es "Add a tip button to tweets so you can easily send Nano through Twitter.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NanoTipBot
Descarga archivos de extensión NanoTipBot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | NanoTipBot |
ID | hmjkjbjlbldbjflklmgmdmpkeaopbmbd |
URL Oficial | https://chromewebstore.google.com/detail/nanotipbot/hmjkjbjlbldbjflklmgmdmpkeaopbmbd |
Descripción | Add a tip button to tweets so you can easily send Nano through Twitter. |
Tamaño del Archivo | 42.62 KB |
Cantidad de Instalaciones | 62 |
Versión Actual | 0.1.2 |
Última Actualización | 2019-02-24 |
Fecha de Publicación | 2019-02-24 |
Calificación | 5.00/5 Total de 6 Calificaciones |
Desarrollador | mitche50 |
Tipo de Pago | free |
Sitio Web de la Extensión | https://nanotipbot.com |
Idiomas Soportados | 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" } } } |