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
电子邮箱 [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"
        }
    ]
}