Right Click Opens Link in a Background Tab

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

Was ist Right Click Opens Link in a Background Tab?

Right Click Opens Link in a Background Tab ist eine Chrome-Erweiterung, die von Etheryte entwickelt wurde, und ihr Hauptmerkmal ist "Right clicking a link opens the link in a new background tab.".

Erweiterungsscreenshots

screenshot

Right Click Opens Link in a Background Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Right Click Opens Link in a Background Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
Offizielle URL https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
Beschreibung Right clicking a link opens the link in a new background tab.
Dateigröße 25.01 KB
Installationsanzahl 988
Aktuelle Version 1.2
Letztes Update 2024-01-05
Veröffentlichungsdatum 2023-01-04
Bewertung 4.50/5 Insgesamt 8 Bewertungen
Entwickler Etheryte
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
Hilfeseite URL https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
Unterstützte Sprachen 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"
    }
}