Amazon Prime Video Expiry Viewer

Makes it obvious which and when videos are going to expire.

当前为 2018-04-08 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Amazon Prime Video Expiry Viewer
// @namespace    https://github.com/Kadauchi
// @version      1.0.0
// @description  Makes it obvious which and when videos are going to expire.
// @author       Kadauchi
// @icon         http://i.imgur.com/oGRQwPN.png
// @include      https://www.amazon.com/gp/video*
// @include      https://www.amazon.com/Prime-Video/*
// ==/UserScript==

const checked = {}

function checkShelf () {
  for (const el of document.getElementsByClassName(`dv-shelf-item`)) checkIfLeaving(el)
  for (const el of document.getElementsByClassName(`dv-packshot`)) checkIfLeaving(el)
}

async function checkIfLeaving (item) {
  const asin = item.querySelector(`[data-asin]`).dataset.asin
  const leaving = await fetchHover(asin)

  if (leaving) {
    const date = document.createElement(`div`)
    date.textContent = leaving
    date.style = `text-align: center; color: black;`
    date.style.backgroundColor = `yellow`
    item.appendChild(date)
  }
}

function fetchHover (asin) {
  return new Promise(async (resolve) => {
    if (asin && !checked[asin]) {
      const response = await window.fetch(`https://www.amazon.com/gp/video/hover/${asin}?format=json`)
      const text = await response.text()
      const leaving = text.match(/Leaving Prime on ([\w\s,]+)/)
      const isLeaving = leaving ? leaving[1] : false
      checked[asin] = isLeaving
      resolve(isLeaving)
    } else if (checked[asin]) {
      resolve(checked[asin])
    }
  })
}

checkShelf()