ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
¿Qué es ChartFox Browser Extension?
ChartFox Browser Extension es una extensión de Chrome desarrollada por https://chartfox.org, y su función principal es "Enable fully-integrated chart viewing within the ChartFox web app".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChartFox Browser Extension
Descarga archivos de extensión ChartFox Browser Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
URL Oficial | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Descripción | Enable fully-integrated chart viewing within the ChartFox web app |
Tamaño del Archivo | 30.5 KB |
Cantidad de Instalaciones | 7,000 |
Versión Actual | 1.3.1 |
Última Actualización | 2023-12-31 |
Fecha de Publicación | 2023-05-24 |
Calificación | 5.00/5 Total de 8 Calificaciones |
Desarrollador | https://chartfox.org |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://chartfox.org/discord |
URL de la Página de Política de Privacidad | https://cobaltgrid.com/privacy-policy |
Idiomas Soportados | 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" } } |