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.".

Снимки экрана расширения

screenshot
screenshot

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

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

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

                        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                    

Основная информация о расширении

Название Github Annotator 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
URL страницы помощи 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"
    }
}