Jumpcat
The missing command palette for GitHub
Jumpcat란 무엇입니까?
Jumpcat은(는) https://jumpcat.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The missing command palette for GitHub"입니다.
확장 프로그램 스크린샷
Jumpcat 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Command palette for easy beginner and power user navigation on GitHub.com Once installed hit cmd + j (or ctrl +j on windows/linux) to open the command palette
확장 프로그램 기본 정보
이름 | Jumpcat |
ID | bdjamoegndceikaofgcnfkeekeoiffcn |
공식 URL | https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn |
설명 | The missing command palette for GitHub |
파일 크기 | 229 KB |
설치 횟수 | 59 |
현재 버전 | 0.20.0 |
최근 업데이트 | 2022-07-28 |
출시 날짜 | 2021-11-02 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://jumpcat.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://jumpcat.dev/ |
도움말 페이지 URL | https://github.com/stefanbuck/jumpcat/issues |
개인정보 보호 정책 페이지 URL | https://stefanbuck.com/privacy-policies |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jumpcat", "version": "0.20.0", "description": "The missing command palette for GitHub", "homepage_url": "https:\/\/github.com\/stefanbuck\/jumpcat", "manifest_version": 2, "minimum_chrome_version": "74", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "67.0" } }, "omnibox": { "keyword": "j" }, "icons": { "16": "\/assets\/icon-16.png", "48": "\/assets\/icon-48.png", "128": "\/assets\/icon-128.png" }, "permissions": [ "storage", "https:\/\/github.com\/" ], "options_ui": { "chrome_style": true, "page": "\/app\/options\/options.html" }, "background": { "persistent": false, "scripts": [ "\/app\/background\/index.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "\/assets\/style.css" ], "js": [ "\/app\/index.js" ] } ] } |