ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
Cos'è ChartFox Browser Extension?
ChartFox Browser Extension è un'estensione di Chrome sviluppata da https://chartfox.org, e la sua funzione principale è "Enable fully-integrated chart viewing within the ChartFox web app".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChartFox Browser Extension
Scarica i file di estensione ChartFox Browser Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
URL Ufficiale | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Descrizione | Enable fully-integrated chart viewing within the ChartFox web app |
Dimensione del File | 30.5 KB |
Conteggio Installazioni | 7,000 |
Versione Corrente | 1.3.1 |
Ultimo Aggiornamento | 2023-12-31 |
Data di Pubblicazione | 2023-05-24 |
Valutazione | 5.00/5 Totale 8 Valutazioni |
Sviluppatore | https://chartfox.org |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://chartfox.org/discord |
URL della Pagina della Politica sulla Privacy | https://cobaltgrid.com/privacy-policy |
Lingue Supportate | 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" } } |