ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
Apa itu ChartFox Browser Extension?
ChartFox Browser Extension adalah ekstensi Chrome yang dikembangkan oleh https://chartfox.org, dan fitur utamanya adalah "Enable fully-integrated chart viewing within the ChartFox web app".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChartFox Browser Extension
Unduh file ekstensi ChartFox Browser Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
URL Resmi | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Deskripsi | Enable fully-integrated chart viewing within the ChartFox web app |
Ukuran File | 30.5 KB |
Jumlah Instalasi | 7,000 |
Versi Saat Ini | 1.3.1 |
Terakhir Diperbarui | 2023-12-31 |
Tanggal Publikasi | 2023-05-24 |
Penilaian | 5.00/5 Total 8 Penilaian |
Pengembang | https://chartfox.org |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://chartfox.org/discord |
URL Halaman Kebijakan Privasi | https://cobaltgrid.com/privacy-policy |
Bahasa yang Didukung | 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" } } |