SuperTabs

SuperTabs allows you to list and search current open tabs and switch to them quickly.

Qu'est-ce que SuperTabs ?

SuperTabs est une extension Chrome développée par https://hamedmp.github.io, et sa fonction principale est "SuperTabs allows you to list and search current open tabs and switch to them quickly.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension SuperTabs

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

                        Have you ever lost in the open tabs of your browser? Do you know how many open tabs you have at the moment? 

SuperTabs allows you to list and search current open tabs and switch to them quickly.

You can search for tabs based on their titles. The number of open tabs is shown as badge counter. By selecting the title of the tabs, it will get activated. You can navigate through the search result using Tab button and pressing Enter will activate that tab. 

For opening the pop up, use the shortcut of Cmd+E on Mac and Ctrl+E on Windows. Video here: https://youtu.be/uad9mZknUDk

Enjoying it? Cheer me up by buying me a coffee, I love it: buymeacoff.ee/hamedmp                    

Informations de Base sur l'Extension

Nom SuperTabs SuperTabs
ID mlgnpmfabelpnbinakibjcaibnfdnpkn
URL Officiel https://chromewebstore.google.com/detail/supertabs/mlgnpmfabelpnbinakibjcaibnfdnpkn
Description SuperTabs allows you to list and search current open tabs and switch to them quickly.
Taille du Fichier 40.65 KB
Nombre d'Installations 2,683
Version Actuelle 1.0.1
Dernière Mise à Jour 2018-05-28
Date de Publication 2018-05-28
Évaluation 4.86/5 Total 7 Évaluations
Développeur https://hamedmp.github.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/HamedMP/SuperTabs
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SuperTabs",
    "description": "SuperTabs allows you to list and search current open tabs and switch to them quickly.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon_16.png",
            "32": "assets\/icon_32.png",
            "64": "assets\/icon_64.png",
            "128": "assets\/icon_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "SuperTabs"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "global": true
        }
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}