TV-Muse quicklinks

Adds links to coke&popcorn, fullseries and google video search to tv-muse.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        TV-Muse quicklinks
// @description Adds links to coke&popcorn, fullseries and google video search to tv-muse.
// @include     http://www.tvmuse.eu/tv-shows/*
// @include     http://www.tvmuse.com/tv-shows/*
// @version     1
// @grant       none
// @namespace https://greasyfork.org/users/2209
// ==/UserScript==

// parse tv-muse URL and extract show and episode
var bla = location.href.match(/tv-shows\/([^_]+).*season_(\d+).*episode_(\d+)/);
var show = '';
if(bla[1]==='NCIS') // special case for NCIS
  show = 'NCIS';
else
  show = bla[1].toLowerCase();

  
var site1 = '<a target="_blank" href="http:\/\/www.cokeandpopcorn.ch\/watch-'+show+'-season-'+bla[2]+'-episode-'+bla[3]+'-online.php">Coke & popcorn</a>';

var site2 = '<a target="_blank" href="http:\/\/fullseries.net\/'+bla[1].toLowerCase()+'-season-'+bla[2]+'-episode-'+bla[3]+'">Full Series</a>';
  
var site3 = '<a target="_blank" href="https:\/\/www.google.de\/search?q='+bla[1].replace(/-/g, " ")+' Season '+bla[2]+' Episode '+bla[3]+'&tbm=vid&tbs=dur:l">Google Video</a>';

https://www.google.de/search?q=xxxx&tbm=vid&tbs=dur:l
  
 // Coke&Popcorn
var topLinks;
topLinks = document.createElement('div');
topLinks.innerHTML = '<div style="font-size:28px">' + site1 +' | '+ site2 + ' | '+ site3 + '</div>';
document.body.insertBefore(topLinks, document.body.firstChild);