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"
    ]
}