Report Cpt_Mathix's Profile

Statistics

All Anime Stats Anime Stats
Days: 135.5
Mean Score: 8.17
  • Total Entries810
  • Rewatched10
  • Episodes8,319
Anime History Last Anime Updates
One Piece
One Piece
Oct 11, 1:50 AM
Watching 1045/? · Scored -
Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season
Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season
Oct 7, 9:50 AM
Watching 1/16 · Scored -
Tsue to Tsurugi no Wistoria
Tsue to Tsurugi no Wistoria
Sep 29, 5:42 AM
Completed 12/12 · Scored 9
Manga Stats
Days: 18.0
Mean Score: 8.17
  • Total Entries49
  • Reread0
  • Chapters3,108
  • Volumes126
Last Manga Updates

Access to this list has been restricted by the owner.

All Favorites Favorites

Anime (10)
Manga (5)
Character (10)

All Comments (77) Comments

Would you like to post a comment? Please login or sign up first!
hacker09 Jun 5, 2023 12:26 PM
if it is bad and makes it really slow I will let you know too.

if onclick does not make my browser slow, adding an extra context menu listener shouldn't make any browser freeze either
hacker09 Jun 4, 2023 11:25 PM
You can also add a context menu listener, that is triggered just as the onclick even is and make it do the exact same thing then. That would work too
hacker09 Jun 4, 2023 9:12 PM
Pls bring back the link on the element href, making it open the com-to-com only onclick makes me unable to right-click and open it.
Zenary Jun 1, 2023 11:29 PM
"Invalid ID" https://greasyfork.org/en/scripts/13133-myanimelist-mal-com-to-com-links

I'm getting a bug now, whenever I click a conversation it shows "Invalid ID", tried this with many other conversations and it doesn't work. Worked perfectly before. Could you fix this error, please?
SheyCroix Jan 22, 2023 8:33 AM
Heya, do you still work on your scripts? It's regarding
https://greasyfork.org/en/scripts/16604-myanimelist-mal-popup-for-edit-details

I have noticed some time ago (forgot to report it, sorry), that if by some chance we open an anime page with the php link, the script won't run.

For example, https://myanimelist.net/anime.php?id=51306 <-- php page, won't work
The ones it normally works okay https://myanimelist.net/anime/51306 or https://myanimelist.net/anime/51306/C_Danchi

(^_^)/
mhkr Jan 1, 2023 8:38 AM
thanks, it seems at least for now I don't see any issues, I inform you if I have a problem later.
Yeah forgot to say that I use quick edit and yes I'm using a theme (https://userstyles.world/style/53/myanimelist-deepdark)
mhkr Jan 1, 2023 4:21 AM
Hi, happy new year to you!

Thanks for the great scripts, I didn't know where to report a problem with one of your scripts so I'm commenting here... After MAL changing their BBCode system, almost every time I want to edit my posts in forum, because of Hover List, Notifications and Profile dropdown this appears at the end of the message:

I appreciate if you update the script and fix the problem
hacker09 Aug 5, 2022 12:48 PM
I see, well I'm going to try to figure out how to get the next video link somehow.

Thanks!
hacker09 Aug 5, 2022 11:51 AM
Great, your code worked for the letter l, but not for the letter n

Is it possible to make the iframe interact with the top frame?

// ==UserScript==
// @name         JWPlayer Enhancer
// @namespace    https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version      2
// @description  Improves binge watch experiences on any JWPlayer videos online.
// @author       hacker09
// @include      *
// @match        https://mateus7g.github.io/crp-iframe-player/
// @icon         https://www.jwplayer.com/hubfs/JW_Player_August2021/Images/favicon-152.png
// @run-at       document-end
// @grant        unsafeWindow
// ==/UserScript==

