JiraLinks

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

Qu'est-ce que JiraLinks ?

JiraLinks est une extension Chrome développée par https://www.teamvvork.com, et sa fonction principale est "Makes all external links in Jira open in a new tab.".

Télécharger le fichier CRX de l'extension JiraLinks

Téléchargez les fichiers d'extension JiraLinks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom JiraLinks JiraLinks
ID fbnopccpenmheelimkgpboibmjakagle
URL Officiel https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle
Description Makes all external links in Jira open in a new tab.
Taille du Fichier 59.36 KB
Nombre d'Installations 25
Version Actuelle 0.4
Dernière Mise à Jour 2017-01-13
Date de Publication 2017-01-12
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://www.teamvvork.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.teamvvork.com
Langues Prises en Charge 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'"
}