Do Not Merge WIP for GitHub

You do not merge *WIP* pull request!

Что такое Do Not Merge WIP for GitHub?

Do Not Merge WIP for GitHub - это расширение Chrome, разработанное sanemat, и его основная функция - "You do not merge *WIP* pull request!".

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

screenshot

Скачать файл CRX расширения Do Not Merge WIP for GitHub

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

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

                        You can't merge *WIP* pull request!

Usage:
- Put [wip] or [Do Not Merge] on the title of the pull request
- It works!                    

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

Название Do Not Merge WIP for GitHub Do Not Merge WIP for GitHub
ID nimelepbpejjlbmoobocpfnjhihnpked
Официальный URL https://chromewebstore.google.com/detail/do-not-merge-wip-for-gith/nimelepbpejjlbmoobocpfnjhihnpked
Описание You do not merge *WIP* pull request!
Размер файла 17.07 KB
Количество установок 1,069
Текущая Версия 2.0.3
Последнее Обновление 2023-04-02
Дата публикации 2019-11-03
Рейтинг 4.17/5 Всего 6 оценок
Разработчик sanemat
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sanemat/do-not-merge-wip-for-github
URL страницы помощи https://github.com/sanemat/do-not-merge-wip-for-github/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.0.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon2-16.png",
        "128": "images\/icon2-128.png"
    },
    "permissions": [],
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*\/pull\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}