Chartink To TradingView
Redirects Chartink Symbol Links to TradingView Chart
Wat is Chartink To TradingView?
Chartink To TradingView is een Chrome-extensie ontwikkeld door devagamjot, en de belangrijkste functie is "Redirects Chartink Symbol Links to TradingView Chart".
Extensie Screenshots
Download het CRX-bestand van de extensie Chartink To TradingView
Download Chartink To TradingView-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Chartink To TradingView |
ID | gnokdahlhlefhgfpogfhhgbdlofhnfad |
Officiële URL | https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad |
Beschrijving | Redirects Chartink Symbol Links to TradingView Chart |
Bestandsgrootte | 12.67 KB |
Aantal Installaties | 5,235 |
Huidige Versie | 2.2 |
Laatst Bijgewerkt | 2023-11-21 |
Publicatiedatum | 2023-01-22 |
Beoordeling | 4.35/5 Totaal 23 Beoordelingen |
Ontwikkelaar | devagamjot |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |