Update: As a result of this discussion, the Diff CSS "Chrome Extension.

Great question and cool idea to expand!
Proof of concept
As a proof of concept, we can do a little trick here and avoid creating an extension. Chrome saves the items that you select using the check item button in variables. The last item selected at $0 , one before that at $1 , etc. Based on this, I created a small snippet that compares the last two elements tested:
(function(a,b){ var aComputed = getComputedStyle(a); var bComputed = getComputedStyle(b); console.log('------------------------------------------'); console.log('You are comparing: '); console.log('A:', a); console.log('B:', b); console.log('------------------------------------------'); for(var aname in aComputed) { var avalue = aComputed[aname]; var bvalue = bComputed[aname]; if( aname === 'length' || aname === 'cssText' || typeof avalue === "function" ) { continue; } if( avalue !== bvalue ) { console.warn('Attribute ' + aname + ' differs: '); console.log('A:', avalue); console.log('B:', bvalue); } } console.log('------------------------------------------'); })($0,$1);
How to use it?
Inspect the two elements you want to compare one by one, and paste the code above into the console.
Result

Konrad Dzwinel Sep 26 '12 at 7:19 2012-09-26 07:19
source share