(function() {
  'use strict';
  window.onload = setTimeout(function() //When the page is loaded
                             { //Starts the onload event listener
    const Player = unsafeWindow.jwplayer(unsafeWindow.jwplayer().getContainer()); //Store the Player element to a variable

    setTimeout(function() { //Starts the settimeout function
      if (location.href.match('crunchyroll') !== null) //If the N key was pressed (skip end and next ep preview)
      { //Starts the if condition
        next = window.querySelector(".collection-carousel-media-link-current").parentElement.nextElementSibling.querySelector("div > div > div > a"); //Jump to next ep
      } //Finishes the else condition

      function Visibility() //Create a function to check the tab visibility status
      { //Starts the function
        if (document.visibilityState === 'visible') { //If the tab is unfocused
          Player.play() //Plays the video
          Player.setFullscreen(true); //Auto full screen the video
        } //Finishes the if condition
      } //Finishes the if function
      Visibility(); //Calls the function

      document.addEventListener("visibilitychange", function() { //When the tab is focused/unfocused
        setTimeout(function() { //Starts the settimeout function
          Visibility(); //Calls the function
        }, 1000); //Finishes the settimeout function

        if (document.hidden) { //If the tab is unfocused
          Player.pause(); //Pause the video
        } //Finishes the if condition

      }, false); //Finishes the visibilitychange event listener
    }, 500); //Finishes the settimeout function

    Player.on('complete', function() { //When the video ends
      Player.setFullscreen(false); //Leave video full screen mode
    }); //Finishes the oncomplete event listener

    Player.on('pause', function() { //When the video is pause
      Player.setFullscreen(false); //Leave video full screen mode
    }); //Finishes the oncomplete event listener

    document.head.insertAdjacentHTML('beforeend', '<style>.jw-rightclick { display: none !important; }</style>'); //Hide the right click jwplayer video menu options

    document.getElementById(unsafeWindow.jwplayer().id).addEventListener('click', function(e) { //When the video is clicked
      setTimeout(function() { //Starts the settimeout function
        if (Player.getState() === 'paused') //If the video is paused
        { //Starts the if condition
          Player.setFullscreen(false); //Leave video full screen mode
        } //Finishes the if condition
        else //If the video is playing
        { //Starts the else condition
          Player.setFullscreen(true); //Enters video full screen mode
        } //Finishes the else condition
      }, 500); //Finishes the settimeout function
    }); //Finishes the on click event listener

    //document.querySelector("video")
    document.addEventListener("keydown", e => { //Listen for keypresses
      console.log("keypressed");
      if (e.key === 'n') //If the N key was pressed (skip end and next ep preview)
      { //Starts the if condition
        Player.setFullscreen(false); //Leave video full screen mode
        if (location.href.match('crunchyroll') !== null) //If the N key was pressed (skip end and next ep preview)
        { //Starts the if condition
          Player.next(); //Jump to next ep
          //next.click();
          //window.querySelector(".collection-carousel-media-link-current").parentElement.nextElementSibling.querySelector("div > div > div > a").click(); //Jump to next ep
        } //Finishes the else condition
      } //Finishes the else condition
      if (e.key === 'l') //If the L key was pressed (skip the opening)
      { //Starts the if condition
        Player.seek(Player.getPosition() + 85); //Seek 1:25 secs foward
      } //Finishes the else condition
    }); //Finishes the keydown event listener
  }, 1500); //Finishes the onload event listener
})();
hacker09 Aug 5, 2022 7:47 AM
Well, that didn't work...
hacker09 Jul 30, 2022 8:56 AM
Thanks, I will check his reply.
hacker09 Jul 29, 2022 7:12 PM
I'm trying to make a script for crunchyroll but I'm having some issues.
Would you know how to "fix" that?

https://greasyfork.org/en/discussions/development/142388-can-t-make-event-listener-work-when-iframe-video-is-focused
hacker09 May 23, 2022 2:08 PM
Besides not doing properly what it says, your script fetches the page right after page load, so I think it is just doing 1 single needless network request to MAL to show wrong information.

If you fix your script you not only would have to do a for loop but make it require an user action, so that a bunch of network requests are not made right after page load, blocking users and your own script network requests.
It would end up looking too similar to my script.
hacker09 May 23, 2022 2:06 PM
Hi there!

I would like to say sorry for making another script that actually does the same thing as yours
https://greasyfork.org/en/scripts/18971-myanimelist-mal-average-friends-score/code

I noticed it just today actually...

Also, I was reading at your codes and your script does not work as it says...

All your script does is it gets the first page of the stats pages, grabs all friends scores for the entry and calculates the average based on the first stats page only, thus showing wrong data.

I also did commit that same mistake in my first version of the script, but I fixed that a couple days ago too...
https://greasyfork.org/en/scripts/443777-friends-average-score-mal/code

I just would like to let you know that and, if you are not willing to actually fix it and update your script, I could actually make your script not public and redirect users to my working updated script.

I've chose to talk with you first, before doing anything, if I actually do anything...
WinDCu2ter Jan 15, 2022 1:00 AM
Okay,thank you for your time.
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login