Bar Breaker

Hides fixed headers and footers on pages you visit.

Bar Breaker क्या है?

Bar Breaker ris58h द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides fixed headers and footers on pages you visit."।

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

screenshot

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

crx प्रारूप में Bar Breaker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Bar Breaker hides fixed headers and footers on pages you visit. It's useful for users who don't have a large screen.

To show/hide broken bars for the current page click on the extension's icon (top right corner).

To disable the extension for a particular site go to the extension's options page and add the site to exceptions.
For example to disable Bar Breaker for all pages on example.com add 'https://example.com/*' line (without quotes) to the text field with exceptions.

WARNING: The extension may not work properly on some sites.                    

एक्सटेंशन की मूल जानकारी

नाम Bar Breaker Bar Breaker
ID fmodbndjaadpjghkfompcdfdjlkpjjoi
आधिकारिक URL https://chromewebstore.google.com/detail/bar-breaker/fmodbndjaadpjghkfompcdfdjlkpjjoi
विवरण Hides fixed headers and footers on pages you visit.
फ़ाइल का आकार 13.9 KB
स्थापना संख्या 76
वर्तमान संस्करण 0.4.6
अंतिम अपडेट 2023-06-26
प्रकाशन तिथि 2020-03-25
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर ris58h
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/ris58h/bar-breaker
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bar Breaker",
    "description": "Hides fixed headers and footers on pages you visit.",
    "version": "0.4.6",
    "applications": {
        "gecko": {
            "id": "bar-breaker@ris58h"
        }
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Bar Breaker"
    },
    "commands": {
        "toggle-enabled": {
            "description": "Toggle Bar Breaker on the current page"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "settings\/settings.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "settings\/settings.json"
    ]
}