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"입니다.

확장 프로그램 스크린샷

screenshot

Chartink To TradingView 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    }
}