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 |
| 电子邮箱 | [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"
}
} | |