JiraLinks

Makes all external links in Jira open in a new tab.

Wat is JiraLinks?

JiraLinks is een Chrome-extensie ontwikkeld door https://www.teamvvork.com, en de belangrijkste functie is "Makes all external links in Jira open in a new tab.".

Download het CRX-bestand van de extensie JiraLinks

Download JiraLinks-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

                        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.                    

Basisinformatie over de Extensie

Naam JiraLinks JiraLinks
ID fbnopccpenmheelimkgpboibmjakagle
Officiële URL https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle
Beschrijving Makes all external links in Jira open in a new tab.
Bestandsgrootte 59.36 KB
Aantal Installaties 25
Huidige Versie 0.4
Laatst Bijgewerkt 2017-01-13
Publicatiedatum 2017-01-12
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://www.teamvvork.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.teamvvork.com
Ondersteunde Talen 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'"
}