Jumpcat
The missing command palette for GitHub
Jumpcatとは何ですか?
Jumpcatはhttps://jumpcat.devによって開発されたChromeの拡張機能で、その主な機能は「The missing command palette for GitHub」です。
拡張機能のスクリーンショット
Jumpcat拡張機能のCRXファイルをダウンロード
Jumpcat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |