Chartink To TradingView
Redirects Chartink Symbol Links to TradingView Chart
What is Chartink To TradingView?
Chartink To TradingView is a Chrome extension developed by devagamjot, and its main feature is "Redirects Chartink Symbol Links to TradingView Chart".
Extension Screenshots
Download Chartink To TradingView Extension CRX File
Download Chartink To TradingView extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Chartink To TradingView |
ID | gnokdahlhlefhgfpogfhhgbdlofhnfad |
Official URL | https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad |
Description | Redirects Chartink Symbol Links to TradingView Chart |
File Size | 12.67 KB |
Installation Count | 5,235 |
Current Version | 2.2 |
Last Updated | 2023-11-21 |
Publish Date | 2023-01-22 |
Rating | 4.35/5 Total 23 Ratings |
Developer | devagamjot |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |