CSS Used ChromeExt Save

Get all css rules used by the selected DOM and its children.

Project README

CSS-Used

CSS Used

Get all css rules used by the selected DOM and its descendants.

Get it at the Chrome Web Store : CSS Used >>

Overview

Get all css rules used by the selected DOM and its descendants. Used to extrac only the used CSS. So the unused css will be left out.

If the selected DOM is the body, the result will be all the used css by the whole page curently.

Usage

CSS-Used

F12 open the Developer Tools, select the dom and active the "CSS Used" panel. The used CSS rules of the Selected dom and its descendants will be listed.

You can click "Preview" to see the selected part with clean style rules.

FAQ

  1. No result

    1. Check whether it's Chrome Web Store pages, which is https://chrome.google.com/webstore/...., which won't allow content script injection.
    2. If it's a normal webpage, check site access permission https://github.com/painty/CSS-Used-ChromeExt/issues/13#issuecomment-687244215
    3. If it's a local file, chrome won't allow local file access by default. You can turn on the "Allow access to file URLs" in the extension management page.
  2. Preview not right

    As for the CSS rule like .wrap p{...}, if only <p> is selected, the result .wrap p{...} may not apply directly to <p>. Either changing this rule's selector to p{...} or giving the <p> a .wrap parent in the final HTML.

  3. Not all the CSS is got

    1. The result is generated based on the CURRENT HTML DOM. If a div doesn't exist in the document unless a specific user interaction, the result may miss out the style rules for the newly born div.
    2. CSS custom properties (variables) are partially supported. Not working for declarations defined by $0's ancestor. Thinking it as a inheritable CSS property, as this tool won't handle inherit style.

Changelog

Go to the Changelog page

Open Source Agenda is not affiliated with "CSS Used ChromeExt" Project. README Source: painty/CSS-Used-ChromeExt

Open Source Agenda Badge

Open Source Agenda Rating