Jira Link and Search
Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
Qu'est-ce que Jira Link and Search ?
Jira Link and Search est une extension Chrome développée par Nick Orlando, et sa fonction principale est "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jira Link and Search
Téléchargez les fichiers d'extension Jira Link and Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | jlpbojfbbmodkbjhemkcmkhhlkpijhbi |
URL Officiel | https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi |
Description | Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira. |
Taille du Fichier | 58.29 KB |
Nombre d'Installations | 57 |
Version Actuelle | 0.2.4 |
Dernière Mise à Jour | 2018-01-28 |
Date de Publication | 2018-01-28 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | Nick Orlando |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/NickMOrlando/JiraSearchTool |
URL de la Page d'Aide | https://github.com/NickMOrlando/JiraSearchTool/issues |
URL de la Page de Politique de Confidentialité | https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md |
Langues Prises en Charge | 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" ] } |