Bar Breaker

Hides fixed headers and footers on pages you visit.

Bar Breakerคืออะไร?

Bar Breaker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ris58h และคุณลักษณะหลักของมันคือ "Hides fixed headers and footers on pages you visit."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bar Breaker

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}