noodlemagazine

noodlemagazine miniscript

Pada tanggal 23 September 2024. Lihat %(latest_version_link).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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;
  }
});