Ok, perhaps I haven't Updated a Addon.
But is Curious, because with the Embed Code that I Provided the YouTube Video Works Ok. I Posted it to Offer Admins other Option to Embed YouTube Videos in their BB Codes.
Idea: Do you know how can be offered the user the possibility to Write a Size (Width and Height)?

I'd be Fun to Add that Option Too.
I can see that the Key Code is:
Code:
<span style="float:right;margin-left:5px;cursor:pointer;font-weight:bolder;" title="Increase this video's size" onClick="
if ( this.innerHTML == '+' ) {
this.innerHTML = '-';
this.title = 'Reset video size';
this.parentNode.parentNode.parentNode.parentNode.width=638;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('object')[0].width=638;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('object')[0].height=515;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('embed')[0].width=638;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('embed')[0].height=515;
} else {
this.innerHTML = '+';
this.title = 'Increase this video\'s size';
this.parentNode.parentNode.parentNode.parentNode.width=425;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('object')[0].width=425;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('object')[0].height=355;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('embed')[0].width=425;
this.parentNode.parentNode.parentNode.parentNode.getElementsByTagName('embed')[0].height=355;
}
">+</span>
And of course to Use the wrapping object Code:
Code:
<object width="520" height="420"></object>
With that and the Table Structure Proposed by You (very nice design), this can be used with other BB Codes.