Show Tab List

Show all sites in the current page

What is Show Tab List?

Show Tab List is a Chrome extension developed by pinibalilihamelech, and its main feature is "Show all sites in the current page".

Extension Screenshots

screenshot

Download Show Tab List Extension CRX File

Download Show Tab List extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Show Tab List Show Tab List
ID pjpbfdjmmlnelgbkffopkgpggeeaildc
Official URL https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc
Description Show all sites in the current page
File Size 8.67 KB
Installation Count 14,454
Current Version 0.1
Last Updated 2015-03-13
Publish Date 2015-03-13
Rating 2.11/5 Total 9 Ratings
Developer pinibalilihamelech
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}