Unused CSS Tracker

Tracks the unused CSS selectors in your application

Unused CSS Trackerคืออะไร?

Unused CSS Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย niranjan.exe และคุณลักษณะหลักของมันคือ "Tracks the unused CSS selectors in your application"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unused CSS Tracker

ดาวน์โหลดไฟล์ส่วนขยาย Unused CSS Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        CSS Tracker is used to track all CSS styles in your application. CSS Tracker gets the detailed information about all the unused/used styles in the application. 

It's a easy to use extension for every front end developer to clean up their code. Once you start tracking, the entire application will track every click or navigation in the application and gets the filtered styles.

Tracking will be done till you stop it manually. View percentage of unused styles in the application. Developer can view their individual file/page specific results by clicking the "Show Results" button in the popup. If wants to start tracking from beginning, clear all your results and begin tracking from starting.

CSS Tracker segregates the end result with file specific used/unused styles count.

You can check an individual file/CSS style whether used/unused in your application using the filter provided in the results page.

Make sure refreshing the page whenever starting tracking.

Logos for CSS Tracker were designed using : https://logomakr.com and https://www.designevo.com/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unused CSS Tracker Unused CSS Tracker
ID pldonadjilibgdhocameckefhpdiddbg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unused-css-tracker/pldonadjilibgdhocameckefhpdiddbg
คำอธิบาย Tracks the unused CSS selectors in your application
ขนาดไฟล์ 24.94 KB
จำนวนการติดตั้ง 3,057
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2021-02-06
วันที่เผยแพร่ 2018-07-28
คะแนน 4.22/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา niranjan.exe
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unused CSS Tracker",
    "version": "1.4",
    "description": "Tracks the unused CSS selectors in your application",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/track_128.png"
        }
    },
    "icons": {
        "128": "images\/track_128.png"
    },
    "permissions": [
        "",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}