GitHub Repository Explorer

Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…

ما هو GitHub Repository Explorer؟

GitHub Repository Explorer هو إضافة Chrome تم تطويرها بواسطة usufdev.com، والميزة الرئيسية لها هي "Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GitHub Repository Explorer

قم بتنزيل ملفات الامتداد GitHub Repository Explorer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Access the github repositories you've visited in the past (browser history) using Chrome Omnibox.

A simple Chrome/Edge Extension for launching Recent GitHub Repositories, or searching on GitHub, inspired by VS Code Launcher by Microsoft (VS Code Team).

Features
- Type repo into your browser’s search bar to activate the omnibox and launch your recent GitHub repositories
- If the repository is not in your browser history our extension help you to will search it from GitHub.
-If you click the icon of the extension itself, it will take you to the GitHub home page.                    

معلومات أساسية عن التمديد

الاسم GitHub Repository Explorer GitHub Repository Explorer
ID eahjlihgcopjpngnogijleocdjegledp
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-repository-explore/eahjlihgcopjpngnogijleocdjegledp
الوصف Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…
حجم الملف 16.38 KB
عدد التثبيتات 206
النسخة الحالية 1.0.0
آخر تحديث 2023-08-22
تاريخ النشر 2022-10-17
تقييم 5.00/5 مجموع تقييمات 4
المطور usufdev.com
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/uwussimo/Chrome-GitHub-Repo-Launcher-Extension/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Repository Explorer",
    "version": "1.0.0",
    "action": {
        "default_icon": "github.png"
    },
    "background": {
        "service_worker": "eventPage.js"
    },
    "icons": {
        "256": "github.png"
    },
    "commands": {
        "launchVSCode": {
            "suggested_key": {
                "default": "Ctrl+Period",
                "mac": "Command+Period"
            },
            "description": "GitHub Repository"
        }
    },
    "permissions": [
        "tabs",
        "history",
        "storage"
    ],
    "omnibox": {
        "keyword": "repo"
    }
}