Show Tab List
Show all sites in the current page
Wat is Show Tab List?
Show Tab List is een Chrome-extensie ontwikkeld door pinibalilihamelech, en de belangrijkste functie is "Show all sites in the current page".
Extensie Screenshots
Download het CRX-bestand van de extensie Show Tab List
Download Show Tab List-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Press Ctrl+Shift+Y to view a list of the sites used in the current page.
Basisinformatie over de Extensie
Naam | Show Tab List |
ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
Officiële URL | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
Beschrijving | Show all sites in the current page |
Bestandsgrootte | 8.67 KB |
Aantal Installaties | 14,454 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2015-03-13 |
Publicatiedatum | 2015-03-13 |
Beoordeling | 2.11/5 Totaal 9 Beoordelingen |
Ontwikkelaar | pinibalilihamelech |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |