Right Click Opens Link in a Background Tab

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

Qu'est-ce que Right Click Opens Link in a Background Tab ?

Right Click Opens Link in a Background Tab est une extension Chrome développée par Etheryte, et sa fonction principale est "Right clicking a link opens the link in a new background tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Right Click Opens Link in a Background Tab

Téléchargez les fichiers d'extension Right Click Opens Link in a Background Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Right Click Opens Link in a Background Tab Right Click Opens Link in a Background Tab
ID njboaameemdigbgpphlidpdcdjmkhfjm
URL Officiel https://chromewebstore.google.com/detail/right-click-opens-link-in/njboaameemdigbgpphlidpdcdjmkhfjm
Description Right clicking a link opens the link in a new background tab.
Taille du Fichier 25.01 KB
Nombre d'Installations 988
Version Actuelle 1.2
Dernière Mise à Jour 2024-01-05
Date de Publication 2023-01-04
Évaluation 4.50/5 Total 8 Évaluations
Développeur Etheryte
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Etheryte/right-click-opens-link-in-a-background-tab
URL de la Page d'Aide https://github.com/Etheryte/right-click-opens-link-in-a-background-tab/issues
Langues Prises en Charge 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"
    }
}