Thanks for the script! To have this work as a chrome user script you can switch to using the following function instead of $().append(
var add = function(selector, html) {
var t = document.createElement("div");
t.innerHTML = html;
document.querySelector(selector).appendChild(t.firstChild);
}
chrome support
Thanks for the script! To have this work as a chrome user script you can switch to using the following function instead of $().append(