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
官方網址 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"
    ]
}