Show Tab List

Show all sites in the current page

Qu'est-ce que Show Tab List ?

Show Tab List est une extension Chrome développée par pinibalilihamelech, et sa fonction principale est "Show all sites in the current page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Show Tab List

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

                        Press Ctrl+Shift+Y to view a list of the sites used in the current page.                    

Informations de Base sur l'Extension

Nom Show Tab List Show Tab List
ID pjpbfdjmmlnelgbkffopkgpggeeaildc
URL Officiel https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc
Description Show all sites in the current page
Taille du Fichier 8.67 KB
Nombre d'Installations 14,454
Version Actuelle 0.1
Dernière Mise à Jour 2015-03-13
Date de Publication 2015-03-13
Évaluation 2.11/5 Total 9 Évaluations
Développeur pinibalilihamelech
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Tab List",
    "description": "Show all sites in the current page",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "resources\/images\/icon-16.png",
        "48": "resources\/images\/icon-48.png",
        "128": "resources\/images\/icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "resources\/js\/myBackground.js"
        ]
    },
    "commands": {
        "toggle-tab-list": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle tab list"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "resources\/js\/page.js"
            ]
        }
    ]
}