Open in GitHub1s

Add a new navigation option to open GitHub repositories in GitHub1s.

ما هو Open in GitHub1s؟

Open in GitHub1s هو إضافة Chrome تم تطويرها بواسطة zacharysmith، والميزة الرئيسية لها هي "Add a new navigation option to open GitHub repositories in GitHub1s.".

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

screenshot

تحميل ملف CRX للإضافة Open in GitHub1s

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

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

                        GitHub1s is a web-app for viewing GitHub repository files online, using a web-compiled version of VSCode. This extension introduces a new UI button to the GitHub repository file navigation bar, enabling users to easily open the repository inside the GitHub1s website.                    

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

الاسم Open in GitHub1s Open in GitHub1s
ID iijaagbkdohcopmmohlgfkcloefoeaoj
عنوان URL الرسمي https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj
الوصف Add a new navigation option to open GitHub repositories in GitHub1s.
حجم الملف 127 KB
عدد التثبيتات 1,601
النسخة الحالية 1.5
آخر تحديث 2022-05-10
تاريخ النشر 2021-08-18
المطور zacharysmith
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Cutwell/github1s-chrome-extension
عنوان صفحة المساعدة https://github.com/Cutwell/github1s-chrome-extension
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in GitHub1s",
    "version": "1.5",
    "description": "Add a new navigation option to open GitHub repositories in GitHub1s.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "data\/img\/icon48.png",
            "128": "data\/img\/icon128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "data\/img\/icon48.png",
        "128": "data\/img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "data\/js\/content.js"
            ],
            "css": [
                "data\/css\/extension.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}