Inspect and view changes in Azure DevOps icon [Pipelines] source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Azure DevOps icon [Pipelines]",
"version": "1.0.18",
"description": "Adds colour-coded tab icons and associated shortcut button for Pipelines on Azure DevOps",
"homepage_url": "https://github.com/wwestrop/AzureDevopsIcons",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"96": "icon.png"
},
"content_scripts": [
{
"matches": [
"*://*.visualstudio.com/*",
"*://dev.azure.com/*"
],
"js": [
"content-script.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"tabs",
"storage"
],
"browser_action": {
"default_icon": "icon.png",
"default_title": "Pipelines",
"default_area": "personaltoolbar"
},
"options_ui": {
"page": "settings.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{91963394-6b51-43f2-9e29-b48b1716f548}",
"strict_min_version": "80.0"
}
},
"extension_params": {
"urlSuffix": "_build"
}
}