PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
¿Qué es PowerTab?
PowerTab es una extensión de Chrome desarrollada por Insane, y su función principal es "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión PowerTab
Descarga archivos de extensión PowerTab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.
Información Básica de la Extensión
Nombre | PowerTab |
ID | ihfgepigeejhaclnhdgmoinblbcalccc |
URL Oficial | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
Descripción | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
Tamaño del Archivo | 20.13 KB |
Cantidad de Instalaciones | 34 |
Versión Actual | 1.0 |
Última Actualización | 2013-09-16 |
Fecha de Publicación | 2013-09-16 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Insane |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PowerTab", "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.", "version": "1.0", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus", "clipboardWrite", "tabs" ], "icons": { "16": "icon16x16.png", "48": "icon48x48.png", "128": "icon128x128.png" }, "browser_action": { "default_icon": "icon16x16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_start" } ] } |