JIRA - Open external links in a new tab
JIRA - Open external links in a new tab
Wat is JIRA - Open external links in a new tab?
JIRA - Open external links in a new tab is een Chrome-extensie ontwikkeld door Clement Debiaune, en de belangrijkste functie is "JIRA - Open external links in a new tab".
Extensie Screenshots
Download het CRX-bestand van de extensie JIRA - Open external links in a new tab
Download JIRA - Open external links in a new tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | JIRA - Open external links in a new tab |
ID | dpnfbehbbngchomnngkdjopcnjhhlmep |
Officiële URL | https://chromewebstore.google.com/detail/jira-open-external-links/dpnfbehbbngchomnngkdjopcnjhhlmep |
Beschrijving | JIRA - Open external links in a new tab |
Bestandsgrootte | 11.81 KB |
Aantal Installaties | 191 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2019-10-21 |
Publicatiedatum | 2019-10-21 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Clement Debiaune |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Unibozu/jira-new-tab |
Help Pagina-URL | https://github.com/Unibozu/jira-new-tab/issues |
Ondersteunde Talen | 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" } } |