Widescreen Browsing

Limit the width of webpages for a better widescreen experience

Widescreen Browsing là gì?

Widescreen Browsing là một tiện ích mở rộng Chrome được phát triển bởi Forelleh, và tính năng chính của nó là "Limit the width of webpages for a better widescreen experience".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Widescreen Browsing

Tải xuống các tệp mở rộng Widescreen Browsing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Ever felt like some pages just don't really work well on widescreens? Now you can limit the width of webpages with this simple extension. Just save your preferred width on a per domain basis! 

Sourcecode available at https://github.com/nilshellerhoff/widescreen-browsing/

Note: This extension is still in development and might not work well with every website. Feel free to report any issues at https://github.com/nilshellerhoff/widescreen-browsing/issues                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Widescreen Browsing Widescreen Browsing
ID glpelpaljileehhngbcjpkehidnipifg
URL Chính Thức https://chromewebstore.google.com/detail/widescreen-browsing/glpelpaljileehhngbcjpkehidnipifg
Mô tả Limit the width of webpages for a better widescreen experience
Kích Thước Tệp 17.29 KB
Số Lần Cài Đặt 554
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-01-08
Ngày Phát Hành 2020-07-02
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Forelleh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nilshellerhoff/widescreen-browsing/
URL Trang Trợ Giúp https://github.com/nilshellerhoff/widescreen-browsing/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Widescreen Browsing",
    "description": "Limit the width of webpages for a better widescreen experience",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "version": "1.1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rules.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src chrome:\/\/favicon http:\/\/* https:\/\/* 'self' data:;",
    "browser_action": {
        "default_icon": "icon-48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}