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