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"
    }
}