Filter Azure DevOps Pull Requests

Come on Microsoft, really, this isn't a thing?

Что такое Filter Azure DevOps Pull Requests?

Filter Azure DevOps Pull Requests - это расширение Chrome, разработанное http://shockwaveinteractive.co.uk, и его основная функция - "Come on Microsoft, really, this isn't a thing?".

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

screenshot

Скачать файл CRX расширения Filter Azure DevOps Pull Requests

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

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

                        Such a simple feature, allows you to filter the pull requests in VSTS by the branch they are being merged into and/of the title of the PR.

Click the icon in the top right to set the filter.                    

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

Название Filter Azure DevOps Pull Requests Filter Azure DevOps Pull Requests
ID fdfkfaaeahombcacimhcekklliagmoao
Официальный URL https://chrome.google.com/webstore/detail/filter-azure-devops-pull/fdfkfaaeahombcacimhcekklliagmoao
Описание Come on Microsoft, really, this isn't a thing?
Размер файла 18.08 KB
Количество установок 118
Текущая Версия 1.1.2
Последнее Обновление 2019-03-01
Дата публикации 2019-03-01
Разработчик http://shockwaveinteractive.co.uk
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.shockwaveinteractive.co.uk/privacy-policy
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Filter Azure DevOps Pull Requests",
    "version": "1.1.2",
    "description": "Come on Microsoft, really, this isn't a thing?",
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.visualstudio.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab"
    ]
}