New
Aug 8, 2021 5:57 AM
#101
@BatoKusanagi That script doesn't work on some pages like Full metal alchemist brotherhood and some others. Making that work correctly every time would take too much time (if possible at all),I said it would be easy to do but it's actually a bit hard. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Sep 30, 2021 2:32 AM
#102
Thank you very much for these extremely useful scripts! Hope to see more in the future |
Sep 30, 2021 7:53 AM
#103
@Orion_Gospel Thank you! Yes I've a few things planned,and I plan to update a few of my scripts to hugely improve them. But I believe that I already made the really nice scripts. The only problem is that I don't have time to do any of these things now |
hacker09Sep 30, 2021 2:33 PM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Oct 2, 2021 9:49 PM
#104
@hacker09 Bro, can you make a script which can add the new themes in the tags automatically. Themes doesn't have a column for it but adding the themes manually in the tags in a pain. And the previous script which allowed to do this can only add genres to the tags and I can't find the one who made it anywhere. And if you do make it, is it possible to customize where these themes will be placed in the tags?? For Example:- Putting the theme(s) after a certain word in the tags. And if that word isn't found then it will be placed at the end of the tags. Maybe I'm asking for too much but I just wanted to know if you can do it. This is the script that was mostly used before. |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Oct 3, 2021 5:06 AM
#105
LEGENDS_OF_ANIME said: @hacker09 Bro, can you make a script which can add the new themes in the tags automatically. Themes doesn't have a column for it but adding the themes manually in the tags in a pain. And the previous script which allowed to do this can only add genres to the tags and I can't find the one who made it anywhere. And if you do make it, is it possible to customize where these themes will be placed in the tags?? For Example:- Putting the theme(s) after a certain word in the tags. And if that word isn't found then it will be placed at the end of the tags. Maybe I'm asking for too much but I just wanted to know if you can do it. This is the script that was mostly used before. I updated it to include themes and demographics https://myanimelist.net/forum/?topicid=1961135 |
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Oct 3, 2021 5:09 AM
#106
ShaggyZE said: LEGENDS_OF_ANIME said: @hacker09 Bro, can you make a script which can add the new themes in the tags automatically. Themes doesn't have a column for it but adding the themes manually in the tags in a pain. And the previous script which allowed to do this can only add genres to the tags and I can't find the one who made it anywhere. And if you do make it, is it possible to customize where these themes will be placed in the tags?? For Example:- Putting the theme(s) after a certain word in the tags. And if that word isn't found then it will be placed at the end of the tags. Maybe I'm asking for too much but I just wanted to know if you can do it. This is the script that was mostly used before. I updated it to include themes and demographics https://myanimelist.net/forum/?topicid=1961135 Thanks a lot, also can you make it so that my settings don't reset if I clear cache?? |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Oct 3, 2021 5:29 AM
#107
LEGENDS_OF_ANIME said: Thanks a lot, also can you make it so that my settings don't reset if I clear cache?? I'm not sure where else to save them, hacker09 may have some suggestions on possible places to save it I don't know about so I'll wait for him to post. |
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Oct 3, 2021 11:20 AM
#108
@LEGENDS_OF_ANIME I don't know what you mean by themes... you mean op/end titles? But whatever @ShaggyZE already did what you want, so just use his tool. @ShaggyZE Use LocalStorage or Tampermonkey Storage, I dislike using LocalStorage because if the browser cache is cleared, settings are always lost. I think that the best (and shortest) scripts I made that keep the user settings to use as examples are these https://greasyfork.org/en/scripts/424774-series-highlighter-mal https://greasyfork.org/en/scripts/428614-approved-entries-notifier-mal https://greasyfork.org/en/scripts/429784-search-helper-mal Look their code so you can learn how to do it. *Hint: Use: // @grant GM_deleteValue // @grant GM_listValues // @grant GM_getValue // @grant GM_setValue |
hacker09Oct 3, 2021 11:48 AM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Oct 3, 2021 11:27 AM
#109
hacker09 said: I don't know what you mean by themes... you mean op/end titles? by themes he means that mal has seperated genres into themes and demographic now if you go to any anime/manga page https://myanimelist.net/forum/?topicid=1956762 okay, thanks, that should get me started on incorporating it into akarin's script (if it can be done relatively easy) |
ShaggyZEOct 3, 2021 11:49 AM
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Oct 3, 2021 11:48 AM
#110
@ShaggyZE Ok, I kind of got it know. You're welcome! Good Luck. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Oct 3, 2021 11:57 AM
#111
@hacker09 looks like it's going to be simple as it loads and saves with only two functions, just changed localStorage.setItem and localStorage.getItem then added the grants, haven't tested it yet though.loadValue (key, value) { try { return JSON.parse(GM_getValue(this.encodeKey(key))) || value; } catch (e) { console.log(e.name + ': ' + e.message); return value; } } saveValue (key, value) { GM_setValue(this.encodeKey(key), JSON.stringify(value)); } Edit: it appears to work fine, but don't feel like resetting my cache to test that aspect of it. |
ShaggyZEOct 3, 2021 12:03 PM
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Oct 3, 2021 12:11 PM
#112
@ShaggyZE Yeah, its not hard to change localStorage to GM_setValue. Maybe you don't have to erase your cache, try using a new private window and see if the settings are kept or not. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Oct 3, 2021 12:33 PM
#113
@hacker09 yea, had he saved/loaded each gui individually it would have been a pain also don't think that I can use incognito mode to test cause MAL won't let me sign in (script only works when logged in), and not sure if extensions work in that mode either. @LEGENDS_OF_ANIME try version 6.1.5 and see if it keeps your settings after clearing cache. |
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Oct 3, 2021 3:03 PM
#114
@ShaggyZE You have to go to your browser settings to activate extensions on the private mode. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Oct 3, 2021 3:56 PM
#115
Hi, really approciate Your scripts. Maybe it would be good to create one big all in one script instead of this separate ones for those who would want it excluding controversial ones like removing mangas script et. Just loose idea. Thanks for your work. P.S. Maybe there is something that can be done to reviews, like better readability of each review or sth completly different? |
Oct 3, 2021 3:59 PM
#116
@Brissinger Thanks! I already had this idea, but this would just be a script that is too big and I would have to code a nice way for users to enable/disable the feature they want or don't want. This would take some time so I probably not going to do this. I don't really read reviews so I think they are already good enough the way they are, I'm not sure how they could be "improved"... |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 6, 2021 2:43 AM
#117
Thanks. really liked "Series Highlighter -MAL" and some others. I have similar request for a new script. Can you make score to appear on authors/persons page? For example like this maybe: Also don't know why, but "Show More Info on the Anime/Manga page" isn't working on manga pages. For anime pages it works fine. "Endless Search/Genre Pages On MAL". One little bug but not very important, just fyi, For example if I go to "top anime" page and click on "next 50", then in the link I can change last number and make it even 1000 or whatever, but after reaching the end of the page, it shows starting from the second page of the top, numbers 51-100 and continues from there. Would be great if it continued from where it is, but as I said higher, not so important, I don't know if I or anyone else will often use that tricks. https://myanimelist.net/topanime.php?limit=1000 And found out just now. It works on the forum too. If I open the topic from the first page and go to bottom, it continues second page, third and so on. But If I open the topic and click go to second, third or whichever page, it is not working anymore. "Better Related Anime/Manga Reader" isn't working for me. Sometimes it works only on "Alternative Titles" sometimes don't work. But for "Related titles" it never worked. "Approved Entries Notifier - MAL" also isn't working correctly for me. Couple times I saw the notification that one title was approved, then I clicked on the notification and nothing happened, page with that approved title wasn't opened, and the link was copied but not for that one title, it was all the titles that I added to the notifier combined, without spaces or punctuation marks, like: https://myanimelist.net/manga/111271https://myanimelist.net/manga/119610https://myanimelist.net/manga/129268 but longer, with all titles that I'm waiting for approval, so I can't be aware of which title was approved. Also would be great if we could open one page with the list of the titles that we are waiting and just see them if they are still pending, like here for example: https://sean.fish/mal_unapproved/anime but only with my personal titles, that I clicked using your script, and "approved" would be on the top of the list until I "unfollow" them |
JasulanNov 6, 2021 3:37 AM
Nov 6, 2021 6:34 AM
#118
@Jasulan Thanks for all of your reports, I will give a look and fix (if they need to be fixed) them when I have time, I really do not have any time to update my scripts, what's very sad,even though I really want to keep updating and improving them. "Can you make score to appear on authors/persons page?" Yes,when I have time to do it, updating my scripts and fixing their bugs if they have any,is my first priority though As for the endless Mal script, I'm not sure if I did not know about this bug,or if I just ignored it or if it's already is my next update plan/fixes list for this script,but I know that it is true what you said,I may look into this when I have time,but I also suppose that fixing this would be a bit hard and very time taking,maybe that is why I didn't fix this problem yet, or that's why I wouldn't fix this problem...I don't remember exactly now. As for the better related script, you're right,it should not always work for the alternative title below the anime image,some animes do not have more than 1 title,I think that this is why it did not work for you,but as for the related animes in the middle of the page it should always work. Make sure the anime you open really does have alternative titles (below the anime image). If you really find an anime where this script does not work,send me the links of these animes so I can do some testing and fix this bug. "Also would be great if we could open one page with the list of the titles that we are waiting and just see them if they are still pending". This is such a great idea! I will try to do exactly what you said when I have time,I loved this improvement idea. It's very very important that the approved notifier script works! Interesting thing... Is that in my end it's working perfectly. Are you sure you have the lastest version? I updated this script just a few days ago... And again are you sure all the scripts you mentioned here are updated,and you are using their latest version? Please check if all of them are updated or not,I have never noticed most or half of the bugs you mentioned and they seem to be working fine and without the bugs you mentioned overall. Let me know if you were using their latest version or not... Also, remember to send me a couple links where the better related anime does not work... |
hacker09Nov 6, 2021 6:41 AM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 6, 2021 7:47 AM
#119
Yeah, I installed most of the scripts not long ago, and today reinstalled them. Maybe there's also a problem in my browser? I use Opera, and haven't updated it for a long time(didn't like some updated functions, so reversed update and switched off autoupdate). Maybe opera itself is the reason, but it's on chromium-based or something like that, so it should be same as chrome browser I think, or am I wrong? Or long time without updates of the browser is the reason? How do you think? But some other scripts are working perfectly, so I don't know why some of them have problems Right now I installed everything on Google chrome (I think it's latest, I don't use it often, but update is automatical), so here's the result: 1) "related anime" works correctly, but "alternative titles doesn't work while on opera it works vice a versa, lol. But I don't think that alt. titles is so important, so doesn't matter. for example: in "alt. titles" otorimonogatari, onimonogatari in one line, so it obviously not working some animes do not have more than 1 title,I think that this is why it did not work for you I'm sure that I saw it in those titles which have more than one name, otherwise I wouldn't have written about it, but right now I can't remember which titles it were. But maybe it's again because of my old opera browser, sometimes other scripts also isn't working instantly but after couple seconds.2) Show More Info on the Manga page also isn't working, and I found one thing for anime's "more info". If there's a big text with lots of lines, it combines everything in one line without formatting. On both browsers. 3) "Anime/Manga Favorited Status %" also didn't work on opera, in chrome works but only on main page of the title, while on characters and staff page isn't working, but should it work there? 4) Couldn't check "Approved Entries Notifier" since for that we need to wait for some titles to be approved 5) oh, and on opera "Total Duration Time + Total Episodes Of Any Animes Franchises" isn''t calculating my completed time, always shows 0, no matter how many episodes or titles I have watched: "Completed: 0%". it's also not so important 6) And finally, just found out. If you go to anime/manga history from you main profile panel, and from there open any title, it's link becomes different than usual and none of any scripts are working So, usually it's like this https://myanimelist.net/anime/44961/Platinum_End But when opening from history it becomes like this: https://myanimelist.net/anime.php?id=44961 Thanks for everything. Hope we can see the new script in near future "Can you make score to appear on authors/persons page?" Yes,when I have time to do it, updating my scripts and fixing their bugs if they have any,is my first priority though |
JasulanNov 6, 2021 8:06 AM
Nov 6, 2021 8:12 AM
#120
@Jasulan Maybe that,or most likely there's some kind of incompatibility with another script or extension you might be using. Thanks for reinstalling them,wait for a while and keep testing them,then let me know if the issues persist or not... I used opera too,and also opera GX,I made my scripts on opera mostly,they should be fully compatible with opera,opera GX,edge chromium and any other chromium browser,and probably also compatible with Firefox too I guess... You're correct,my scripts should also work perfectly on chrome or other chromium based browser... An out of date browser might affect it as well maybe... But not really I guess,the best thing to do is to always keep your browser updated, make sure tampermonkey is updated as well. That's weird,thanks for the images,I will check that when I have time... Btw load the page,wait a while,reload and check if it was fixed, repeat this process at least 2/3 times until you are pretty sure that waiting the page loaded and reloading does not make the script work... Then this is really a script bug that I will have to fix. Yeah,most scripts do have a delay to work kind of... Usually reloading the page make it works sometimes. Try reloading to make sure it is a script bug or not. Ok,no worries,I just wanted to make sure you were talking about animes with more than one alternative title. Update your browsers and test the scripts again. Maybe reinstalling the browser,tampermonkey and the scripts will make them work ... "it combines everything in one line without formatting. " This is true,it's a fact. That's why I mentioned that in the script installation page,that on the anime page users of the script should click on the more info bolded text to have the more inf text better formatted... "Anime/Manga Favorited Status %" I'm aware that it does not always work,I still have to fix that but I don't think that it will be possible to fix it as I depends on an API I use. "Total Duration Time + Total Episodes Of Any Animes Franchises" To test this script it is required that you mark an anime entry as completed after installing the script,then reload the page or open a related entry of this franchise. |
hacker09Nov 6, 2021 8:21 AM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 6, 2021 10:25 AM
#121
Maybe I will use these someday. Thx for making these codes and sharing them for mal community clap clap for you. |
Nov 6, 2021 1:14 PM
#122
@DonutCloud Thank you, I hope you enjoy them if you use them |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 12, 2021 10:04 AM
#123
hacker09 said: I could make the script work for a single topic that you hover the mouse over the topic title or something like that, then you would need to wait 1 or more secs, depending on the amount of users and pages that topic has, then I could add that icon near the title showing if you have or not commented on that topic... This way at least you wouldn't see that blue annoying screen "Submit to prove you are not a bot" probably... But this is still too much time taking and not very interesting for most MAL users, so I'm probably not going to do it the way you said. Quoting here, albeit that's an answer you gave on a different thread. That's absolutely interesting! a total life saver! I think we would make most use of it for one of my clubs. It can take longer to load if that will help to avoid the bot-suspect screen. Is this something you would/could still make for us? Also, was wondering if you had any scripts that did this - Add database modification links (instead of the one you have to changes them to icons, adds a direct link under/besides each editable option) Actually, just saw you posted this here and it's indeed related to that (found it on the OG script reviews page). The thing about your script "better buttons" is that one still has to scroll to the top ^^; and if I'm going to need to go to that section, I better leave as it was by default then. So wondered if it would be any harder for an alternative? Thanks in advance for all your nice improvements on this site~ |
Nov 12, 2021 12:52 PM
#124
@SheyCroix Yeah, I had the knowledge to do it when I said that,so I still do have it 😂. But as I said it would take my.time to code that,would take time to get all pages in a topic and it's too likely that anyone that uses it will see the annoying blue anti robot screen. So I still don't think it's a good idea to make it. Also I'm much more short of time than I was before,so my priority is not to make new things,but to fix and update the scripts I already did,if I do have time to do it,cause I've been not even having time to release updates to the scripts I already made... I did not understand what you meant by db modification links,please be more specific about it. I also did not understand what you said in your last paragraph Do you mean that you like my "better buttons" script,but you want it to always be on the screen even when you scroll the website down? You're welcome |
hacker09Nov 12, 2021 1:41 PM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 12, 2021 4:56 PM
#125
That's fine and understandable hacker09 said: I did not understand what you meant by db modification links,please be more specific about it. I also did not understand what you said in your last paragraph Do you mean that you like my "better buttons" script,but you want it to always be on the screen even when you scroll the website down? You're welcome Mhm my bad for phrasing it like that then.. uh, let's see The other script has this as an option [ Add database modification links ] You made a similar script to work around that, which is [ Better Buttons To Edit Anime/Manga Information ] Your script works by replacing the "edit anime info" bit with, well, buttons... but it still places them in the same area (top bar) where the default drop-down menu is (top-right). What I meant was that, having the replacement (script) still work in the same area (top bar) means still having to scroll the page up to press edit the one bit we want to change. The other scripts works, as it says, by simply adding a direct link under the text. For example, to request a "Source" edit Default Your Script The Other Script / vs / default So like, instead of having it by buttons, make them hyperlinks? Idk if I explained this any better, sorry |
Nov 12, 2021 5:03 PM
#126
@SheyCroix The other script has this as an option [ Add database modification links ] which script? It seems like the other script from your first print already does exactly what you want, doesn't it? So like, instead of having it by buttons, make them hyperlinks? Got it now, yeah good idea, but if there's a script that already does it, why would I make it again? *Are you talking about the script named "MyAnimeList (MAL) Enhancements"? I didn't even know it did that ahhaa |
hacker09Nov 12, 2021 5:07 PM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 12, 2021 5:29 PM
#127
@hacker09 Ah, sorry again. Since I linked your post discussing that other script on my first message here... just went automatic assuming you knew which one I was talking about. Yes, it's that one. I was asking cause it's outdated and some of the other features don't work correctly. You already made replacements ( I'm using ) for those that interested me, so wanted to uninstall that other one. I mean, I'm still using it just for that atm lol but guessed I don't lose anything by asking ;D |
Nov 12, 2021 5:35 PM
#128
@hacker09 glad to see you staying on top of this topic 🙏 it's nice to see and appreciated, thank you! |
Shishio-kunNov 12, 2021 5:46 PM
Nov 12, 2021 8:15 PM
#129
@SheyCroix No problem, yeah I didn't know that the enhancements script did it, but I can do it if I have time (time is something I don't have recently), my priority is to update and improve my actual scripts, specially fix bugs, then improve then. I will probably do your suggestion when I have time and after I've released a few bug fixes updates for the scripts that I've already released, thanks for the improvement idea. @Shishio-kun You're welcome! I'm not having time to really do anything related to scripts recently, but at least I try to make time to answer people on MAL and release very important updates with fixes whenever I can. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 12, 2021 9:15 PM
#130
hacker09 said: @Shishio-kun You're welcome! I'm not having time to really do anything related to scripts recently, but at least I try to make time to answer people on MAL and release very important updates with fixes whenever I can. You'll definitely get the Best Creator award in our group for 2021! It's been a long time coming and you've earned it!! :D |
Nov 12, 2021 9:17 PM
#131
@Shishio-kun Wow, thank you! |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 19, 2021 9:29 AM
#132
@Jasulan 1 Fixed bug where most of my scripts did not work when the entry was opened from the history page 2 Fixed bug on the Show More Info script, now it works on manga pages as well 3 Better related (chrome vs opera), it does not matter, I tested and the trick is that you have to be logged in or the script will not work. 4 For the script "Endless Search/Genre Pages On MAL", as I said I will take a long long to fix this and update this script, if I ever to do this 5 For the script "Approved Entries Notifier - MAL", I rechecked this and it had an issue that I've already fixed, thanks for the report. 6 Your improvement suggestion for the script "Approved Entries Notifier - MAL" has been finished! 7 Your script suggestion to make score to appear on authors/persons page, is on my TO DO list, I may or not do this, I don't consider this an important feature... 8 The script "Anime/Manga Favorited Status %" should not work on characters and staff pages,only in the main page and the entry status page, but I will consider adding support to character pages as well Did I miss anything? |
hacker09Nov 20, 2021 2:23 PM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Nov 20, 2021 12:40 AM
#133
@SheyCroix I've updated the better buttons to edit script, it might not be exactly what you wanted but it should be much better than before, I hope you like it! Changelog: Script rewritten from scratch. Performance improved. Now the buttons also show above the Information section. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Dec 4, 2021 11:48 PM
#134
Thank you! I will also be waiting for the future update of this script where we can choose the old layout. Let's get this script more popular and let it cross 100+ installs so that you can update it to a future version! |
Dec 6, 2021 1:01 AM
#135
So many requests and changes needed for MAL devs don't do Hacker09 be like FINE I'LL DO IT MYSELF |
Dec 6, 2021 6:59 AM
#136
@Vexem You're welcome! We are already getting close to it!. @Shishio-kun 😂😂😂😂😂, That (and you) was so funny! Haha, I definitely agree with you and you officially made my day better now haha. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Dec 9, 2021 4:36 AM
#137
@hacker09 can you make a script like this, a clickable button/text beside a user's username (on their profile page). Upon clicking this hyperlink we will get redirected to the user's Anime.plus page. For example: my profile: https://myanimelist.net/profile/Legends_of_anime my Anime.plus: https://anime.plus/Legends_of_anime believe me, it's really userful and will help a lot. I don't feel like it will be that hard considering the scrpts your other scripts. mention me if you decide to make it. (I guess I should start learning JavaScript) |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Dec 9, 2021 6:50 AM
#138
@Legends_of_anime That already exists,look for it on greasyfork. I'm also planning to add anime.plus infos directly in the mal user profile page,one day... |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Dec 9, 2021 6:54 AM
#139
I'm also planning to add anime.plus infos directly in the mal user profile page,one day... that's.......... gonna be................ AWESOME!!!!!!!! |
StoryGraph x Spotify x Instagram “Whether we die or not isn't really that big a deal." — Suzuya Juuzou |
Dec 26, 2021 2:05 PM
#140
Dec 26, 2021 2:20 PM
#141
kyoyatempest said: Can you make a script that works on mobile website?(Like using with kiwi browser). They probably all work on kiwi browser already |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Dec 26, 2021 2:38 PM
#142
@hacker09 no, i'm sure. They doesn't working on mobile website, they works when i request the desktop site... |
Dec 26, 2021 3:12 PM
#143
ShaggyZE said: kyoyatempest said: @hacker09 no, i'm sure. They doesn't working on mobile website, they works when i request the desktop site... you can not get userscripts to work on the mobile version, browsers disable addons/extensions and most code on the site itself is also disabled because that's the point of a mobile version to increase the speed of the site and have the minimal/basic info. B-but the userscripts working on anilist (mobile version)?? |
Dec 26, 2021 3:13 PM
#144
kyoyatempest said: @hacker09 no, i'm sure. They doesn't working on mobile website, they works when i request the desktop site... which ones do you want to work on the mobile version, he'd have to completely rewrite them or add a mobile version switch since they would use different selectors that only the mobile site uses and some wouldn't work at all because the features they use do not exist on the mobile version of the site so it seems kinda pointless when you should just be switching to the desktop version of the site anyway. |
ShaggyZEDec 26, 2021 3:20 PM
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Dec 26, 2021 3:38 PM
#145
ShaggyZE said: kyoyatempest said: @hacker09 no, i'm sure. They doesn't working on mobile website, they works when i request the desktop site... which ones do you want to work on the mobile version, he'd have to completely rewrite them or add a mobile version switch since they would use different selectors that only the mobile site uses and some wouldn't work at all because the features they use do not exist on the mobile version of the site so it seems kinda pointless when you should just be switching to the desktop version of the site anyway. Hmm,i see now. Lemme think.... For example https://greasyfork.org/en/scripts/408642-show-anime-duration-with-seconds or https://greasyfork.org/en/scripts/421682-who-defriended-me-mal |
Dec 26, 2021 3:41 PM
#146
@kyoyatempest I will check this, some things basically really can't work or be made to work on the mobile MAL website, because a few things can be very very different, usually what works on the desktop website should also work on the mobile website. Maybe it's not working simply because my script does not match the mobile website? I have to check this, most websites mobile version starts with www.m.myanimelist.net, and my script only works on www.myanimelist.net, I will check this later. Anilist? None of my scripts have anything to do with the anilist website.... @ShaggyZE he'd have to completely rewrite them Most likely I would not have to do it, and if I had to, I won't, because it will very likely be that the one's that do not work on the mobile website of MAL are due to a bunch of reasons, not something easy to fix, plus it will likely be my bigger and most complex scripts that wouldn't work on the mobile MAL website, so that's why I would not have and dedicate a lot of time to rewrite them. they would use different selectors that only the mobile site uses This is very very very unlikely to be true, usually it's always the same classes, css's, divs, elements etc that are used both in the mobile websites and on the desktop websites. The only big problem as I said would be the complexity and time taking of finding the problem and fixing it, besides that it's very possible that whatever script works on any desktop website should also work on the same website mobile version. The greatest problem is only power processing, since computers are much faster and more reliable than any smartphone, so scrapping (like my rewatched script) would unlikely work, or take a long time to work on the mobile MAL website version. Also another problem, is event listeners, they work mostly in a very different way from desktop event listeners, this part usually has to change, at least for most of my scripts this would not be hard to do I guess. @kyoyatempest Both of that scripts would probably be easy to make work on the mobile MAL website, I just not sure if the API/fetch also works the same way (or works at all) on the background of the kiwi Browser... But I could try. Also remember that the defriended script does not have multi browser sync ahahah, so you have to use that script in a single browser, not in multiple browsers, at least this is what I highly recommend someone to do regarding this script. if I could make it work on Kiwi Browser, you basically would have to use this script only on the Kiwi Browser on your phone, using this script both on your desktop browser and on your smartphone would be pretty pointless I think. |
hacker09Dec 26, 2021 3:49 PM
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Dec 26, 2021 4:21 PM
#147
the mobile version is obviously more minimal, so while you're right the names of the selectors are the same name, what I meant is; using the 4th child of a selector won't work the way you've already designed it for the desktop, it may be the 2nd child on the mobile site since it won't have as many divs and such, also things like your OP/ED would most likely need to be altered because theme songs are hidden until someone clicks on Theme Songs link on mobile and again is most likely going to be a slightly different selector then desktop. |
ShaggyZEDec 26, 2021 4:25 PM
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Dec 26, 2021 4:28 PM
#148
@ShaggyZE Yeah, that small change would be easy to do, but I suppose div 4 would still be div 4, I would have to check to be sure about it though haha. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
Dec 26, 2021 4:35 PM
#149
also, webm isn't compatible with most mobile devices, animethemes had to do a lot to get their mobile version working including linking the files to the vlc app just to play the videos. |
![]() My Userscripts - Themes - Userstyles - Extensions (Chrome/Firefox) [API CSS] MAL-Scraper-API Cover/CSS Generator |
Dec 26, 2021 4:37 PM
#150
@ShaggyZE That's good to know. So now I know that this script wouldn't be easy to make work on the mobile make website. |
Click here to see My Tampermonkey Scripts For MAL If you like my work, please consider supporting it! Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io |
More topics from this board
» Shamelessly shilling my art accounts!AzafuseKingTora - Sep 6 |
4 |
by AzafuseKingTora
»»
Yesterday, 7:33 PM |
|
» This is Lena, my new OC!DiscloSalilokui - Sep 6 |
1 |
by Retro8bit
»»
Yesterday, 6:17 PM |
|
» 【 ART THREAD 】Let's share our art! ❤︎ ( 1 2 3 4 )mewmewforever - Aug 30, 2024 |
181 |
by Absurdo_N
»»
Sep 7, 5:09 PM |
|
» how to fully hide or ignore users in the forumsdeg - Aug 16 |
8 |
by SushiRoe
»»
Sep 6, 5:34 PM |
|
» Writing Contest - Getting Views AdviceThruddingsfly - Sep 5 |
0 |
by Thruddingsfly
»»
Sep 5, 4:27 PM |