Content Scaler

This extension scales HTML content if the width of viewport was fixed.

Content Scaler란 무엇입니까?

Content Scaler은(는) hossshy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension scales HTML content if the width of viewport was fixed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Content Scaler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When you check HTML content which sets fixed viewport, this extension scales the content automatically. So you do not need to move horizontal scroll bar.

If you want to use it to local HTML files you need to check 'Allow access to file URLs' on Extensions page.                    

확장 프로그램 기본 정보

이름 Content Scaler Content Scaler
ID dkmikdoddkbidgmbpiidfdaalhfpehph
공식 URL https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph
설명 This extension scales HTML content if the width of viewport was fixed.
파일 크기 387 KB
설치 횟수 64
현재 버전 1.0.9
최근 업데이트 2017-06-28
출시 날짜 2017-06-27
평점 5.00/5 총 2 개의 평점
개발자 hossshy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hossshy/content-scaler
개인정보 보호 정책 페이지 URL https://yuchesc.github.io/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Scaler",
    "description": "This extension scales HTML content if the width of viewport was fixed.",
    "version": "1.0.9",
    "icons": {
        "16": "image\/icon\/16.png",
        "64": "image\/icon\/64.png"
    },
    "page_action": {
        "default_icon": "image\/icon\/16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.smbc-card.com\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/content_scripts.js"
            ],
            "run_at": "document_start"
        }
    ]
}