There's a dirty workaround if you want to display the Add to Lists menu at the item page, as eBay didn't remove the <div> yet, they only hidden it:
Install Stylish for Chrome or Firefox, create a New Style as below:
CSS code:
#atl_drpdwnLayerId {
display: block !important;
}
div.watchListCmp > div.u-flL > div.drpdwnCmp {
display: none !important;
}
Applies to URLs matching the regexp:
.+ebay\..+/itm.+
It's a little ugly, but it works for now. Hope this helps people!