ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
Co je ChartFox Browser Extension?
ChartFox Browser Extension je rozšíření Chrome vyvinuté https://chartfox.org, a jeho hlavní funkcí je „Enable fully-integrated chart viewing within the ChartFox web app“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChartFox Browser Extension
Stáhněte si soubory rozšíření ChartFox Browser Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
Oficiální URL | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Popis | Enable fully-integrated chart viewing within the ChartFox web app |
Velikost souboru | 30.5 KB |
Počet instalací | 7,000 |
Aktuální Verze | 1.3.1 |
Poslední Aktualizace | 2023-12-31 |
Datum Vydání | 2023-05-24 |
Hodnocení | 5.00/5 Celkem 8 Hodnocení |
Vývojář | https://chartfox.org |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://chartfox.org/discord |
URL Stránky Zásad Ochrany Soukromí | https://cobaltgrid.com/privacy-policy |
Podporované Jazyky | 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" } } |