Binance™ Ninja
Improved overview of crypto balance on Binance™: buy price, growth rate and USD value of your bitcoin, ethereum and altcoins.
¿Qué es Binance™ Ninja?
Binance™ Ninja es una extensión de Chrome desarrollada por codesonzh, y su función principal es "Improved overview of crypto balance on Binance™: buy price, growth rate and USD value of your bitcoin, ethereum and altcoins.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Binance™ Ninja
Descarga archivos de extensión Binance™ Ninja 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
Binance™ Ninja provides extra features which are otherwise unavailable on the Binance™ website during trading and auditing.
Consider donating 0.002 BTC or more to this address:
15gdw8khnhEvVEEjbSR8aXSPvbwNdCUEPJ
## Features
* Extra balance columns for better stats and tracking
* Easy settings via Chrome toolbox or right-click context menu
The extra balance columns are as follows:
* **BTC Price** - The last market price of the coin in BTC
* **USDT Price** - The last market price of the coin in USDT
* **USDT Value** - Estimated value of the coin in USDT (BTC converted to USD)
## Privacy
Binance™ Ninja does not collect any information about the user, prices,
balances or other information or meta data associated while using the extension.
All computation is done on the client, however some data may be requested using
the fetch or XHR API exclusively from the Binance™ server (only GET requests)
in order to provide more context and to be up to date.
The extension is only requesting access to [www.|info.]binance.com and no other
origins, hence no data is being collected and the program only operates in the
browser. An additional storage permission is requested to be able to persist the
user settings for the extension (Chrome sync mechanism). This does not interfere
with any other Chrome extension or user data as the storage model is isolated to
the target extension only.
As the extension is not collecting any analytics, your feedback is invaluable
to the authors for guiding the tool towards new features, bug fixes and other
improvements.
## Disclaimer
This software comes with no warranty whatsoever. Any issue, damage or material
loss occurred during the use of the software will not be reimbursed, repaired or
otherwise acted upon by the authors. If you're using this software, you're
willfully accepting the risk of a failure due to a bug, unexpected change of
the Binance™ software or any other factor. Please review the LICENSE file for
more details. The license is available at
https://github.com/codesonzh/binance-ninja/blob/master/LICENSE .
The extension is built for research, exploratory and testing purposes without
collecting any data from Binance™, without affecting other users and with a
very low impact on the service itself (only GET requests counting well below API
rate limits), please be mindful when installing extensions and make sure to
review the terms and conditions of Binance™ before using this or other similar
software.
The extension is only doing what any user with a browser and a developer console
can achieve and does not use any exploits to achieve advantage as a trader. The
only edge gained is less time doing side calculations using external tools and
a lower probability of making a mistake given all works as intended.
The software reads available data for which the user gives permission and which
the user itself can access and modifies parts of pages which are clearly visible
as the extension side-effect. The extension will never try to post any data
instead of the user nor prevent a user from performing an action. Modifications
on the pages are only readable, non-actionable and done on the DOM level. No
existing code of the website is ever getting modified or interfered with as this
is built as a layer on top of the existing program (only in-memory DOM changes
are applied). All computation is done in the browser tab and never leaves it's
execution context (which is also achievable using the developer console). Información Básica de la Extensión
| Nombre | |
| ID | mndpihncabcpnajehgcdigandenhbfgk |
| URL Oficial | https://chromewebstore.google.com/detail/binance-ninja/mndpihncabcpnajehgcdigandenhbfgk |
| Descripción | Improved overview of crypto balance on Binance™: buy price, growth rate and USD value of your bitcoin, ethereum and altcoins. |
| Tamaño del Archivo | 234 KB |
| Cantidad de Instalaciones | 144 |
| Versión Actual | 0.0.7 |
| Última Actualización | 2019-02-09 |
| Fecha de Publicación | 2019-02-09 |
| Calificación | 1.00/5 Total de 1 Calificaciones |
| Desarrollador | codesonzh |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| URL de la Página de Política de Privacidad | https://gist.github.com/codesonzh/05ed634845a3c61a4de86db66a6c7c55 |
| Idiomas Soportados | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"web_accessible_resources": [
"img\/icon32x32.png"
],
"description": "Improved overview of crypto balance on Binance\u2122: buy price, growth rate and USD value of your bitcoin, ethereum and altcoins.",
"short_name": "binance-ninja",
"icons": {
"128": "img\/icon128x128.png",
"32": "img\/icon32x32.png",
"64": "img\/icon64x64.png",
"48": "img\/icon48x48.png",
"16": "img\/icon16x16.png"
},
"author": "codesonzh (@codesonzh)",
"background": {
"scripts": [
"js\/jquery-2.1.3.min.js",
"js\/settings.js",
"js\/background.js"
]
},
"homepage_url": "https:\/\/github.com\/codesonzh\/binance-ninja",
"version": "0.0.7",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/www.binance.com\/*"
],
"run_at": "document_start",
"css": [
"css\/content-style.css"
],
"js": [
"js\/jquery-2.1.3.min.js",
"js\/jquery.qtip.min.js",
"js\/Util.js",
"js\/State.js",
"js\/BinanceApi.js",
"js\/BinanceBalancesPage.js",
"js\/settings.js",
"js\/Ninja.js",
"js\/content.js"
]
}
],
"content_security_policy": "script-src 'self' https:\/\/www.binance.com; object-src 'self'",
"browser_action": {
"default_icon": "img\/icon128x128.png",
"default_popup": "html\/popup.html"
},
"permissions": [
"https:\/\/www.binance.com\/",
"https:\/\/info.binance.com\/",
"storage",
"contextMenus"
],
"name": "Binance\u2122 Ninja"
} | |