Support: Skipflix: Auto Skip Netflix Intro
Item logo image for Skipflix: Auto Skip Netflix Intro

Skipflix: Auto Skip Netflix Intro

3.7(

70 ratings

)
ExtensionAccessibility4,000 users

26 support issues

For additional help, check out the developer's support site.

  • All
  • Questions
  • Suggestions
  • Problems

Jorge Vips

Jan 27, 2019

I solved it adding this function

Check timer function I've added, it helps to autoplay movie if get pause

code-start:

// Try matching a node for the "skip" button and click on positive match.
matchAndClick = node => {
if (node.nodeType === 1 && node.matches('.skip-credits')) {
click(node);
setTimeout(function() {
if (document.querySelector('.button-nfplayerPlay')) {
document.querySelector('.button-nfplayerPlay').click();
}
}, 500)
}
}

code-end;

Hope, this helps you. greetings

tom sohngen

Jan 26, 2019

netflix pauses after autoskip just like everyone else .

yes chrome is up to date .version 71.0.3578.98 (Official Build) (64-bit)

Andreas

Jan 17, 2019

Pause after skip

My two cents: Everyone has that problem: Why not just automatically script a play-button-click after the skip?? Should solve the problem I guess?

A Chrome Web Store user

Dec 31, 2018

Fix for pauses

This works! Thanks to Tapas Kapadia.

Developer, Please change Autoskip.js to:

// Send each DOM mutation through a filtering function.
const obs = new MutationObserver(mutations => mutations.map(matchAddedNodes));

// Send each added node through the matching and clicking function.
matchAddedNodes = mutation => mutation.addedNodes.forEach(matchAndClick);

// Try matching a node for the "skip" button and click on positive match.
matchAndClick = node => {
if (node.nodeType === 1 && node.matches('.skip-credits'))
doClick(node).then(doGetPlayButton());
}

// Click the node.

function doClick(node) {
return new Promise(function(resolve) {
resolve(node.firstChild.click());
});
}
function doGetPlayButton() {
var c = document.getElementsByClassName("PlayerControlsNeo__button-control-row");
var d = c.item(0)
if(d.parentNode.classList.contains("PlayerControlsNeo__bottom-controls--faded")){
d.firstChild.click()
}
}
// Observe the DOM for changes.
obs.observe(document.documentElement, { childList: true, subtree: true });

Tapas Kapadia

Dec 3, 2018

Code for Pause Bug

Netflix pauses if it was at an inactive state when the skip intro button is clicked. To avoid this you can do this instead of just clicking:

doClick(n).then(doGetPlayButton());

function doClick(n) {
return new Promise(function(resolve) {
resolve(n.firstChild.click());
});
}
function doGetPlayButton() {
var c = document.getElementsByClassName("PlayerControlsNeo__button-control-row");
var d = c.item(0)
if(d.parentNode.classList.contains("PlayerControlsNeo__bottom-controls--faded")){
d.firstChild.click()
}
}

Leanderson Medeiros

Dec 1, 2018

skip the intro pauses the video

after the netflix play interface change after the auto skip the intro pauses the video automatically. even with its correction made on November 25, 2018 continues to present the problem. thanks in advance.
version: 1.2
browser: google Chrome 70.0.3538.110
series that presented a problem: F Is for Family

Dean Vasiljević

Nov 28, 2018

Error

It pauses after it skips intro.

A Chrome Web Store user

Nov 25, 2018

Tried suggestions.

I have the latest version of Chrome and have tried restarting. Still pauses on intro skip. I wonder if it's related to Netflix's new click-to-pause functionality.

A Chrome Web Store user

Nov 20, 2018

New Netflix Version

It pauses the video after clicking on skip the intro.

BumOn TheCorner

Nov 20, 2018

Needs update!

It does auto skip but it pauses every time since Netflix updated. Please update! PLEASE! I fall asleep to Star Trek but the into always wakes me up because its 5x louder then the show!

Google apps