Github Annotator
Show user details and repository info in a tooltip.
ما هو Github Annotator؟
Github Annotator هو إضافة Chrome تم تطويرها بواسطة Mesut Tasci، والميزة الرئيسية لها هي "Show user details and repository info in a tooltip.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Github Annotator
قم بتنزيل ملفات الامتداد Github Annotator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
                        Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages.
Extension source code:
https://github.com/mesuutt/github-annotator                     معلومات أساسية عن التمديد
| الاسم |   |  
| ID | epmbkocbfiejffcjahjhncadlipmdime | 
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime | 
| الوصف | Show user details and repository info in a tooltip. | 
| حجم الملف | 81.68 KB | 
| عدد التثبيتات | 214 | 
| النسخة الحالية | 2.1 | 
| آخر تحديث | 2017-10-22 | 
| تاريخ النشر | 2017-10-22 | 
| تقييم | 4.50/5 مجموع تقييمات 2 | 
| المطور | Mesut Tasci | 
| البريد الإلكتروني | [email protected] | 
| نوع الدفع | free | 
| موقع الإضافة | http://github.com/mesuutt/github-annotator | 
| عنوان صفحة المساعدة | https://github.com/mesuutt/github-annotator/issues | 
| اللغات المدعومة | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Annotator",
    "description": "Show user details and repository info in a tooltip.",
    "manifest_version": 2,
    "version": "2.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery-1.9.1.min.js",
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/github.com\/"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    }
}  |  |