Skinny

This extension lets you limit the width of any web page, for better readability on big screens.

Skinny là gì?

Skinny là một tiện ích mở rộng Chrome được phát triển bởi David Gilbertson, và tính năng chính của nó là "This extension lets you limit the width of any web page, for better readability on big screens.".

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

screenshot

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

Tải xuống các tệp mở rộng Skinny 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

                        When a web page has lines of text that run the full width of the page, it can become hard to read on high resolution monitors. If you find yourself making your browser window smaller just so you can read Wikipedia comfortably, this is the extension for you!

Just click the Skinny icon to instantly make the page narrower. (The extensions doesn't change any pages until you click the button.)

Two vertical bars are added to the page, visible only on hover, that you can drag to change the width.

It will keep track of pages that you have set to be 'skinny', except any pages you visit in incognito mode.

If there's a site that's not behaving well with this extension let me know and I'll check it out.                    

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

Tên Skinny Skinny
ID lfohknefidgmanghfabkohkmlgbhmeho
URL Chính Thức https://chromewebstore.google.com/detail/skinny/lfohknefidgmanghfabkohkmlgbhmeho
Mô tả This extension lets you limit the width of any web page, for better readability on big screens.
Kích Thước Tệp 17.63 KB
Số Lần Cài Đặt 309
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2020-05-15
Ngày Phát Hành 2020-05-15
Đánh Giá 4.50/5 Tổng số 12 Đánh Giá
Nhà Phát Triển David Gilbertson
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Skinny",
    "description": "This extension lets you limit the width of any web page, for better readability on big screens.",
    "version": "1.8",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "extensionEvents.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tab.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16_off.png",
        "48": "icon_48_on.png",
        "128": "icon_128_on.png"
    },
    "browser_action": {
        "default_title": "Make this site skinny",
        "default_icon": "icon_16_off.png"
    }
}