Prime Video Ad Blocker [ESP]

Skip Ads in Prime Video.

目前為 2022-10-08 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            Prime Video Ad Blocker [ESP]
// @namespace       https://greasyfork.org/en/users/5102-jeau
// @version         0.2.3
// @description     Skip Ads in Prime Video.
// @description:es  Bloquea los anuncios en Prime Video.
// @author          Jeau
// @license         MIT
// @match           https://www.primevideo.com/*
// @icon            https://m.media-amazon.com/images/G/01/digital/video/DVUI/favicons/favicon-32x32.png
// @grant           none
// ==/UserScript==

/*
------------------------------------------------------------------------
   Adapted for spanish Amazon site from RawMeatEater's script:
   https://greasyfork.org/es/scripts/446723-amazon-video-ad-blocker
------------------------------------------------------------------------
*/

(function() {
    'use strict';
    // This value when true shows that the Ad has been skipped
    var adSkipped = false;
    setInterval(function() {
        var video;
        var renderer = document.getElementsByClassName("rendererContainer")[0];
        if (renderer) {
            video = renderer.querySelector('video');
        }
        var adTimeElement = document.getElementsByClassName("atvwebplayersdk-adtimeindicator-text")[0];
        // If video started playing and a 'Time to Skip' element is detected
        if (video && video.currentTime && adTimeElement) {
            // Has it been skipped aready? (To be sure that you don't skip forward twice)
            if ( adSkipped == false ) {
                var adTimeRegExp = /(\d?\d:){0,2}\d?\d/;
                if (adTimeRegExp.test(adTimeElement.innerHTML)) {
                    // Grab the Ad timer in HH:MM:SS format and split it into an array as soon as it is detected
                    var currentAdTime = adTimeElement.innerHTML.match(adTimeRegExp)[0].split(':');
                    // Calculate the Ad time in seconds
                    var adTimeInSecs = 0;
                    for (let i = 0; i < currentAdTime.length; i++) {
                        adTimeInSecs += parseInt(currentAdTime[i]) * Math.pow(60, currentAdTime.length - 1 - i);
                    }
                    // Forward the video by how much Ad time the timer shows
                    video.currentTime += adTimeInSecs;
                    // Mark the Ad as skipped
                    adSkipped = true;
                }
            }
        } else {
            // When Ad timer disappers, reset the Ad skip value
            adSkipped = false;
        }
    }, 100);
})();