A JavaScript Inject that reads all your linked and inline stylesheets and turns them into a readable, mutable object.
Insert script after your CSS links. Script will compose a global object constucted of all your defined rules.
console.log(cssob[cssSelector].height); //logs hight set by provided asosiated CSS selector rule.
cssob[cssSelector].backgroundColor = 'yellow'; //Sets elements that match the selector's background to yellow.Returns an array with all the available css properties and methods from the queried cssob object.
cssob['string cssSelector'].listProps();Example
<style> .clear{clear: both; height: 0; display: block} </style> <sciprt> var clearClassProperties = cssob['.clear'].listProps(); console.log(clearClassProperties); //logs ["clear", "height", "display"] amung other available operations (some browser specific) </script>