Chartink To TradingView

Redirects Chartink Symbol Links to TradingView Chart

Chartink To TradingView là gì?

Chartink To TradingView là một tiện ích mở rộng Chrome được phát triển bởi devagamjot, và tính năng chính của nó là "Redirects Chartink Symbol Links to TradingView Chart".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chartink To TradingView

Tải xuống các tệp mở rộng Chartink To TradingView dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chartink To TradingView Chartink To TradingView
ID gnokdahlhlefhgfpogfhhgbdlofhnfad
URL Chính Thức https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad
Mô tả Redirects Chartink Symbol Links to TradingView Chart
Kích Thước Tệp 12.67 KB
Số Lần Cài Đặt 5,235
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2023-11-21
Ngày Phát Hành 2023-01-22
Đánh Giá 4.35/5 Tổng số 23 Đánh Giá
Nhà Phát Triển devagamjot
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}