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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |