View Crit CSS

Toggle external stylesheets to only see inline CSS

Co to jest View Crit CSS?

View Crit CSS to rozszerzenie Chrome opracowane przez Matthias Vogt, a jego główną funkcją jest „Toggle external stylesheets to only see inline CSS”.

Pobierz plik CRX rozszerzenia View Crit CSS

Pobierz pliki rozszerzeń View Crit CSS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa View Crit CSS View Crit CSS
ID adbfbeilhdoemcglklgecpkoagnfndhd
Oficjalny URL https://chromewebstore.google.com/detail/view-crit-css/adbfbeilhdoemcglklgecpkoagnfndhd
Opis Toggle external stylesheets to only see inline CSS
Rozmiar pliku 9.69 KB
Liczba instalacji 107
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2016-04-17
Data Publikacji 2016-04-17
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper Matthias Vogt
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/matthias-vogt/view-crit-css
Adres URL Strony Pomocy https://github.com/matthias-vogt/view-crit-css/issues
Obsługiwane Języki 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
}