extension ExtPose

Skipflix: Auto Skip Netflix Intro

CRX id

hapiefpnmbcochapdaokomnfiakholbc-

Description from extension meta

Skip opening titles automatically on Netflix.

Image from store Skipflix: Auto Skip Netflix Intro
Description from store When the "skip intro" button appears, Skipflix automatically clicks on it. IMPORTANT: Refresh the Netflix tab after you install this extension.

Latest reviews

  • (2021-09-12) ann-kathrin plate: an sich war die app ganz gut, aber seit nher weile überspringt er die intros nicht mehr...
  • (2020-03-24) Daniel Messias: Muito bom, já foi corrigido o bug de pausar após pular a intro, parabéns pelo trabalho
  • (2020-02-03) Jeroen Hensing: works great... hate when you sit on the couch and get that 30ish minute moment in a series where you get the urge to walk back to skip the intro stuff... *sigh* yes i could control it with my phone or a wireless keyboard... but meh..this is easier :)
  • (2019-08-21) πηνελόπη μπάρδα: It pauses after skipping intro!
  • (2019-08-17) lucas metzner: ele pausa quando pula a abertura
  • (2019-07-08) Waseem Sakka: Used to be good but now it pauses after each skip, which defeats the purpose. Would love to re-install.
  • (2019-06-30) Igor Santos: Infelizmente está após pular o resumo ele acaba dando pause.
  • (2019-05-27) Nick Jones: For some reason, it doesn't work as well as it used to — it skips, but then it pauses, forcing me to press play myself after the intro.
  • (2019-05-19) Gravity King: Keeps pausing the episodes after it skips the intro. Doesn't make it worth it.
  • (2019-05-18) Nazlı Şule Kocaarslan: its stops when press the skip intro button. It should stop the video
  • (2019-05-12) Benjamin Palisson: Nice ! But sometime the series stay in pause ^^
  • (2019-04-17) Wishwise: Skips the intro and then immediately pauses - this is completely worthless.
  • (2019-02-13) Aron Reynolds: It worked perfectly at first, but now a select bunch of shows, which seems to be increasing, pauses after the skip. Not sure if it's a double click or something, but it's worse than having credits, the credits are annoying because you don't wanna get up and skip them, so they waste a minute, but the pause forces you to. Downloaded the extension because I'm recovering from a broken leg-getting on the crutches to unpause it is frustrating. It was great while it lasted.
  • (2019-02-13) P. Wittig: Pauses Netflix after skipping unfortunately... Guessing Netflix did something to counter this extension, but it should be fixable as pause/playing is easily controllable client-side
  • (2019-02-08) Nichelle: Works for me!! thanks guys
  • (2019-01-26) Luis Fernando Astorga: Ya no funciona, pausa justo después de la intro y es lo mismo porque tienes que poner play otra vez :'(
  • (2019-01-24) Nathaniel K.: It was great until it started pausing the show after skipping the intro.
  • (2019-01-21) ᗯƗᒪᒪƗᗩᘉ ᔕ ᖇ: era bom,mais de uns 2 meses pra cá ele esta pulando a intro e dando pause,nao sei se foi alguma att da netflix ou do extensao mais ta precisando de att pra voltar a funcionar corretamente.
  • (2019-01-17) Andreas: Skips the ad, but stops directly there: Have to manually press 'play' to let the movie proceed :(
  • (2019-01-11) Michael Atkins: Thank Jebus for these Netflix apps. Everything that irked me about Flix is dealt with now :D
  • (2018-12-31) John Zsiros: It worked good until about a month ago.. always pauses after skip intro. is this still being updated or should i find another extension?
  • (2018-12-28) Carlos Muñoz Barahona: It skips the intro, but leaves the video paused, usless
  • (2018-12-21) Jaimee Price: Just here to confirm that as of december 22, still not working. Pauses after skip. I have the latest version of chrome installed.
  • (2018-12-08) Old Mate Mula: The idea is great and it has the basics. I can confirm i am running the latest version of chrome. Still pauses after skipping .
  • (2018-12-06) Da G Man: What is the point of skipping the intro if it is just going to pause the episode forcing me to click it anyway? Garbage.
  • (2018-11-26) Shaun 'Sion' Thomas: Since the update to Netflix the autoskip doesn't work as well as it used to. Autoskip works but doesn't continue to play once it skips. So, the video just pauses until you manually press play again. Hopefully this will be sorted soon
  • (2018-11-25) Daniel Huguenin: works perfectly
  • (2018-11-24) Martin Sok: Works even after the netflix update. Would like to see skip credits as well.

Latest issues

  • (2019-01-27, v:1.2) Jorge Vips: 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
  • (2019-01-27, v:1.2) tom sohngen: netflix pauses after autoskip just like everyone else .
    yes chrome is up to date .version 71.0.3578.98 (Official Build) (64-bit)
  • (2019-01-17, v:1.2) Andreas: 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?
  • (2018-12-31, v:1.2) 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 });
  • (2018-12-04, v:1.2) Tapas Kapadia: 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() } }
  • (2018-12-01, v:1.2) Leanderson Medeiros: 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
  • (2018-11-28, v:1.2) Dean Vasiljević: Error
    It pauses after it skips intro.
  • (2018-11-26, v:1.2) 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.
  • (2018-11-20, v:1.1) New Netflix Version
    It pauses the video after clicking on skip the intro.
  • (2018-11-20, v:1.1) BumOn TheCorner: 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!

Statistics

Installs
5,114 history
Category
Rating
3.7 (70 votes)
Last update / version
2019-05-27 / 1.2
Listing languages

Links