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 擴展基本資訊
| 名稱 | |
| ID | gnokdahlhlefhgfpogfhhgbdlofhnfad |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
} | |