Filter Azure DevOps Pull Requests

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

What is Filter Azure DevOps Pull Requests?

Filter Azure DevOps Pull Requests is a Chrome extension developed by http://shockwaveinteractive.co.uk, and its main feature is "Come on Microsoft, really, this isn't a thing?".

Extension Screenshots

screenshot

Download Filter Azure DevOps Pull Requests Extension CRX File

Download Filter Azure DevOps Pull Requests extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Filter Azure DevOps Pull Requests Filter Azure DevOps Pull Requests
ID fdfkfaaeahombcacimhcekklliagmoao
Official URL https://chrome.google.com/webstore/detail/filter-azure-devops-pull/fdfkfaaeahombcacimhcekklliagmoao
Description Come on Microsoft, really, this isn't a thing?
File Size 18.08 KB
Installation Count 118
Current Version 1.1.2
Last Updated 2019-03-01
Publish Date 2019-03-01
Developer http://shockwaveinteractive.co.uk
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.shockwaveinteractive.co.uk/privacy-policy
Supported Languages 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"
    ]
}