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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}