ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
Was ist ChartFox Browser Extension?
ChartFox Browser Extension ist eine Chrome-Erweiterung, die von https://chartfox.org entwickelt wurde, und ihr Hauptmerkmal ist "Enable fully-integrated chart viewing within the ChartFox web app".
Erweiterungsscreenshots
ChartFox Browser Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChartFox Browser Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
Offizielle URL | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Beschreibung | Enable fully-integrated chart viewing within the ChartFox web app |
Dateigröße | 30.5 KB |
Installationsanzahl | 7,000 |
Aktuelle Version | 1.3.1 |
Letztes Update | 2023-12-31 |
Veröffentlichungsdatum | 2023-05-24 |
Bewertung | 5.00/5 Insgesamt 8 Bewertungen |
Entwickler | https://chartfox.org |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://chartfox.org/discord |
URL der Datenschutzrichtlinien-Seite | https://cobaltgrid.com/privacy-policy |
Unterstützte Sprachen | 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" } } |