Fullscreen Tab Bar

Fullscreen tab bar based on the style of qutebrowser.

Fullscreen Tab Bar क्या है?

Fullscreen Tab Bar Josh Medeiros द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fullscreen tab bar based on the style of qutebrowser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fullscreen Tab Bar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}