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
官方網址 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"
        }
    ]
}