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 |
官方網址 | 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 |
電子郵箱 | [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" } } |