TV Enhance
Chrome Extension to make working with TradingView charts a little bit more intuitive.
Cos'è TV Enhance?
TV Enhance è un'estensione di Chrome sviluppata da trading_peter, e la sua funzione principale è "Chrome Extension to make working with TradingView charts a little bit more intuitive.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TV Enhance
Scarica i file di estensione TV Enhance in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Set custom shortcuts to quickly select drawing tools, toggle magnet mode and toggle shape visibility. Clicking on the plus icon at the price scale copies price under line into the clipboard. Right click the extension icon and choose "options" to set shortcuts.
Informazioni di Base sull'Estensione
Nome | TV Enhance |
ID | pjgagljfhhfaoknahbklgebpfagdppbf |
URL Ufficiale | https://chromewebstore.google.com/detail/tv-enhance/pjgagljfhhfaoknahbklgebpfagdppbf |
Descrizione | Chrome Extension to make working with TradingView charts a little bit more intuitive. |
Dimensione del File | 102 KB |
Conteggio Installazioni | 98 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2021-09-26 |
Data di Pubblicazione | 2019-07-01 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | trading_peter |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/pkaske/tv-enhance |
URL della Pagina di Aiuto | https://github.com/pkaske/tv-enhance/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TV Enhance", "version": "0.0.5", "manifest_version": 2, "description": "Chrome Extension to make working with TradingView charts a little bit more intuitive.", "homepage_url": "https:\/\/github.com\/pkaske\/tv-enhance", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": false }, "options_page": "src\/options\/index.html", "permissions": [ "storage", "https:\/\/www.tradingview.com\/chart\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/www.tradingview.com\/chart\/*" ], "js": [ "src\/inject\/injecter.js" ] } ], "web_accessible_resources": [ "src\/inject\/inject.js" ] } |