ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
ChartFox Browser Extensionとは何ですか?
ChartFox Browser Extensionはhttps://chartfox.orgによって開発されたChromeの拡張機能で、その主な機能は「Enable fully-integrated chart viewing within the ChartFox web app」です。
拡張機能のスクリーンショット
ChartFox Browser Extension拡張機能のCRXファイルをダウンロード
ChartFox Browser Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
公式URL | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
説明 | Enable fully-integrated chart viewing within the ChartFox web app |
ファイルサイズ | 30.5 KB |
インストール数 | 7,000 |
現在のバージョン | 1.3.1 |
最終更新日 | 2023-12-31 |
公開日 | 2023-05-24 |
評価 | 5.00/5 合計 8 レビュー |
開発者 | https://chartfox.org |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://chartfox.org/discord |
プライバシーポリシーページのURL | https://cobaltgrid.com/privacy-policy |
対応言語 | 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" } } |