Open New Tab Here

A shortcut to open a new tab next to the current one

Qu'est-ce que Open New Tab Here ?

Open New Tab Here est une extension Chrome développée par Gilmore Davidson, et sa fonction principale est "A shortcut to open a new tab next to the current one".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open New Tab Here

Téléchargez les fichiers d'extension Open New Tab Here 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

                        By default, Chrome will only open a new tab at the very end of the row of tabs, which isn’t always what you want. This is a quick shortcut to open a new tab to the right of the one you’re currently viewing.

You can either use the button to the right of the address bar, or a configurable keyboard shortcut. The default keyboard shortcut is:

• For Windows & Linux: Alt + T
• For macOS: Ctrl + T

There is also a shortcut to open the new tab in the background instead of switching to it straight away:

• For Windows & Linux: Alt + Shift + T
• For macOS: Ctrl + Shift + T

You can change these shortcuts by going to chrome://extensions/shortcuts

The code is open source at https://github.com/gilmoreorless/chrome-new-tab-here                    

Informations de Base sur l'Extension

Nom Open New Tab Here Open New Tab Here
ID kpoogeanhkgkbkagbgeibbokbjdbjodb
URL Officiel https://chromewebstore.google.com/detail/open-new-tab-here/kpoogeanhkgkbkagbgeibbokbjdbjodb
Description A shortcut to open a new tab next to the current one
Taille du Fichier 15.7 KB
Nombre d'Installations 688
Version Actuelle 1.1.0
Dernière Mise à Jour 2021-04-14
Date de Publication 2017-07-11
Évaluation 4.76/5 Total 21 Évaluations
Développeur Gilmore Davidson
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/gilmoreorless/chrome-new-tab-here
URL de la Page d'Aide https://github.com/gilmoreorless/chrome-new-tab-here/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open New Tab Here",
    "short_name": "New Tab Here",
    "version": "1.1.0",
    "description": "A shortcut to open a new tab next to the current one",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "listener.js"
        ]
    },
    "browser_action": {
        "default_title": "Open a new tab next to the current one"
    },
    "commands": {
        "new-tab-here": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "MacCtrl+T"
            },
            "description": "Open a new tab next to the current one"
        },
        "new-tab-here-background": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "MacCtrl+Shift+T"
            },
            "description": "Open a new tab in the background next to the current one"
        }
    }
}