Right Click Opens Link in a Background Tab

Right clicking a link opens the link in a new background tab.

What is Right Click Opens Link in a Background Tab?

Right Click Opens Link in a Background Tab is a Chrome extension developed by Etheryte, and its main feature is "Right clicking a link opens the link in a new background tab.".

Extension Screenshots

screenshot

Download Right Click Opens Link in a Background Tab Extension CRX File

Download Right Click Opens Link in a Background 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

                        This extension makes right clicking on links open the link in a new background tab. In short, the same behavior as middle mouse click or Cmd + Click on a link, but for the right mouse button. This makes opening links in new tabs a breeze on modern trackpads, where gestures already allow you to do most navigation operations without ever needing your keyboard.

This extension requires the following permissions:  

 - Access to your tabs. This is required to add new tabs in the correct order.
 - Access to all pages. This is required to listen for right clicks on links.

This extension does not gather any sort of analytics, tracking, or other such information.                    

Extension Basic Information

Name Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
Official URL https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
Description Right clicking a link opens the link in a new background tab.
File Size 25.01 KB
Installation Count 988
Current Version 1.2
Last Updated 2024-01-05
Publish Date 2023-01-04
Rating 4.50/5 Total 8 Ratings
Developer Etheryte
Email [email protected]
Payment Type free
Extension Website https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
Help Page URL https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Right Click Opens Link in a Background Tab",
    "description": "Right clicking a link opens the link in a new background tab.",
    "version": "1.2",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png",
        "512": "icons\/512.png"
    }
}