JIRA - Open external links in a new tab
JIRA - Open external links in a new tab
Co to jest JIRA - Open external links in a new tab?
JIRA - Open external links in a new tab to rozszerzenie Chrome opracowane przez Clement Debiaune, a jego główną funkcją jest „JIRA - Open external links in a new tab”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia JIRA - Open external links in a new tab
Pobierz pliki rozszerzeń JIRA - Open external links in a new tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dpnfbehbbngchomnngkdjopcnjhhlmep |
| Oficjalny URL | https://chromewebstore.google.com/detail/jira-open-external-links/dpnfbehbbngchomnngkdjopcnjhhlmep |
| Opis | JIRA - Open external links in a new tab |
| Rozmiar pliku | 11.81 KB |
| Liczba instalacji | 191 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2019-10-21 |
| Data Publikacji | 2019-10-21 |
| Ocena | 4.00/5 Łącznie 2 Oceny |
| Deweloper | Clement Debiaune |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/Unibozu/jira-new-tab |
| Adres URL Strony Pomocy | https://github.com/Unibozu/jira-new-tab/issues |
| Obsługiwane Języki | 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"
}
} | |