// ==UserScript== // @name 9anime Bingewatcher+ // @namespace https://greasyfork.org/en/users/10118-drhouse // @version 3.6 // @description Auto-fullscreen, skip intros, jump to next episode, 9anime on Vidstream and MyCloud videos (Auto-1080p in configuration panel) // @include https://www*.9anime.*/* // @include https://9anime.*/* // @include https://*.9anime.*/* // @match *.9anime.to/watch/* // @include https://vidstream.pro/* // @include https://vidstreamz.online/* // @include https://mcloud.to/* // @include https://mcloud2.to/* // @include https://storage.googleapis.com/* // @include https://movies7.to/* // @include https://*.mp4upload.com:*/* // @include https://*.mp4upload.com*/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @require https://greasyfork.org/scripts/439099-monkeyconfig-modern-reloaded/code/MonkeyConfig%20Modern%20Reloaded.js?version=1012538 // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js // @grant GM_getValue // @grant GM_setValue // @grant GM_addStyle // @grant GM_registerMenuCommand // @grant GM_notification // @author drhouse // @license CC-BY-NC-SA-4.0 // @icon https://s2.bunnycdn.ru/assets/9anime/favicons/favicon.png?v1 // @downloadURL none // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function($){ var cfg = new MonkeyConfig({ title: 'Configure', menuCommand: true, params: { 'Automatic Highest Quality': { type: 'checkbox', default: true }, Skip_Anime_Intro_Key: { type: 'text', default: 'v' }, 'Skip Anime Intro Time': { type: 'number', default: '89' }, Next_Episode_Key: { type: 'text', default: 'n' }, Skip_Company_ID_Key: { type: 'text', default: 'q' }, 'Skip Company ID Time': { type: 'number', default: '10' }, 'Automatic Skip Company ID': { type: 'checkbox', default: false }, }, // onSave: setOptions }) if (cfg.get('Automatic Highest Quality')) { const myInterval = setInterval(myTimer, 1000); function myTimer() { var $highest_check = $('#jw-settings-submenu-quality > div:nth-child(1) > button:nth-child(2)').attr('aria-checked') var $auto_check = $('#jw-settings-submenu-quality > div:nth-child(1) > button:nth-child(1)').text() $('div.jw-icon:nth-child(14)')[0].click() if ($auto_check === 'Auto'){ if ($highest_check === "true"){ $('div.jw-icon:nth-child(14)')[0].click() clearInterval(myInterval); } else { $('#jw-settings-submenu-quality > div:nth-child(1) > button:nth-child(2)').click() } } else { $('div.jw-icon:nth-child(14)')[0].click() clearInterval(myInterval); } } } function openFullscreen(elem) { if (elem.requestFullscreen) { elem.requestFullscreen(); } else if (elem.mozRequestFullScreen) { /* Firefox */ elem.mozRequestFullScreen(); } else if (elem.webkitRequestFullscreen) { /* Chrome, Safari and Opera */ elem.webkitRequestFullscreen(); } else if (elem.msRequestFullscreen) { /* IE / Edge */ elem.msRequestFullscreen(); } } function once(fn, context) { var result; return function() { if(fn) { result = fn.apply(context || this, arguments); fn = null; } return result; }; } var canOnlyFireOnce = once(function(player, current) { player.currentTime = Number(cfg.get('Skip Company ID Time')) }); function waitForElementToDisplay(selector, time) { if(document.querySelector(selector)!=null) { setTimeout(function(){ var elem = $('video').parent().parent().parent().get(0); openFullscreen(elem); $(elem).focus(); }, 1000); var newYearCountdown = setInterval(function(){ var player = $('video').get(0); var duration = player.duration; var current = player.currentTime; if(cfg.get('Automatic Skip Company ID')){ if(player.currentTime < 1){ canOnlyFireOnce(player, current); } } var link = document.querySelector("body"); link.addEventListener("keydown", function(event) { var x = event.key; var z = event.keyCode; if (x == cfg.get('Skip_Company_ID_Key')) { // Q key skip 10s player.currentTime = current + Number(cfg.get('Skip Company ID Time')); } if (x == cfg.get('Skip_Anime_Intro_Key')) { // V key skip 89s player.currentTime = current + Number(cfg.get('Skip Anime Intro Time')); } if (x == cfg.get('Next_Episode_Key')) { // N key skip end player.currentTime = player.duration; } }) }, 1000); } else { setTimeout(function() { waitForElementToDisplay(selector, time); }, time); } } waitForElementToDisplay('#player', 1000); })(jQuery);