JIRA - Open external links in a new tab

JIRA - Open external links in a new tab

What is JIRA - Open external links in a new tab?

JIRA - Open external links in a new tab is a Chrome extension developed by Clement Debiaune, and its main feature is "JIRA - Open external links in a new tab".

Extension Screenshots

screenshot

Download JIRA - Open external links in a new tab Extension CRX File

Download JIRA - Open external links in a new tab 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

                        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                    

Extension Basic Information

Name JIRA - Open external links in a new tab JIRA - Open external links in a new tab
ID dpnfbehbbngchomnngkdjopcnjhhlmep
Official URL https://chromewebstore.google.com/detail/jira-open-external-links/dpnfbehbbngchomnngkdjopcnjhhlmep
Description JIRA - Open external links in a new tab
File Size 11.81 KB
Installation Count 191
Current Version 1.0
Last Updated 2019-10-21
Publish Date 2019-10-21
Rating 4.00/5 Total 2 Ratings
Developer Clement Debiaune
Email [email protected]
Payment Type free
Extension Website https://github.com/Unibozu/jira-new-tab
Help Page URL https://github.com/Unibozu/jira-new-tab/issues
Supported Languages 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"
    }
}