View Crit CSS

Toggle external stylesheets to only see inline CSS

What is View Crit CSS?

View Crit CSS is a Chrome extension developed by Matthias Vogt, and its main feature is "Toggle external stylesheets to only see inline CSS".

Download View Crit CSS Extension CRX File

Download View Crit CSS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name View Crit CSS View Crit CSS
ID adbfbeilhdoemcglklgecpkoagnfndhd
Official URL https://chromewebstore.google.com/detail/view-crit-css/adbfbeilhdoemcglklgecpkoagnfndhd
Description Toggle external stylesheets to only see inline CSS
File Size 9.69 KB
Installation Count 107
Current Version 0.1.0
Last Updated 2016-04-17
Publish Date 2016-04-17
Rating 4.50/5 Total 2 Ratings
Developer Matthias Vogt
Email [email protected]
Payment Type free
Extension Website https://github.com/matthias-vogt/view-crit-css
Help Page URL https://github.com/matthias-vogt/view-crit-css/issues
Supported Languages 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
}