Chartink To TradingView

Redirects Chartink Symbol Links to TradingView Chart

Co to jest Chartink To TradingView?

Chartink To TradingView to rozszerzenie Chrome opracowane przez devagamjot, a jego główną funkcją jest „Redirects Chartink Symbol Links to TradingView Chart”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chartink To TradingView

Pobierz pliki rozszerzeń Chartink To TradingView w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Chartink To TradingView Chartink To TradingView
ID gnokdahlhlefhgfpogfhhgbdlofhnfad
Oficjalny URL https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad
Opis Redirects Chartink Symbol Links to TradingView Chart
Rozmiar pliku 12.67 KB
Liczba instalacji 5,235
Aktualna Wersja 2.2
Ostatnia Aktualizacja 2023-11-21
Data Publikacji 2023-01-22
Ocena 4.35/5 Łącznie 23 Oceny
Deweloper devagamjot
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}