Tab Menu
A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.
Co to jest Tab Menu?
Tab Menu to rozszerzenie Chrome opracowane przez Ye, a jego główną funkcją jest „A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Tab Menu
Pobierz pliki rozszerzeń Tab Menu 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
Tab Menu is a minimalist tab manager for Chrome. It enables you to search, switch, rearrange, and close tabs from the toolbar menu. It supports both mouse operations as well as keyboard operations. This extension was originally created by Frank Yan, who stopped maintaining it around mid 2013. I recovered it from my installation and maintain it on GitHub, for the sake of those who love it.
Podstawowe informacje o rozszerzeniu
Nazwa | Tab Menu |
ID | hjeifjagcmihmdcmnfjelgdgpibefmfc |
Oficjalny URL | https://chromewebstore.google.com/detail/tab-menu/hjeifjagcmihmdcmnfjelgdgpibefmfc |
Opis | A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu. |
Rozmiar pliku | 61.54 KB |
Liczba instalacji | 4,682 |
Aktualna Wersja | 9.0.3 |
Ostatnia Aktualizacja | 2018-04-28 |
Data Publikacji | 2018-04-28 |
Ocena | 4.60/5 Łącznie 47 Oceny |
Deweloper | Ye |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "Tab Menu", "description": "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.", "version": "9.0.3", "browser_action": { "default_icon": { "16": "16.png", "32": "35.png", "48": "48.png", "128": "128.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "icons": { "16": "16.png", "32": "35.png", "48": "48.png", "128": "128.png" }, "permissions": [ "tabs", "storage", "contextMenus" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx" } |