CSS Dig
Collect and analyze CSS.
¿Qué es CSS Dig?
CSS Dig es una extensión de Chrome desarrollada por https://cssdig.com, y su función principal es "Collect and analyze CSS.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión CSS Dig
Descarga archivos de extensión CSS Dig en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
CSS Dig finds and groups stylesheets and style blocks on most websites, providing an easy way to analyze the code and plan refactors. Properties: Take a look at all your CSS properties, their frequency and variations. Have too many shades of blue? Inconsistencies often means confusion for your developers and irregularities for your end users. Selectors & Specificity: Are your selectors long? Using lots of IDs? Specificity wars are frustrating and piling on new CSS will only make the situation worse. Find potential problem areas and make a plan to fix.
Información Básica de la Extensión
Nombre | CSS Dig |
ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
URL Oficial | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
Descripción | Collect and analyze CSS. |
Tamaño del Archivo | 175 KB |
Cantidad de Instalaciones | 12,631 |
Versión Actual | 1.2.7 |
Última Actualización | 2019-05-08 |
Fecha de Publicación | 2019-05-07 |
Calificación | 2.86/5 Total de 51 Calificaciones |
Desarrollador | https://cssdig.com |
Tipo de Pago | free |
Sitio Web de la Extensión | http://cssdig.com |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CSS Dig", "description": "Collect and analyze CSS.", "version": "1.2.7", "permissions": [ "activeTab" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "i\/icon16.png", "48": "i\/icon48.png", "128": "i\/icon128.png" }, "browser_action": { "default_icon": { "19": "i\/icon19.png", "38": "i\/icon38.png" }, "default_title": "CSS Dig" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery.min.js" ] } ], "web_accessible_resources": [ "html\/dig.html", "i\/icon48.png", "css\/cssdig.css", "js\/cssdig.js" ] } |