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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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