Unused CSS Tracker

Tracks the unused CSS selectors in your application

Unused CSS Tracker란 무엇입니까?

Unused CSS Tracker은(는) niranjan.exe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tracks the unused CSS selectors in your application"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Unused CSS Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}