🏠 Home 

Disable Prime Video (JP) Pre-Roll Ads

Prime Video (JP) のプレロール広告(番宣)をたぶん無効にします。


Installer dette script?
// ==UserScript==
// @name        Disable Prime Video (JP) Pre-Roll Ads
// @namespace   https://rinsuki.net/
// @match       https://www.amazon.co.jp/*
// @grant       none
// @version     1.0
// @author      rinsuki
// @description Prime Video (JP) のプレロール広告(番宣)をたぶん無効にします。
// @license     MIT
// ==/UserScript==
const openOrig = XMLHttpRequest.prototype.open
XMLHttpRequest.prototype.open = function (...args) {
if (args[1].includes("GetPlaybackResources")) {
args[1] = args[1].replace("%2CCuepointPlaylist", "")
}
return openOrig.apply(this, args)
}