Extra GitHub PR Info
Edits to the GitHub UI to make it more informative
Что такое Extra GitHub PR Info?
Extra GitHub PR Info - это расширение Chrome, разработанное Meta, и его основная функция - "Edits to the GitHub UI to make it more informative".
Снимки экрана расширения
Скачать файл CRX расширения Extra GitHub PR Info
Скачайте файлы расширений Extra GitHub PR Info в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        A collection of GitHub quality of life improvements:
See https://github.com/driazati/github-extension for details                     Основная информация о расширении
| Название |   |  
| ID | pianlbphbcjkcghlboepagpoilanigff | 
| Официальный URL | https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff | 
| Описание | Edits to the GitHub UI to make it more informative | 
| Размер файла | 38.37 KB | 
| Количество установок | 231 | 
| Текущая Версия | 1.8.3 | 
| Последнее Обновление | 2021-09-30 | 
| Дата публикации | 2020-03-11 | 
| Разработчик | Meta | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://github.com/driazati/github-extension | 
| URL страницы помощи | https://github.com/driazati/github-extension | 
| Поддерживаемые языки | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extra GitHub PR Info",
    "short_name": "Extra GitHub PR Info",
    "description": "Edits to the GitHub UI to make it more informative",
    "version": "1.8.3",
    "author": "pytorch",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/pulls*",
                "*:\/\/github.com\/pulls*"
            ],
            "js": [
                "lib.js",
                "show_build_status.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "disable_pjax.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*",
                "*:\/\/github.com\/*\/*",
                "*:\/\/github.com\/*\/*\/commits\/*"
            ],
            "js": [
                "lib.js",
                "unminimize_comments.js",
                "sort_signals.js",
                "remove_timeline_events.js",
                "expand_signals_box.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*\/files"
            ],
            "js": [
                "lib.js",
                "reorder_code_reviews.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "remove_cors.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ]
}  |  |