ChartFox Browser Extension

Enable fully-integrated chart viewing within the ChartFox web app

Co to jest ChartFox Browser Extension?

ChartFox Browser Extension to rozszerzenie Chrome opracowane przez https://chartfox.org, a jego główną funkcją jest „Enable fully-integrated chart viewing within the ChartFox web app”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChartFox Browser Extension

Pobierz pliki rozszerzeń ChartFox Browser Extension 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChartFox Browser Extension ChartFox Browser Extension
ID gbpidgkkacbjclomlpoajjmpkflgneep
Oficjalny URL https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep
Opis Enable fully-integrated chart viewing within the ChartFox web app
Rozmiar pliku 30.5 KB
Liczba instalacji 7,000
Aktualna Wersja 1.3.1
Ostatnia Aktualizacja 2023-12-31
Data Publikacji 2023-05-24
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper https://chartfox.org
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://chartfox.org/discord
Adres URL Strony Polityki Prywatności https://cobaltgrid.com/privacy-policy
Obsługiwane Języki 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"
    }
}