CSS Dig
Collect and analyze CSS.
Co to jest CSS Dig?
CSS Dig to rozszerzenie Chrome opracowane przez https://cssdig.com, a jego główną funkcją jest „Collect and analyze CSS.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia CSS Dig
Pobierz pliki rozszerzeń CSS Dig w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | CSS Dig |
ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
Oficjalny URL | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
Opis | Collect and analyze CSS. |
Rozmiar pliku | 175 KB |
Liczba instalacji | 12,631 |
Aktualna Wersja | 1.2.7 |
Ostatnia Aktualizacja | 2019-05-08 |
Data Publikacji | 2019-05-07 |
Ocena | 2.86/5 Łącznie 51 Oceny |
Deweloper | https://cssdig.com |
Typ Płatności | free |
Strona Rozszerzenia | http://cssdig.com |
Obsługiwane Języki | 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" ] } |