CSS Dig
Collect and analyze CSS.
ما هو CSS Dig؟
CSS Dig هو إضافة Chrome تم تطويرها بواسطة https://cssdig.com، والميزة الرئيسية لها هي "Collect and analyze CSS.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CSS Dig
قم بتنزيل ملفات الامتداد CSS Dig بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | CSS Dig |
ID | lpnhmlhomomelfkcjnkcacofhmggjmco |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/css-dig/lpnhmlhomomelfkcjnkcacofhmggjmco |
الوصف | Collect and analyze CSS. |
حجم الملف | 175 KB |
عدد التثبيتات | 12,631 |
النسخة الحالية | 1.2.7 |
آخر تحديث | 2019-05-08 |
تاريخ النشر | 2019-05-07 |
تقييم | 2.86/5 مجموع تقييمات 51 |
المطور | https://cssdig.com |
نوع الدفع | free |
موقع الإضافة | http://cssdig.com |
اللغات المدعومة | 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" ] } |