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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة https://github.com/stefanbuck/jumpcat/issues
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}