Fullscreen Tab Bar
Fullscreen tab bar based on the style of qutebrowser.
What is Fullscreen Tab Bar?
Fullscreen Tab Bar is a Chrome extension developed by Josh Medeiros, and its main feature is "Fullscreen tab bar based on the style of qutebrowser.".
Extension Screenshots
Download Fullscreen Tab Bar Extension CRX File
Download Fullscreen Tab Bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
An extension to add a tab bar to the top of Chrome based on the style of qutebrowser's.
Extension Basic Information
Name | Fullscreen Tab Bar |
ID | hlackdnjlfblchoenkpcbbophehmeijb |
Official URL | https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb |
Description | Fullscreen tab bar based on the style of qutebrowser. |
File Size | 6.28 KB |
Installation Count | 387 |
Current Version | 0.2 |
Last Updated | 2016-02-06 |
Publish Date | 2016-02-05 |
Rating | 2.96/5 Total 25 Ratings |
Developer | Josh Medeiros |
Payment Type | free |
Extension Website | https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar |
Supported Languages | 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" ] } |