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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://chartfox.org/discord
عنوان صفحة سياسة الخصوصية 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"
    }
}