Parents for Azure Devops Boards
Fetch and display the parent of each item and also the remainings in Azure Devops Boards
Cos'è Parents for Azure Devops Boards?
Parents for Azure Devops Boards è un'estensione di Chrome sviluppata da jdmry, e la sua funzione principale è "Fetch and display the parent of each item and also the remainings in Azure Devops Boards".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Parents for Azure Devops Boards
Scarica i file di estensione Parents for Azure Devops Boards in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Pre-requisites - In your board display settings, choose to display the ID of the work item on the card - Use the new azure devops url pattern (eg. https://dev.azure.com/org/....) How to use - Refresh the board page and click on the extension icon - If anything goes wrong at any time or it doesn't work, please just refresh the page and re-click on the extension icon
Informazioni di Base sull'Estensione
Nome | Parents for Azure Devops Boards |
ID | fbdbipdlfojffkpopckfpohmaiabglad |
URL Ufficiale | https://chromewebstore.google.com/detail/parents-for-azure-devops/fbdbipdlfojffkpopckfpohmaiabglad |
Descrizione | Fetch and display the parent of each item and also the remainings in Azure Devops Boards |
Dimensione del File | 466 KB |
Conteggio Installazioni | 118 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2019-10-29 |
Data di Pubblicazione | 2019-10-29 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | jdmry |
Tipo di Pagamento | free |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Parents for Azure Devops Boards", "version": "1.1.0", "description": "Fetch and display the parent of each item and also the remainings in Azure Devops Boards", "permissions": [ "https:\/\/dev.azure.com\/", "storage", "activeTab", "webRequest" ], "background": { "scripts": [ "src\/bg\/background.js", "js\/jquery-3.4.1.min.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/dev.azure.com\/*\/*\/_boards\/board\/t\/*", "https:\/\/dev.azure.com\/*\/*\/_sprints\/taskboard\/*" ], "js": [ "src\/inject\/fa.js", "src\/inject\/inject.js", "js\/jquery-3.4.1.min.js" ] } ], "browser_action": { "default_title": "Bring Parents!" }, "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |