Tab Menu

A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.

Qu'est-ce que Tab Menu ?

Tab Menu est une extension Chrome développée par Ye, et sa fonction principale est "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tab Menu

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

                        Tab Menu is a minimalist tab manager for Chrome. It enables you to search, switch, rearrange, and close tabs from the toolbar menu. It supports both mouse operations as well as keyboard operations.

This extension was originally created by Frank Yan, who stopped maintaining it around mid 2013. I recovered it from my installation and maintain it on GitHub, for the sake of those who love it.                    

Informations de Base sur l'Extension

Nom Tab Menu Tab Menu
ID hjeifjagcmihmdcmnfjelgdgpibefmfc
URL Officiel https://chromewebstore.google.com/detail/tab-menu/hjeifjagcmihmdcmnfjelgdgpibefmfc
Description A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.
Taille du Fichier 61.54 KB
Nombre d'Installations 4,682
Version Actuelle 9.0.3
Dernière Mise à Jour 2018-04-28
Date de Publication 2018-04-28
Évaluation 4.60/5 Total 47 Évaluations
Développeur Ye
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Tab Menu",
    "description": "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.",
    "version": "9.0.3",
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "32": "35.png",
            "48": "48.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "icons": {
        "16": "16.png",
        "32": "35.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}