Jumpcat

The missing command palette for GitHub

Jumpcat là gì?

Jumpcat là một tiện ích mở rộng Chrome được phát triển bởi https://jumpcat.dev, và tính năng chính của nó là "The missing command palette for GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jumpcat

Tải xuống các tệp mở rộng Jumpcat dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jumpcat Jumpcat
ID bdjamoegndceikaofgcnfkeekeoiffcn
URL Chính Thức https://chromewebstore.google.com/detail/jumpcat/bdjamoegndceikaofgcnfkeekeoiffcn
Mô tả The missing command palette for GitHub
Kích Thước Tệp 229 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 0.20.0
Cập Nhật Lần Cuối 2022-07-28
Ngày Phát Hành 2021-11-02
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://jumpcat.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://jumpcat.dev/
URL Trang Trợ Giúp https://github.com/stefanbuck/jumpcat/issues
URL Trang Chính Sách Bảo Mật https://stefanbuck.com/privacy-policies
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}