PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Co to jest PowerTab?
PowerTab to rozszerzenie Chrome opracowane przez Insane, a jego główną funkcją jest „Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia PowerTab
Pobierz pliki rozszerzeń PowerTab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.
Podstawowe informacje o rozszerzeniu
Nazwa | PowerTab |
ID | ihfgepigeejhaclnhdgmoinblbcalccc |
Oficjalny URL | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
Opis | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
Rozmiar pliku | 20.13 KB |
Liczba instalacji | 34 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2013-09-16 |
Data Publikacji | 2013-09-16 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Insane |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |