View Crit CSS

Toggle external stylesheets to only see inline CSS

什么是View Crit CSS?

View Crit CSS是由Matthias Vogt开发的Chrome扩展程序,该扩展的主要功能是“Toggle external stylesheets to only see inline CSS”。

下载View Crit CSS扩展crx文件

下载View Crit CSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Toggle external stylesheets on/off.

Allows you to display only the critical, inline CSS to see what the page looks like before the external CSS has loaded.

You can use keyboard shortcuts for toggling, default is ctrl+e/cmd+e.                    

扩展基本信息

名称 View Crit CSS View Crit CSS
ID adbfbeilhdoemcglklgecpkoagnfndhd
官方URL https://chromewebstore.google.com/detail/view-crit-css/adbfbeilhdoemcglklgecpkoagnfndhd
简介 Toggle external stylesheets to only see inline CSS
文件大小 9.69 KB
安装次数 107
当前版本 0.1.0
更新时间 2016-04-17
上架时间 2016-04-17
评分 4.50/5 共2次评分
开发者 Matthias Vogt
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/matthias-vogt/view-crit-css
帮助页面URL https://github.com/matthias-vogt/view-crit-css/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View Crit CSS",
    "description": "Toggle external stylesheets to only see inline CSS",
    "version": "0.1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        }
    },
    "commands": {
        "toggle-external-stylesheets": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "description": "Toggle external stylesheets"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 2
}