Bar Breaker

Hides fixed headers and footers on pages you visit.

Bar Breakerとは何ですか?

Bar Breakerはris58hによって開発されたChromeの拡張機能で、その主な機能は「Hides fixed headers and footers on pages you visit.」です。

拡張機能のスクリーンショット

screenshot

Bar Breaker拡張機能のCRXファイルをダウンロード

Bar Breaker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}