Filter Azure DevOps Pull Requests

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

Hvad er Filter Azure DevOps Pull Requests?

Filter Azure DevOps Pull Requests er en Chrome-udvidelse udviklet af http://shockwaveinteractive.co.uk, og dens hovedfunktion er "Come on Microsoft, really, this isn't a thing?".

Udvidelsesskærmbilleder

screenshot

Download Filter Azure DevOps Pull Requests-udvidelses-CRX-fil

Download Filter Azure DevOps Pull Requests-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Filter Azure DevOps Pull Requests Filter Azure DevOps Pull Requests
ID fdfkfaaeahombcacimhcekklliagmoao
Officiel URL https://chrome.google.com/webstore/detail/filter-azure-devops-pull/fdfkfaaeahombcacimhcekklliagmoao
Beskrivelse Come on Microsoft, really, this isn't a thing?
Filstørrelse 18.08 KB
Antal Installationer 118
Nuværende Version 1.1.2
Senest Opdateret 2019-03-01
Udgivelsesdato 2019-03-01
Udvikler http://shockwaveinteractive.co.uk
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.shockwaveinteractive.co.uk/privacy-policy
Understøttede Sprog 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"
    ]
}