ChartFox Browser Extension

Enable fully-integrated chart viewing within the ChartFox web app

O que é ChartFox Browser Extension?

ChartFox Browser Extension é uma extensão do Chrome desenvolvida por https://chartfox.org, e sua principal característica é "Enable fully-integrated chart viewing within the ChartFox web app".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChartFox Browser Extension

Baixe arquivos de extensão ChartFox Browser Extension 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

                        The ChartFox browser extension integrates with the ChartFox web application to allow seamless loading of aeronautical charts from chart suppliers in ChartFox, allowing us to give you a better viewing experience in-app.

It does this by working in the background to modify response headers when we request PDF documents from chart suppliers, meaning that you are downloading the PDF direct from the supplier, but allowing us to display it in an integrated way within the application.

This extension is made by the team behind ChartFox, and is the only Official ChartFox extension.                    

Informações Básicas da Extensão

Nome ChartFox Browser Extension ChartFox Browser Extension
ID gbpidgkkacbjclomlpoajjmpkflgneep
URL Oficial https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep
Descrição Enable fully-integrated chart viewing within the ChartFox web app
Tamanho do Arquivo 30.5 KB
Contagem de Instalações 7,000
Versão Atual 1.3.1
Última Atualização 2023-12-31
Data de Publicação 2023-05-24
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor https://chartfox.org
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://chartfox.org/discord
URL da Página de Política de Privacidade https://cobaltgrid.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChartFox Browser Extension",
    "version": "1.3.1",
    "description": "Enable fully-integrated chart viewing within the ChartFox web app",
    "author": "Cobalt Grid",
    "permissions": [
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.chartfox.org\/*",
        "*:\/\/*\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rule.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "indicator.js"
            ],
            "matches": [
                "*:\/\/*.chartfox.org\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "about.html",
        "browser_style": false
    },
    "icons": {
        "48": "img\/icon.png"
    }
}