View Crit CSS

Toggle external stylesheets to only see inline CSS

Vad är View Crit CSS?

View Crit CSS är en Chrome-tillägg utvecklad av Matthias Vogt, och dess huvudfunktion är "Toggle external stylesheets to only see inline CSS".

Ladda ner View Crit CSS-förlängningens CRX-fil

Ladda ner View Crit CSS-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn View Crit CSS View Crit CSS
ID adbfbeilhdoemcglklgecpkoagnfndhd
Officiell webbadress https://chromewebstore.google.com/detail/view-crit-css/adbfbeilhdoemcglklgecpkoagnfndhd
Beskrivning Toggle external stylesheets to only see inline CSS
Filstorlek 9.69 KB
Antal Installationer 107
Aktuell Version 0.1.0
Senast Uppdaterad 2016-04-17
Publiceringsdatum 2016-04-17
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare Matthias Vogt
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/matthias-vogt/view-crit-css
Hjälpsida URL https://github.com/matthias-vogt/view-crit-css/issues
Stödda Språk 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
}