New Tab

Open external link on new tab on google search result, Jira and Stackoverflow

What is New Tab?

New Tab is a Chrome extension developed by Thinh Nguyen, and its main feature is "Open external link on new tab on google search result, Jira and Stackoverflow".

Extension Screenshots

screenshot
screenshot
screenshot

Download New Tab Extension CRX File

Download 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

                        Some time when i used Stackoverflow to research and Jira for manage task, once i clicked on a link external link then it opened link on same tab. So i can't read other information on the task page.
This extension will open external link on new tab.                    

Extension Basic Information

Name New Tab New Tab
ID omobkjbchckaocdkcbeapemooohjgbnk
Official URL https://chromewebstore.google.com/detail/new-tab/omobkjbchckaocdkcbeapemooohjgbnk
Description Open external link on new tab on google search result, Jira and Stackoverflow
File Size 38.51 KB
Installation Count 353
Current Version 1.2
Last Updated 2022-03-07
Publish Date 2021-06-23
Rating 5.00/5 Total 6 Ratings
Developer Thinh Nguyen
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab ",
    "version": "1.2",
    "description": "Open external link on new tab on google search result, Jira and Stackoverflow",
    "manifest_version": 3,
    "action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackoverflow.com\/*",
                "https:\/\/*.atlassian.net\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/ExtLink.js"
            ]
        }
    ]
}