GitHub with a cape

Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!

Что такое GitHub with a cape?

GitHub with a cape - это расширение Chrome, разработанное NicoSantangelo, и его основная функция - "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".

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

screenshot

Скачать файл CRX расширения GitHub with a cape

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

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

                        All options can be turn on and off, it includes:

- Notifications modal
- Resizeable splitted diffs
- Add collapsable diffs
- Show All / Hide All buttons
- Show the current diff name on the sticky header
- Add collapsable commits
- Toggle contributions by clicking the added/deleted stats
- Show outdated diff comments by default
- Highlights the outdated diff icon (the X) on PRs                    

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

Название GitHub with a cape GitHub with a cape
ID ohkgmmldhbadfleajjafdeahmakbbcpi
Официальный URL https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi
Описание Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
Размер файла 31.47 KB
Количество установок 22
Текущая Версия 1.4.4
Последнее Обновление 2017-02-12
Дата публикации 2017-02-11
Рейтинг 5.00/5 Всего 3 оценок
Разработчик NicoSantangelo
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github-with-a-cape.nicosantangelo.com/
URL страницы помощи https://github.com/NicoSantangelo/github-with-a-cape/issues
URL страницы политики конфиденциальности https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub with a cape",
    "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
    "short_name": "Github with a cape",
    "version": "1.4.4",
    "icons": {
        "18": "icons\/18.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "configuration.js",
                "notifications.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "notifications.html"
    ]
}