noodlemagazine

noodlemagazine miniscript

اعتبارا من 23-09-2024. شاهد أحدث إصدار.

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

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