ChartFox Browser Extension
Enable fully-integrated chart viewing within the ChartFox web app
ChartFox Browser Extension là gì?
ChartFox Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi https://chartfox.org, và tính năng chính của nó là "Enable fully-integrated chart viewing within the ChartFox web app".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ChartFox Browser Extension
Tải xuống các tệp mở rộng ChartFox Browser Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gbpidgkkacbjclomlpoajjmpkflgneep |
URL Chính Thức | https://chromewebstore.google.com/detail/chartfox-browser-extensio/gbpidgkkacbjclomlpoajjmpkflgneep |
Mô tả | Enable fully-integrated chart viewing within the ChartFox web app |
Kích Thước Tệp | 30.5 KB |
Số Lần Cài Đặt | 7,000 |
Phiên Bản Hiện Tại | 1.3.1 |
Cập Nhật Lần Cuối | 2023-12-31 |
Ngày Phát Hành | 2023-05-24 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://chartfox.org |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://chartfox.org/discord |
URL Trang Chính Sách Bảo Mật | https://cobaltgrid.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |