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ファイルをダウンロード

Content Scaler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}