Fullscreen Tab Bar
Fullscreen tab bar based on the style of qutebrowser.
Wat is Fullscreen Tab Bar?
Fullscreen Tab Bar is een Chrome-extensie ontwikkeld door Josh Medeiros, en de belangrijkste functie is "Fullscreen tab bar based on the style of qutebrowser.".
Extensie Screenshots
Download het CRX-bestand van de extensie Fullscreen Tab Bar
Download Fullscreen Tab Bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
An extension to add a tab bar to the top of Chrome based on the style of qutebrowser's.
Basisinformatie over de Extensie
Naam | Fullscreen Tab Bar |
ID | hlackdnjlfblchoenkpcbbophehmeijb |
Officiële URL | https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb |
Beschrijving | Fullscreen tab bar based on the style of qutebrowser. |
Bestandsgrootte | 6.28 KB |
Aantal Installaties | 387 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2016-02-06 |
Publicatiedatum | 2016-02-05 |
Beoordeling | 2.96/5 Totaal 25 Beoordelingen |
Ontwikkelaar | Josh Medeiros |
Betalingswijze | free |
Extensiewebsite | https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar |
Ondersteunde Talen | 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" ] } |