Chartink To TradingView

Redirects Chartink Symbol Links to TradingView Chart

Cos'è Chartink To TradingView?

Chartink To TradingView è un'estensione di Chrome sviluppata da devagamjot, e la sua funzione principale è "Redirects Chartink Symbol Links to TradingView Chart".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chartink To TradingView

Scarica i file di estensione Chartink To TradingView in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Chartink To TradingView Chartink To TradingView
ID gnokdahlhlefhgfpogfhhgbdlofhnfad
URL Ufficiale https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad
Descrizione Redirects Chartink Symbol Links to TradingView Chart
Dimensione del File 12.67 KB
Conteggio Installazioni 5,235
Versione Corrente 2.2
Ultimo Aggiornamento 2023-11-21
Data di Pubblicazione 2023-01-22
Valutazione 4.35/5 Totale 23 Valutazioni
Sviluppatore devagamjot
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}