Filter Azure DevOps Pull Requests

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

O que é Filter Azure DevOps Pull Requests?

Filter Azure DevOps Pull Requests é uma extensão do Chrome desenvolvida por http://shockwaveinteractive.co.uk, e sua principal característica é "Come on Microsoft, really, this isn't a thing?".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Filter Azure DevOps Pull Requests

Baixe arquivos de extensão Filter Azure DevOps Pull Requests no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Filter Azure DevOps Pull Requests Filter Azure DevOps Pull Requests
ID fdfkfaaeahombcacimhcekklliagmoao
URL Oficial https://chrome.google.com/webstore/detail/filter-azure-devops-pull/fdfkfaaeahombcacimhcekklliagmoao
Descrição Come on Microsoft, really, this isn't a thing?
Tamanho do Arquivo 18.08 KB
Contagem de Instalações 118
Versão Atual 1.1.2
Última Atualização 2019-03-01
Data de Publicação 2019-03-01
Desenvolvedor http://shockwaveinteractive.co.uk
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.shockwaveinteractive.co.uk/privacy-policy
Idiomas Suportados 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"
    ]
}