CSS Dig
Collect and analyze CSS.
Was ist CSS Dig?
CSS Dig ist eine Chrome-Erweiterung, die von https://cssdig.com entwickelt wurde, und ihr Hauptmerkmal ist "Collect and analyze CSS.".
Erweiterungsscreenshots
CSS Dig-Erweiterungs-CRX-Datei herunterladen
Laden Sie CSS Dig-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | CSS Dig |
ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
Offizielle URL | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
Beschreibung | Collect and analyze CSS. |
Dateigröße | 175 KB |
Installationsanzahl | 12,631 |
Aktuelle Version | 1.2.7 |
Letztes Update | 2019-05-08 |
Veröffentlichungsdatum | 2019-05-07 |
Bewertung | 2.86/5 Insgesamt 51 Bewertungen |
Entwickler | https://cssdig.com |
Zahlungsart | free |
Erweiterungswebsite | http://cssdig.com |
Unterstützte Sprachen | 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" ] } |