Chartink To TradingView
Redirects Chartink Symbol Links to TradingView Chart
Chartink To TradingViewとは何ですか?
Chartink To TradingViewはdevagamjotによって開発されたChromeの拡張機能で、その主な機能は「Redirects Chartink Symbol Links to TradingView Chart」です。
拡張機能のスクリーンショット
Chartink To TradingView拡張機能のCRXファイルをダウンロード
Chartink To TradingView拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Chartink To TradingView |
ID | gnokdahlhlefhgfpogfhhgbdlofhnfad |
公式URL | https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad |
説明 | Redirects Chartink Symbol Links to TradingView Chart |
ファイルサイズ | 12.67 KB |
インストール数 | 5,235 |
現在のバージョン | 2.2 |
最終更新日 | 2023-11-21 |
公開日 | 2023-01-22 |
評価 | 4.35/5 合計 23 レビュー |
開発者 | devagamjot |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |