JIRA - Open external links in a new tab
JIRA - Open external links in a new tab
Qu'est-ce que JIRA - Open external links in a new tab ?
JIRA - Open external links in a new tab est une extension Chrome développée par Clement Debiaune, et sa fonction principale est "JIRA - Open external links in a new tab".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension JIRA - Open external links in a new tab
Téléchargez les fichiers d'extension JIRA - Open external links in a new tab 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
Numerous users have requested this feature for JIRA but it has not - yet - landed on JIRA Cloud (https://jira.atlassian.com/browse/JRASERVER-9380). This is a tiny Chrome extension (less than 30 lines of code) - feedback is welcome! Features * JIRA Cloud (*.atlassian.net) * Opens external links in a new tab * Internal links between Atlassian products should not be affected * Ignores `mailto:` links Github: https://github.com/Unibozu/jira-new-tab
Informations de Base sur l'Extension
Nom | JIRA - Open external links in a new tab |
ID | dpnfbehbbngchomnngkdjopcnjhhlmep |
URL Officiel | https://chromewebstore.google.com/detail/jira-open-external-links/dpnfbehbbngchomnngkdjopcnjhhlmep |
Description | JIRA - Open external links in a new tab |
Taille du Fichier | 11.81 KB |
Nombre d'Installations | 191 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2019-10-21 |
Date de Publication | 2019-10-21 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | Clement Debiaune |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Unibozu/jira-new-tab |
URL de la Page d'Aide | https://github.com/Unibozu/jira-new-tab/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JIRA - Open external links in a new tab", "version": "1.0", "description": "JIRA - Open external links in a new tab", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "content-script.js" ] } ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" } } |