Github Gist logo fixer

Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.

ما هو Github Gist logo fixer؟

Github Gist logo fixer هو إضافة Chrome تم تطويرها بواسطة https://hmemcpy.com، والميزة الرئيسية لها هي "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".

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

screenshot

تحميل ملف CRX للإضافة Github Gist logo fixer

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

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

                        A tiny bit of JavaScript to have clicking on the top left logo on Github's Gist page take back to github.

Solves a personal annoyance of mine, but I hope you'll find it useful as well.

Feel free to send me pull requests to improve it!                    

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

الاسم Github Gist logo fixer Github Gist logo fixer
ID bgkfamnjiedcggijadfmjopnmidnkdad
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad
الوصف Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
حجم الملف 4.12 KB
عدد التثبيتات 80
النسخة الحالية 1.1
آخر تحديث 2015-05-17
تاريخ النشر 2015-05-17
تقييم 5.00/5 مجموع تقييمات 1
المطور https://hmemcpy.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/hmemcpy/gisthub
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Gist logo fixer",
    "description": "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.",
    "version": "1.1",
    "permissions": [
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "github-inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}