cssess
cssess copied to clipboard
JS tool to scan websites for unused CSS selectors
Getting a reference error in chrome, Line 355: ``` if (!JDROPVIEW) { ``` Should be: ``` if (!window.JDROPVIEW) { ```
Users should be able to manually add additional URLs to check.
Due to cross-domain security CSSess can't be used for sites with a CDN on another domain or across multiple sites. Investigate implementing in NodeJS.
CSSess currently considers media queries as unused selectors. It should probably ignore the media query and search for the specified selectors.
Unused selectors may not be combined from multiple URLs.
The AdBlock extension for Chrome adds CSS to the page to hide ads. They should be ignored by cssess.
cssess should display something when no unused selectors are found. Right now it does nothing.
The stylesheet should have more reset / base styles to clear existing styles.