Git Up

Move Github repository's readme to the top

ما هو Git Up؟

Git Up هو إضافة Chrome تم تطويرها بواسطة Aniket Kudale، والميزة الرئيسية لها هي "Move Github repository's readme to the top".

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

screenshot

تحميل ملف CRX للإضافة Git Up

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

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

                        This extension moves the readme of Github Repository to the top.                    

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

الاسم Git Up Git Up
ID ippcncckpdiaahmmolbilefbldgibmff
عنوان URL الرسمي https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff
الوصف Move Github repository's readme to the top
حجم الملف 10.5 KB
عدد التثبيتات 30
النسخة الحالية 1.1
آخر تحديث 2020-09-23
تاريخ النشر 2020-09-20
تقييم 1.00/5 مجموع تقييمات 1
المطور Aniket Kudale
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Up",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Move Github repository's readme to the top",
    "homepage_url": "https:\/\/www.aniket.co",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ]
}