ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
Qu'est-ce que ChartFox Browser Extension ?
ChartFox Browser Extension est une extension Chrome développée par https://chartfox.org, et sa fonction principale est "Enable fully-integrated chart viewing within the ChartFox web app".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChartFox Browser Extension
Téléchargez les fichiers d'extension ChartFox Browser Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
URL Officiel | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Description | Enable fully-integrated chart viewing within the ChartFox web app |
Taille du Fichier | 30.5 KB |
Nombre d'Installations | 7,000 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2023-12-31 |
Date de Publication | 2023-05-24 |
Évaluation | 5.00/5 Total 8 Évaluations |
Développeur | https://chartfox.org |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://chartfox.org/discord |
URL de la Page de Politique de Confidentialité | https://cobaltgrid.com/privacy-policy |
Langues Prises en Charge | 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" } } |