Jumpcat

The missing command palette for GitHub

Jumpcatคืออะไร?

Jumpcat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jumpcat.dev และคุณลักษณะหลักของมันคือ "The missing command palette for GitHub"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jumpcat

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}