PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Co je PowerTab?
PowerTab je rozšíření Chrome vyvinuté Insane, a jeho hlavní funkcí je „Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření PowerTab
Stáhněte si soubory rozšíření PowerTab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.
Základní Informace o Rozšíření
Název | PowerTab |
ID | ihfgepigeejhaclnhdgmoinblbcalccc |
Oficiální URL | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
Popis | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
Velikost souboru | 20.13 KB |
Počet instalací | 34 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2013-09-16 |
Datum Vydání | 2013-09-16 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Insane |
Typ Platby | free |
Podporované Jazyky | 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" } ] } |