GitHub Remarks

a chrome extension that can give github repos your own remarks

ما هو GitHub Remarks؟

GitHub Remarks هو إضافة Chrome تم تطويرها بواسطة hanzichi، والميزة الرئيسية لها هي "a chrome extension that can give github repos your own remarks".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        a chrome extension that can give github repos your own remarks                    

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

الاسم GitHub Remarks GitHub Remarks
ID pkepkgjchpahghcfdmdokoonapagblem
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem
الوصف a chrome extension that can give github repos your own remarks
حجم الملف 178 KB
عدد التثبيتات 45
النسخة الحالية 1.2.1
آخر تحديث 2018-05-28
تاريخ النشر 2018-05-27
تقييم 5.00/5 مجموع تقييمات 1
المطور hanzichi
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/hanzichi/github-remarks
عنوان صفحة المساعدة https://github.com/hanzichi/github-remarks/issues
اللغات المدعومة zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Remarks",
    "manifest_version": 2,
    "version": "1.2.1",
    "description": "a chrome extension that can give github repos your own remarks",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": {
            "19": "icons\/icon_19.png",
            "38": "icons\/icon_38.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*"
            ],
            "js": [
                "content-scripts\/repoDetail.js"
            ],
            "css": [],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/list.min.js",
                "content-scripts\/stars.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ]
}