Show Tab List

Show all sites in the current page

Cos'è Show Tab List?

Show Tab List è un'estensione di Chrome sviluppata da pinibalilihamelech, e la sua funzione principale è "Show all sites in the current page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Show Tab List

Scarica i file di estensione Show Tab List in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Show Tab List Show Tab List
ID pjpbfdjmmlnelgbkffopkgpggeeaildc
URL Ufficiale https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc
Descrizione Show all sites in the current page
Dimensione del File 8.67 KB
Conteggio Installazioni 14,454
Versione Corrente 0.1
Ultimo Aggiornamento 2015-03-13
Data di Pubblicazione 2015-03-13
Valutazione 2.11/5 Totale 9 Valutazioni
Sviluppatore pinibalilihamelech
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}