Chartink To TradingView
Redirects Chartink Symbol Links to TradingView Chart
Qu'est-ce que Chartink To TradingView ?
Chartink To TradingView est une extension Chrome développée par devagamjot, et sa fonction principale est "Redirects Chartink Symbol Links to TradingView Chart".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chartink To TradingView
Téléchargez les fichiers d'extension Chartink To TradingView 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
Extension to redirect chartink screener output symbol URLs to TradingView charts and Create TradingView Watchlist String. Chartink doesn't provide modern charts like tradingview so this is a small extension that helps to bridge the gap. Made by Pennytalks discord server Source Code: https://github.com/devAgam/chartink-to-tradingview-firefox-extension
Informations de Base sur l'Extension
Nom | Chartink To TradingView |
ID | gnokdahlhlefhgfpogfhhgbdlofhnfad |
URL Officiel | https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad |
Description | Redirects Chartink Symbol Links to TradingView Chart |
Taille du Fichier | 12.67 KB |
Nombre d'Installations | 5,235 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2023-11-21 |
Date de Publication | 2023-01-22 |
Évaluation | 4.35/5 Total 23 Évaluations |
Développeur | devagamjot |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chartink To TradingView", "version": "2.2", "description": "Redirects Chartink Symbol Links to TradingView Chart", "icons": { "48": "icons\/logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.chartink.com\/*" ], "js": [ "main.js" ], "css": [ "popup.css" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "clipboardWrite", "tabs", "storage" ], "background": { "service_worker": "background.js" } } |