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
screenshot
screenshot

Скачать файл CRX расширения Github Gist logo fixer

Скачайте файлы расширений Github Gist logo fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
Электронная почта hmemcpy@gmail.com
Тип оплаты 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"
        }
    ]
}