View Crit CSS

Toggle external stylesheets to only see inline CSS

View Crit CSS là gì?

View Crit CSS là một tiện ích mở rộng Chrome được phát triển bởi Matthias Vogt, và tính năng chính của nó là "Toggle external stylesheets to only see inline CSS".

Tải xuống tệp CRX của tiện ích mở rộng View Crit CSS

Tải xuống các tệp mở rộng View Crit CSS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên View Crit CSS View Crit CSS
ID adbfbeilhdoemcglklgecpkoagnfndhd
URL Chính Thức https://chromewebstore.google.com/detail/view-crit-css/adbfbeilhdoemcglklgecpkoagnfndhd
Mô tả Toggle external stylesheets to only see inline CSS
Kích Thước Tệp 9.69 KB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2016-04-17
Ngày Phát Hành 2016-04-17
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Matthias Vogt
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/matthias-vogt/view-crit-css
URL Trang Trợ Giúp https://github.com/matthias-vogt/view-crit-css/issues
Ngôn Ngữ Được Hỗ Trợ 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
}