Chartink To TradingView

Redirects Chartink Symbol Links to TradingView Chart

Chartink To TradingViewคืออะไร?

Chartink To TradingView เป็นส่วนขยายของ Chrome ที่พัฒนาโดย devagamjot และคุณลักษณะหลักของมันคือ "Redirects Chartink Symbol Links to TradingView Chart"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chartink To TradingView

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}