SpaceX ISS Docking Simulator Flight Assistant
Dock in fully automatic or semi-automatic mode
SpaceX ISS Docking Simulator Flight Assistant란 무엇입니까?
SpaceX ISS Docking Simulator Flight Assistant은(는) viocost에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dock in fully automatic or semi-automatic mode"입니다.
확장 프로그램 스크린샷
SpaceX ISS Docking Simulator Flight Assistant 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is a simple autopilot for SpaceX ISS Docking Simulator. It allows you to dock to the ISS in semi-automated or fully-automated mode.
확장 프로그램 기본 정보
이름 | SpaceX ISS Docking Simulator Flight Assistant |
ID | gdkdbfdhlemfhpfjnpjabaljodjcdnkj |
공식 URL | https://chromewebstore.google.com/detail/spacex-iss-docking-simula/gdkdbfdhlemfhpfjnpjabaljodjcdnkj |
설명 | Dock in fully automatic or semi-automatic mode |
파일 크기 | 101 KB |
설치 횟수 | 109 |
현재 버전 | 1.2 |
최근 업데이트 | 2020-06-02 |
출시 날짜 | 2020-06-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | viocost |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/viocost/iss-docking-autopilot |
도움말 페이지 URL | https://github.com/viocost/iss-docking-autopilot/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SpaceX ISS Docking Simulator Flight Assistant", "version": "1.2", "manifest_version": 2, "description": "Dock in fully automatic or semi-automatic mode", "icons": { "128": "icon128.png", "256": "icon256.png", "64": "icon64.png", "16": "icon16.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_title": "SpaceX ISS Docking Autopilot", "default_icon": "icon16.png", "default_popup": "help.html" }, "web_accessible_resources": [ "autopilot.js" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/iss-sim.spacex.com\/*", "https:\/\/iss-sim.spacex.com\/*" ], "js": [ "script.js" ] } ] } |