View Crit CSS

Toggle external stylesheets to only see inline CSS

Qu'est-ce que View Crit CSS ?

View Crit CSS est une extension Chrome développée par Matthias Vogt, et sa fonction principale est "Toggle external stylesheets to only see inline CSS".

Télécharger le fichier CRX de l'extension View Crit CSS

Téléchargez les fichiers d'extension View Crit CSS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom View Crit CSS View Crit CSS
ID adbfbeilhdoemcglklgecpkoagnfndhd
URL Officiel https://chromewebstore.google.com/detail/view-crit-css/adbfbeilhdoemcglklgecpkoagnfndhd
Description Toggle external stylesheets to only see inline CSS
Taille du Fichier 9.69 KB
Nombre d'Installations 107
Version Actuelle 0.1.0
Dernière Mise à Jour 2016-04-17
Date de Publication 2016-04-17
Évaluation 4.50/5 Total 2 Évaluations
Développeur Matthias Vogt
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/matthias-vogt/view-crit-css
URL de la Page d'Aide https://github.com/matthias-vogt/view-crit-css/issues
Langues Prises en Charge 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
}