Jumpcat

The missing command palette for GitHub

什麼是Jumpcat?

Jumpcat是由https://jumpcat.dev開發的Chrome擴展程式,該擴展的主要功能是“The missing command palette for GitHub”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Jumpcat Jumpcat
ID bdjamoegndceikaofgcnfkeekeoiffcn
官方網址 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"
            ]
        }
    ]
}