Jira Link and Search
Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
Cos'è Jira Link and Search?
Jira Link and Search è un'estensione di Chrome sviluppata da Nick Orlando, e la sua funzione principale è "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jira Link and Search
Scarica i file di estensione Jira Link and Search 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
This extension allows you to select any text in Chrome, and right-click to search for the selected text within an install of Atlassian JIRA. Recent Changes: 0.2: NEW - This extension will automatically highlight Jira tickets (in the format ABC-123) and turn them directly into hyperlinks! This extension is Open-Source (MIT License). Source code is available on GitHub. Please submit any issues (and Pull Requests) via GitHub.
Informazioni di Base sull'Estensione
Nome | |
ID | jlpbojfbbmodkbjhemkcmkhhlkpijhbi |
URL Ufficiale | https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi |
Descrizione | Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira. |
Dimensione del File | 58.29 KB |
Conteggio Installazioni | 57 |
Versione Corrente | 0.2.4 |
Ultimo Aggiornamento | 2018-01-28 |
Data di Pubblicazione | 2018-01-28 |
Valutazione | 4.33/5 Totale 3 Valutazioni |
Sviluppatore | Nick Orlando |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/NickMOrlando/JiraSearchTool |
URL della Pagina di Aiuto | https://github.com/NickMOrlando/JiraSearchTool/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jira Link and Search", "short_name": "Jira Link-Search", "description": "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.", "version": "0.2.4", "minimum_chrome_version": "38", "permissions": [ "contextMenus", "tabs", "https:\/\/www.google-analytics.com\/", "storage" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": "assets\/search.png" }, "background": { "page": "background.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "highlight.js", "activate-ga.js" ] } ], "web_accessible_resources": [ "ga.js", "background.html" ] } |