Simple Tab Switcher

A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.

Qu'est-ce que Simple Tab Switcher ?

Simple Tab Switcher est une extension Chrome développée par JmQu, et sa fonction principale est "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Simple Tab Switcher

Téléchargez les fichiers d'extension Simple Tab Switcher 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

                        A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available.

- The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs.
- The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs.

*P.S.* You can change it through the *chrome://extensions/shortcuts*.

It is open source at https://github.com/SanCoder-Q/tab-switcher                    

Informations de Base sur l'Extension

Nom Simple Tab Switcher Simple Tab Switcher
ID jmihjpkeaeknejefhonkbgldenaplegj
URL Officiel https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj
Description A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
Taille du Fichier 24.19 KB
Nombre d'Installations 62
Version Actuelle 0.2.1
Dernière Mise à Jour 2022-09-24
Date de Publication 2019-03-04
Évaluation 5.00/5 Total 2 Évaluations
Développeur JmQu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/SanCoder-Q/tab-switcher
URL de la Page d'Aide https://github.com/SanCoder-Q/tab-switcher
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Tab Switcher",
    "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.",
    "version": "0.2.1",
    "icons": {
        "16": "resources\/90.png",
        "48": "resources\/90.png",
        "128": "resources\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "resources\/90.png",
            "48": "resources\/90.png",
            "128": "resources\/128.png"
        }
    },
    "background": {
        "scripts": [
            "bundle.min.js"
        ]
    },
    "commands": {
        "switchTab": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Switch to recent tab"
        },
        "moveTabCrossWindow": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Move current tab to next window"
        }
    },
    "permissions": [
        "storage",
        "commands",
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher"
}