JiraLinks
Makes all external links in Jira open in a new tab.
Was ist JiraLinks?
JiraLinks ist eine Chrome-Erweiterung, die von https://www.teamvvork.com entwickelt wurde, und ihr Hauptmerkmal ist "Makes all external links in Jira open in a new tab.".
JiraLinks-Erweiterungs-CRX-Datei herunterladen
Laden Sie JiraLinks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
One of the most infuriating things about using Jira is the fact that external links don't open in a new tab. Atlassian has refused to add this as a setting or feature event though many have asked for it.
This simple extension solves that issue for you by editing all external links in Jira to open in a new tab or window. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fbnopccpenmheelimkgpboibmjakagle |
| Offizielle URL | https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle |
| Beschreibung | Makes all external links in Jira open in a new tab. |
| Dateigröße | 59.36 KB |
| Installationsanzahl | 25 |
| Aktuelle Version | 0.4 |
| Letztes Update | 2017-01-13 |
| Veröffentlichungsdatum | 2017-01-12 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://www.teamvvork.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.teamvvork.com |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JiraLinks",
"description": "Makes all external links in Jira open in a new tab.",
"version": "0.4",
"permissions": [],
"icons": {
"16": "\/img\/icon16.png",
"48": "\/img\/icon48.png",
"128": "\/img\/icon128.png"
},
"browser_action": {
"default_icon": "\/img\/icon128.png",
"default_popup": "home.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.atlassian.net\/*"
],
"js": [
"\/js\/jquery-3.1.1.min.js",
"content.js"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |