Filter Azure DevOps Pull Requests
Come on Microsoft, really, this isn't a thing?
Was ist Filter Azure DevOps Pull Requests?
Filter Azure DevOps Pull Requests ist eine Chrome-Erweiterung, die von http://shockwaveinteractive.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Come on Microsoft, really, this isn't a thing?".
Erweiterungsscreenshots
Filter Azure DevOps Pull Requests-Erweiterungs-CRX-Datei herunterladen
Laden Sie Filter Azure DevOps Pull Requests-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fdfkfaaeahombcacimhcekklliagmoao |
| Offizielle URL | https://chrome.google.com/webstore/detail/filter-azure-devops-pull/fdfkfaaeahombcacimhcekklliagmoao |
| Beschreibung | Come on Microsoft, really, this isn't a thing? |
| Dateigröße | 18.08 KB |
| Installationsanzahl | 118 |
| Aktuelle Version | 1.1.2 |
| Letztes Update | 2019-03-01 |
| Veröffentlichungsdatum | 2019-03-01 |
| Entwickler | http://shockwaveinteractive.co.uk |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://www.shockwaveinteractive.co.uk/privacy-policy |
| Unterstützte Sprachen | 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"
]
} | |