Disable Prime Video (JP) Pre-Roll Ads

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

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