Filter Azure DevOps Pull Requests
Come on Microsoft, really, this isn't a thing?
¿Qué es Filter Azure DevOps Pull Requests?
Filter Azure DevOps Pull Requests es una extensión de Chrome desarrollada por http://shockwaveinteractive.co.uk, y su función principal es "Come on Microsoft, really, this isn't a thing?".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Filter Azure DevOps Pull Requests
Descarga archivos de extensión Filter Azure DevOps Pull Requests en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | fdfkfaaeahombcacimhcekklliagmoao |
URL Oficial | https://chrome.google.com/webstore/detail/filter-azure-devops-pull/fdfkfaaeahombcacimhcekklliagmoao |
Descripción | Come on Microsoft, really, this isn't a thing? |
Tamaño del Archivo | 18.08 KB |
Cantidad de Instalaciones | 118 |
Versión Actual | 1.1.2 |
Última Actualización | 2019-03-01 |
Fecha de Publicación | 2019-03-01 |
Desarrollador | http://shockwaveinteractive.co.uk |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.shockwaveinteractive.co.uk/privacy-policy |
Idiomas Soportados | 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" ] } |