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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}