noodlemagazine

noodlemagazine miniscript

23.09.2024 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         noodlemagazine
// @namespace   http://tampermonkey.net/
// @version   0.2
// @description   noodlemagazine miniscript
// @author   xxxxxxxxxxxxxxxxxxxxxx
// @run-at document-start
// @match   *://*.noodlemagazine.com/*
// @grant     none
// @noframes
// @license MIT
// ==/UserScript==

const jwplayerhook = {
  apply: function(target, thisArg, args) {
    window.ads = [];
    let player = target(...args);
    player.setup_ = player.setup;
    player.setup = new Proxy(player.setup_, setuphook);
    console.log(player.setup);
    return player;
  }
};

const setuphook = {
  apply: function(target, thisArg, args) {
    console.log('Calling setup with arguments:', args);
    let argss = args[0];
    'autoPause' in argss && delete argss.autoPause;
    'advertising' in argss && delete argss.advertising;
    return target(argss);
  }
};

Object.defineProperty(window, 'onpopstate', {
  get() {
    return window._onpopstate;
  },
  set(v) {
      window.jwplayer_ = window.jwplayer;
      window.jwplayer = new Proxy(window.jwplayer_, jwplayerhook);
      console.log(jwplayer);
      //debugger;
      window._onpopstate = v;
  }
});