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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |