JIRA - Open external links in a new tab
JIRA - Open external links in a new tab
Cos'è JIRA - Open external links in a new tab?
JIRA - Open external links in a new tab è un'estensione di Chrome sviluppata da Clement Debiaune, e la sua funzione principale è "JIRA - Open external links in a new tab".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione JIRA - Open external links in a new tab
Scarica i file di estensione JIRA - Open external links in a new tab 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
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
Informazioni di Base sull'Estensione
Nome | JIRA - Open external links in a new tab |
ID | dpnfbehbbngchomnngkdjopcnjhhlmep |
URL Ufficiale | https://chromewebstore.google.com/detail/jira-open-external-links/dpnfbehbbngchomnngkdjopcnjhhlmep |
Descrizione | JIRA - Open external links in a new tab |
Dimensione del File | 11.81 KB |
Conteggio Installazioni | 191 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-10-21 |
Data di Pubblicazione | 2019-10-21 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | Clement Debiaune |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Unibozu/jira-new-tab |
URL della Pagina di Aiuto | https://github.com/Unibozu/jira-new-tab/issues |
Lingue Supportate | 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" } } |