Extra parts for Anilist.co
The problem with this is that it would drastically increase the number of calls to the Anilist API, which are limited to 90 per minute. Since looking up the rating for every activity in the feed requires 1 call each, this will pretty quickly deplete the quota, leaving no other calls for other modules, causing stuff to randomly fail. I will extend it to "dropped" though, through an extra option
wondering if you can add this
Love the script btw, the activity ratings for when someone completes a show are great but I wanted to show it for any update (paused, watched, read, etc) and here's the code I made to show it if(status[i].innerText.match(/^(c|C)ompleted/) || status[i].innerText.match(/^(d|D)ropped/)|| status[i].innerText.match(/^(p|P)aused/)|| status[i].innerText.match(/^(w|W)atched/)|| status[i].innerText.match(/^(r|R)ead/)){ wondering if you can add this because I don't like changing the code every update and I think other people would like it