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 |
| 官方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 |
| 电子邮箱 | [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"
}
} | |