@Hawk1291 Dragging a URL onto a script that searches browser-specific files for keywords would be a nifty way to do this.
(pseudocode, not real!)
if url_match($1, "browserA.txt") then
'browserA $1'
elif url_match($1, "browserB.txt") then
'browserB $1'
else
'$DEFAULT_BROWSER $1'
endif
The browserX.txt files would have keywords like "youtube", "google", etc.
that would match the websites you want to open.