ChartFox Browser Extension

Enable fully-integrated chart viewing within the ChartFox web app

Τι είναι το ChartFox Browser Extension;

Το ChartFox Browser Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://chartfox.org, και η κύρια λειτουργία του είναι "Enable fully-integrated chart viewing within the ChartFox web app".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ChartFox Browser Extension

Λήψη αρχείων επέκτασης ChartFox Browser Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChartFox Browser Extension ChartFox Browser Extension
ID gbpidgkkacbjclomlpoajjmpkflgneep
Επίσημο URL https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep
Περιγραφή Enable fully-integrated chart viewing within the ChartFox web app
Μέγεθος Αρχείου 30.5 KB
Αριθμός Εγκαταστάσεων 7,000
Τρέχουσα Έκδοση 1.3.1
Τελευταία Ενημέρωση 2023-12-31
Ημερομηνία Δημοσίευσης 2023-05-24
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής https://chartfox.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://chartfox.org/discord
URL της Σελίδας Πολιτικής Απορρήτου https://cobaltgrid.com/privacy-policy
Υποστηριζόμενες Γλώσσες 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"
    }
}