JiraLinks

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

What is JiraLinks?

JiraLinks is a Chrome extension developed by https://www.teamvvork.com, and its main feature is "Makes all external links in Jira open in a new tab.".

Download JiraLinks Extension CRX File

Download JiraLinks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name JiraLinks JiraLinks
ID fbnopccpenmheelimkgpboibmjakagle
Official URL https://chromewebstore.google.com/detail/jiralinks/fbnopccpenmheelimkgpboibmjakagle
Description Makes all external links in Jira open in a new tab.
File Size 59.36 KB
Installation Count 25
Current Version 0.4
Last Updated 2017-01-13
Publish Date 2017-01-12
Rating 5.00/5 Total 2 Ratings
Developer https://www.teamvvork.com
Email [email protected]
Payment Type free
Extension Website http://www.teamvvork.com
Supported Languages 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'"
}