noodlemagazine

noodlemagazine miniscript

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         noodlemagazine
// @namespace   http://tampermonkey.net/
// @version   0.21
// @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);
    try {
        let a = document.createElement('a');
        let r = window.location.href.match(/watch\/(.*)\/*/);
        let s = null;
        r && r.at(1) && (s = `https://vk.com/video${r[1]}`);
        let e = document.querySelector("body > div.main > div > div.video_info");
        e && s && (a.innerHTML = `<a href=${s}>${s}</a>`) && e.append(a);
    } catch(ex) {}
    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(window.jwplayer);
      //debugger;
      window._onpopstate = v;
  }
});