http://www.thefreedictionary.com
add - thefreedictionary.com###w1 > .w2 > div:first-child
or
add on uBO - thefreedictionary.com##script:inject(setTimeout-defuser.js, warn) or thefreedictionary.com##script:inject(abort-on-property-write.js, warn)
I've just writtent this rule for the reek script:
thefreedictionary_com : {
// Site: www.thefreedictionary.com
// shows back the site's word meaning when it tries to remove it.
host : ['thefreedictionary.com', 'tfd.com'],
onIdle : function () {
var contentDiv = document.getElementById('content'),
bodyDiv = document.getElementById('w1');
if (warn) {
warn = function() {
console.log("Tampermonkey: Suppressed thefreedictionary snag banner!");
};
}
if (contentDiv && contentDiv.classList.length > 0) {
contentDiv.classList = {};
}
}
},
Works for me as of this day. (not sure how long it will work)
Sorry, could you please be more specific about the mechanics of your code? For example, would you like us to copy and paste it somewhere? Is it maybe a filter we add to...something, somewhere, possibly in Add-ons but I can't be sure because after that it just kind of branches out? https://adblockplus.org/en/filters says adding filters is something that's possible, but it somehow seems to skip what appears to be the very first step--how to add them.