TV Enhance
Chrome Extension to make working with TradingView charts a little bit more intuitive.
Qu'est-ce que TV Enhance ?
TV Enhance est une extension Chrome développée par trading_peter, et sa fonction principale est "Chrome Extension to make working with TradingView charts a little bit more intuitive.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TV Enhance
Téléchargez les fichiers d'extension TV Enhance au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | TV Enhance |
ID | pjgagljfhhfaoknahbklgebpfagdppbf |
URL Officiel | https://chromewebstore.google.com/detail/tv-enhance/pjgagljfhhfaoknahbklgebpfagdppbf |
Description | Chrome Extension to make working with TradingView charts a little bit more intuitive. |
Taille du Fichier | 102 KB |
Nombre d'Installations | 98 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2021-09-26 |
Date de Publication | 2019-07-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | trading_peter |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/pkaske/tv-enhance |
URL de la Page d'Aide | https://github.com/pkaske/tv-enhance/issues |
Langues Prises en Charge | 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" ] } |