Jumpcat

The missing command palette for GitHub

What is Jumpcat?

Jumpcat is a Chrome extension developed by https://jumpcat.dev, and its main feature is "The missing command palette for GitHub".

Extension Screenshots

screenshot

Download Jumpcat Extension CRX File

Download Jumpcat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Jumpcat Jumpcat
ID bdjamoegndceikaofgcnfkeekeoiffcn
Official URL https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn
Description The missing command palette for GitHub
File Size 229 KB
Installation Count 59
Current Version 0.20.0
Last Updated 2022-07-28
Publish Date 2021-11-02
Rating 5.00/5 Total 3 Ratings
Developer https://jumpcat.dev
Email [email protected]
Payment Type free
Extension Website http://jumpcat.dev/
Help Page URL https://github.com/stefanbuck/jumpcat/issues
Privacy Policy Page URL https://stefanbuck.com/privacy-policies
Supported Languages 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"
            ]
        }
    ]
}