GEditor - GitHub Button Editor

GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.

ما هو GEditor - GitHub Button Editor؟

GEditor - GitHub Button Editor هو إضافة Chrome تم تطويرها بواسطة https://kopi.dev، والميزة الرئيسية لها هي "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.".

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

screenshot

تحميل ملف CRX للإضافة GEditor - GitHub Button Editor

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

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

                        I always find it inconvenient to read code on GitHub, and even with things like Octotree, I always find it too much trouble to cut around and too slow to clone down some of the libraries, so I came up with the idea of having an online VS Code tool to read GitHub code                    

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

الاسم GEditor - GitHub Button Editor GEditor - GitHub Button Editor
ID cpfldfidpgollddlhpbgflolgjdlfnob
عنوان URL الرسمي https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob
الوصف GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
حجم الملف 152 KB
عدد التثبيتات 32
النسخة الحالية 0.0.0.2
آخر تحديث 2021-03-25
تاريخ النشر 2021-03-25
تقييم 5.00/5 مجموع تقييمات 1
المطور https://kopi.dev
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://kopi.dev
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GEditor - GitHub Button Editor",
    "description": "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.",
    "version": "0.0.0.2",
    "browser_action": {
        "default_title": "GEditor"
    },
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}