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
官方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"
            ]
        }
    ]
}