CSS Dig
Collect and analyze CSS.
What is CSS Dig?
CSS Dig is a Chrome extension developed by https://cssdig.com, and its main feature is "Collect and analyze CSS.".
Extension Screenshots
Download CSS Dig Extension CRX File
Download CSS Dig extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | CSS Dig |
ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
Official URL | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
Description | Collect and analyze CSS. |
File Size | 175 KB |
Installation Count | 12,631 |
Current Version | 1.2.7 |
Last Updated | 2019-05-08 |
Publish Date | 2019-05-07 |
Rating | 2.86/5 Total 51 Ratings |
Developer | https://cssdig.com |
Payment Type | free |
Extension Website | http://cssdig.com |
Supported Languages | 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" ] } |