How to find and add seeding status for a site. #240
Audionut
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does a site you have access too give seeding status feedback! Not all sites offer the feedback, and most sites are slightly different in how they provide the feedback.
The seeding status feedback should be available at a url that is returned by IMDb-Scout-Mod. Go to an IMDB page of a title that you know you are seeding and click the site link.
When the site page has loaded, you need to look at the site html. Use your browser console. How to open browser console.
This is an example of seeding status feedback, your site likely differs. The main point is that you need to navigate within the site html, using the browser console, until you find the specific html element that is the seeding feedback.
To get through the html for the above example, I had to open all of the little arrows until reaching this:
And when you hover your mouse over that html element, it will be selected on the actual site page also:
The same applies when hovering over anything in the browser console. It will highlight the specific area on the site page, which assists to know which html elements in the browser console need to be expanded.
Once the element is known, then you need to make sure you use part of the element that will always be unique and specific to the seeding status. In this case, I suspect
tag tag_seeding
will always be unique.You then find the site in the code, here for this example, and add the following line.
Where the text between the slashes, is the text needed to match for seeding status to be returned.
Beta Was this translation helpful? Give feedback.
All reactions