Fullscreen Tab Bar
Fullscreen tab bar based on the style of qutebrowser.
Co to jest Fullscreen Tab Bar?
Fullscreen Tab Bar to rozszerzenie Chrome opracowane przez Josh Medeiros, a jego główną funkcją jest „Fullscreen tab bar based on the style of qutebrowser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Fullscreen Tab Bar
Pobierz pliki rozszerzeń Fullscreen Tab Bar 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
An extension to add a tab bar to the top of Chrome based on the style of qutebrowser's.
Podstawowe informacje o rozszerzeniu
Nazwa | Fullscreen Tab Bar |
ID | hlackdnjlfblchoenkpcbbophehmeijb |
Oficjalny URL | https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb |
Opis | Fullscreen tab bar based on the style of qutebrowser. |
Rozmiar pliku | 6.28 KB |
Liczba instalacji | 387 |
Aktualna Wersja | 0.2 |
Ostatnia Aktualizacja | 2016-02-06 |
Data Publikacji | 2016-02-05 |
Ocena | 2.96/5 Łącznie 25 Oceny |
Deweloper | Josh Medeiros |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fullscreen Tab Bar", "description": "Fullscreen tab bar based on the style of qutebrowser.", "author": "Josh Medeiros", "version": "0.2", "permissions": [ "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "css": [ "content.css" ], "js": [ "content.js" ], "matches": [ "*:\/\/*\/*" ] } ], "web_accessible_resources": [ "tabs.html" ] } |