GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

ما هو GitHub Dashboard Avatars؟

GitHub Dashboard Avatars هو إضافة Chrome تم تطويرها بواسطة ryaneof، والميزة الرئيسية لها هي "Display your Github dashboard avatars appropriately.".

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

screenshot
screenshot

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

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

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

                        A simple Chrome Extension which display your GitHub dashboard avatars appropriately.

Display Options: All Avatars, No Avatars.                    

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

الاسم GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
عنوان URL الرسمي https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
الوصف Display your Github dashboard avatars appropriately.
حجم الملف 74.46 KB
عدد التثبيتات 49
النسخة الحالية 0.1.3
آخر تحديث 2016-07-29
تاريخ النشر 2016-07-29
المطور ryaneof
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ryaneof/github-dashboard-avatars
عنوان صفحة المساعدة https://github.com/ryaneof/github-dashboard-avatars
عنوان صفحة سياسة الخصوصية https://ryan.im
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Dashboard Avatars",
    "version": "0.1.3",
    "manifest_version": 2,
    "description": "Display your Github dashboard avatars appropriately.",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "bower_components\/object.observe\/dist\/object-observe.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*.github.com\/*"
    ]
}