please can someone make a youtube resize script like this one..?
|
|
i can't write JS, but i really hope someone can write a script to resize youtube videos just like this one below, but with the comments and related videos etc still there, like the old youtube resizer script that stopped working. this is the size i'm talking about -
thanks if anyone does it. |
|
|
Have you tried my YousableTubeFix script? http://userscripts.org/scripts/show/13333 |
|
|
hi, yes i tried it, and went to the options bit, but no matter what changes i made none of them did anything! i tried a floating point number off the top of my head too and still nothing happened. i have too many extensions and userjs to mention plus http filtering so it's not worth finding out why it doesn't work only for me. i use linux too, but i can't see why that makes any difference? can someone hack that script above? it will only take a minute! |
|
|
The script you link to is very simple, it just add styles to the page to hide or resize elements. Edit the script and comment the lines after "// Get ride of stuff!" (to comment a line, just add two slashes (//) at the beginning of each line). I hope that helps :-) |
|
|
yeap, i noticed it looked simple, i'll delete or comment out some stuff, thanks. |
|
|
right, well that didn't take long lol |
|
|
i thought it would only take a minute! i made the player the right size now, but i don't know how to move everything to the right of the player to below the player when it's bigger :| i looked through your code and it's nicely commented, but i don't know which bit moves that whole bit down below the player. atm the enlarged player is overlayed everything to the right of it! |
|
|
Add at the end of the script: var vidTitle = document.getElementById("vidTitle");
if (vidTitle && player) vidTitle.parentNode.insertBefore(player, vidTitle.nextSibling); |
|
|
wow, it works, i'm in shock lol. thanks for the help :D |
