klondike42 / incestflix

// ==UserScript==
// @name        incestflix
// @namespace   com.klondike42.userscripts
// @include     *.incestflix.com/*
// @version     1
// ==/UserScript==

if (window.location.pathname.indexOf('watch') !== 1 && window.location.pathname != '/' && !window.location.pathname.startsWith('/page') && !window.location.pathname.startsWith('/tag')) {
  newLocation = window.location.protocol + '//' + window.location.host + '/watch' + window.location.pathname;
  window.location = newLocation;
}