YousableTubeFix for Chrome

By Mindeye Last update Mar 25, 2013 — Installed 194,225 times.

[REQ] new pattern option on name of saved files

in
Subscribe to [REQ] new pattern option on name of saved files 4 posts, 2 voices



Gandalf User
ChromeWindows

Could you add a pattern like /u to put the channel(user) name on saved file. Thanks.

 
Mindeye Script's Author
FirefoxWindows

It will be added in the next version.

 
Gandalf User
ChromeWindows

Mindeye, Youtube changes something in their system and the pattern /u (channel(user) name) for filename stopped to work. When used it only output "user" in filename.

 
Mindeye Script's Author
FirefoxWindows

It will be fixed in the next version. Meanwhile you can edit the script and replace (twice)...:

this.username = getYTConfig("VIDEO_USERNAME", defaultVideoUsername);
...with...:

var videoUsernameNode = $x1("id('watch-uploader-info')/a[@rel='author']");
this.username = (videoUsernameNode) ? videoUsernameNode.textContent : defaultVideoUsername;