Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

What is Open in new tab?

Open in new tab is a Chrome extension developed by Ramkumar K R, and its main feature is "Open links in new tab for a list of specified domains. Useful for sites such as hackernews".

Extension Screenshots

screenshot
screenshot

Download Open in new tab Extension CRX File

Download Open in 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

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

Extension Basic Information

Name Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
Official URL https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
Description Open links in new tab for a list of specified domains. Useful for sites such as hackernews
File Size 101 KB
Installation Count 8,400
Current Version 0.0.15
Last Updated 2020-05-21
Publish Date 2020-05-21
Rating 3.56/5 Total 54 Ratings
Developer Ramkumar K R
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}