View previous topic :: View next topic |
Author |
Message |
Bunta
Posts: 28
|
Posted: Sun Oct 18, 2015 10:40 pm Post subject: [UserScript] Add download links to episode lists |
|
|
Hi All
I have a greasemonkey/tampermonkey script for use with Firefox or Chrome that adds download links to the all-in-one and episodes list screens.
If you are interested the script is available here:
https://greasyfork.org/en/scripts/13082-myepisodes-downloader
It's easy enough to edit the line at the bottom of the script to change the download site to whatever you like.
If you have any other features you would like or need help with using the script just let me know.
Enjoy! |
|
Back to top |
|
|
fred_gaou
Posts: 9
|
Posted: Wed Nov 04, 2015 3:41 pm Post subject: Thanks |
|
|
About MyEpisodes Downloader v1.0 script, I'm sorry to say that I prefer MyEpisodes Enhanced because it works in Episodes list view. Currently, there is not download link in this view.
Firefox 42.0
Greasemonkey 3.5 |
|
Back to top |
|
|
Bunta
Posts: 28
|
Posted: Thu Nov 05, 2015 6:20 am Post subject: |
|
|
The links on the Episode List view stopped working as the site changed somehow so that the episode table was not showing until after the script was loaded.
I've fixed this now by adding a check for content before it applies the changes so it should be working again. |
|
Back to top |
|
|
fred_gaou
Posts: 9
|
Posted: Thu Nov 05, 2015 4:32 pm Post subject: |
|
|
Thank you for this script. It did the job. |
|
Back to top |
|
|
Zawaq
Posts: 4
|
Posted: Mon Nov 09, 2015 5:56 pm Post subject: |
|
|
Does not work for me in chrome nor in chrome with tampermonkey.
But works fine in firefox with greasemonkey.
I have tried to inactivate all other plug-ins except tampermonkey in chrome without any success. What am I doing wrong?
Cheers!
Edit:
Works now with version 1.3. Thanks! |
|
Back to top |
|
|
Reddy79
Posts: 5
|
Posted: Fri Jan 08, 2016 11:59 am Post subject: |
|
|
Currently this script does not work in http://www.myepisodes.com/epsbyshow/
After the update of the site a couple of months ago all scripts stopped working for this particular page/view.
Would you mind adding support for this page as well if it is possible at all?
Or is there another way to get it working there with some simple modifications I can do myself?
That would be really great! ^^ |
|
Back to top |
|
|
Bunta
Posts: 28
|
Posted: Sat Jan 09, 2016 10:24 am Post subject: |
|
|
There's never been anything in this script to work with that page.
However, I've just added functionality so that the download links will show on individual show pages as well.
Check if that does what you want or not. |
|
Back to top |
|
|
Reddy79
Posts: 5
|
Posted: Sat Jan 09, 2016 5:34 pm Post subject: |
|
|
Excellent! Everything I hoped for! Many thanks! |
|
Back to top |
|
|
PaulBags
Posts: 10
|
Posted: Tue Dec 13, 2016 2:21 am Post subject: |
|
|
Howdy, first up script is grabbing the wrong episode number on the all-in-one page. It's grabbing "Last Watched" when it should be grabbing from "Relevant Episode".
Secondly two feature requests: 1) download links for the quick check page, and 2) multiple download links.
I tried creating multiple links myself by turning downloadURL into an array and calling the last section in a for loop. This got me multiple download columns on the all-in-one page as well as multiple D columns on the esplist, but the links themselves didn't show up.
I'm probably going to put some more effort into this, but whatever I come up with will probably be about %5 understanding and %95 googled copy & pasting - if I ever get anything working at all. |
|
Back to top |
|
|
PaulBags
Posts: 10
|
|
Back to top |
|
|
borhoofd
Posts: 5
|
Posted: Fri May 12, 2017 6:13 pm Post subject: |
|
|
PaulBags wrote: | Howdy, first up script is grabbing the wrong episode number on the all-in-one page. It's grabbing "Last Watched" when it should be grabbing from "Relevant Episode". |
Not sure if you ever managed to fix this problem, but just installed the script and worked around this.
Under addDownloadAllInOne, you should replace this line:
Code: | // Get episode number
var episode = $(this).find("td b").first().text().trim();
|
With this one:
Code: | // Get episode number
var episode = $(this).find("td:nth-child(5)").first().text().split(' ')[ 0 ].trim();
|
And it should work. |
|
Back to top |
|
|
|