Skinny

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

什麼是Skinny?

Skinny是由David Gilbertson開發的Chrome擴展程式,該擴展的主要功能是“This extension lets you limit the width of any web page, for better readability on big screens.”。

擴展截圖

screenshot

下載Skinny擴展crx文件

下載Skinny擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Skinny Skinny
ID lfohknefidgmanghfabkohkmlgbhmeho
官方網址 https://chromewebstore.google.com/detail/skinny/lfohknefidgmanghfabkohkmlgbhmeho
簡介 This extension lets you limit the width of any web page, for better readability on big screens.
檔案大小 17.63 KB
安裝次數 309
目前版本 1.8
更新時間 2020-05-15
上架時間 2020-05-15
評分 4.50/5 共 12 次評分
開發者 David Gilbertson
付費類型 free
支援的語言 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"
    }
}