TrackIt
Easily switch between flight trackers.
TrackIt란 무엇입니까?
TrackIt은(는) selftronics에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily switch between flight trackers."입니다.
확장 프로그램 스크린샷
TrackIt 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension lets you switch from Flightradar24 to other flight tracking sites: - Flightaware - ADSBExchange - Radarbox It is very light by means of size, and easy to use. What you only need to do is to click on the aircraft icon on Flightradar24, and browse to the same flight over the TrackIt extension. Please create an issue here, for the encountered bugs and any features you would like to have : https://github.com/cmbahadir/TrackIt/issues/
확장 프로그램 기본 정보
이름 | TrackIt |
ID | goldnignmhhfbhnkbocokfhndgecafop |
공식 URL | https://chromewebstore.google.com/detail/trackit/goldnignmhhfbhnkbocokfhndgecafop |
설명 | Easily switch between flight trackers. |
파일 크기 | 59.38 KB |
설치 횟수 | 49 |
현재 버전 | 0.2.2 |
최근 업데이트 | 2023-12-29 |
출시 날짜 | 2023-03-28 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | selftronics |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/cmbahadir/TrackIt-issues/issues/new/choose |
개인정보 보호 정책 페이지 URL | https://selftronics.com/privacy-policy |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TrackIt", "version": "0.2.2", "description": "Easily switch between flight trackers.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/www.flightradar24.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js", "popup.js" ] } ] } |