Fullscreen Tab Bar

Fullscreen tab bar based on the style of qutebrowser.

什么是Fullscreen Tab Bar?

Fullscreen Tab Bar是由Josh Medeiros开发的Chrome扩展程序,该扩展的主要功能是“Fullscreen tab bar based on the style of qutebrowser.”。

扩展截图

screenshot

下载Fullscreen Tab Bar扩展crx文件

下载Fullscreen Tab Bar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        An extension to add a tab bar to the top of Chrome based on the style of qutebrowser's.                    

扩展基本信息

名称 Fullscreen Tab Bar Fullscreen Tab Bar
ID hlackdnjlfblchoenkpcbbophehmeijb
官方URL https://chromewebstore.google.com/detail/fullscreen-tab-bar/hlackdnjlfblchoenkpcbbophehmeijb
简介 Fullscreen tab bar based on the style of qutebrowser.
文件大小 6.28 KB
安装次数 387
当前版本 0.2
更新时间 2016-02-06
上架时间 2016-02-05
评分 2.96/5 共25次评分
开发者 Josh Medeiros
付费类型 free
扩展官网 https://github.com/JoshMedeiros/Chrome-Fullscreen-Tab-Bar
支持的语言 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"
    ]
}