Chartink To TradingView

Redirects Chartink Symbol Links to TradingView Chart

O que é Chartink To TradingView?

Chartink To TradingView é uma extensão do Chrome desenvolvida por devagamjot, e sua principal característica é "Redirects Chartink Symbol Links to TradingView Chart".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chartink To TradingView

Baixe arquivos de extensão Chartink To TradingView no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Chartink To TradingView Chartink To TradingView
ID gnokdahlhlefhgfpogfhhgbdlofhnfad
URL Oficial https://chromewebstore.google.com/detail/chartink-to-tradingview/gnokdahlhlefhgfpogfhhgbdlofhnfad
Descrição Redirects Chartink Symbol Links to TradingView Chart
Tamanho do Arquivo 12.67 KB
Contagem de Instalações 5,235
Versão Atual 2.2
Última Atualização 2023-11-21
Data de Publicação 2023-01-22
Classificação 4.35/5 Total de 23 Avaliações
Desenvolvedor devagamjot
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}