Open Tabs In Foreground

Open Tabs In Foreground

Cos'è Open Tabs In Foreground?

Open Tabs In Foreground è un'estensione di Chrome sviluppata da Sebastian Blask, e la sua funzione principale è "Open Tabs In Foreground".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Open Tabs In Foreground

Scarica i file di estensione Open Tabs In Foreground in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Open Tabs In Foreground
=======================

Clicking a link using the left mouse button while having Ctrl pressed opens it
in a background tab by default. The same when using the middle mouse button.
This extension opens these tabs in the foreground instead. Tabs are only opened
in the background when having Shift pressed while clicking.

You won't need this extension in Firefox as it has a setting for this called
`When you open a link in a new tab, switch to it immediately`, but in Chrome
there is no way to achieve this otherwise.

Feedback
--------

You can report bugs or make feature requests on
https://github.com/sblask/webextension-open-tabs-in-foreground

Patches are welcome.                    

Informazioni di Base sull'Estensione

Nome Open Tabs In Foreground Open Tabs In Foreground
ID bmnanfhdjbcilhippcdfbhfpfoipgjgm
URL Ufficiale https://chromewebstore.google.com/detail/open-tabs-in-foreground/bmnanfhdjbcilhippcdfbhfpfoipgjgm
Descrizione Open Tabs In Foreground
Dimensione del File 41 KB
Conteggio Installazioni 576
Versione Corrente 1.0.5
Ultimo Aggiornamento 2023-03-25
Data di Pubblicazione 2017-10-10
Valutazione 4.43/5 Totale 7 Valutazioni
Sviluppatore Sebastian Blask
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sblask/webextension-open-tabs-in-foreground
URL della Pagina di Aiuto https://github.com/sblask/webextension-open-tabs-in-foreground
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Open Tabs In Foreground",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-open-tabs-in-foreground",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "Open Tabs In Foreground",
    "permissions": [
        ""
    ],
    "version": "1.0.5"
}