Get all css rules used by the selected DOM and its descendants.
Get it at the Chrome Web Store : CSS Used >>
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.
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.
No result
https://chrome.google.com/webstore/....
, which won't allow content script injection.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.
Not all the CSS is got
Go to the Changelog page