InstaSynchP History

Adds a tab for the previously played videos

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        InstaSynchP History
// @namespace   InstaSynchP
// @description Adds a tab for the previously played videos

// @version     1.0.1
// @author      Zod-
// @source      https://github.com/Zod-/InstaSynchP-History
// @license     MIT

// @include     *://instasync.com/r/*
// @include     *://*.instasync.com/r/*
// @grant       none
// @run-at      document-start

// @require     https://greasyfork.org/scripts/5647-instasynchp-library/code/InstaSynchP%20Library.js?version=41059
// ==/UserScript==

function History(version) {
  "use strict";
  this.version = version;
  this.name = 'InstaSynchP History';
  this.styles = [{
    'name': 'playlist_history_css',
    'url': 'https://cdn.rawgit.com/Zod-/InstaSynchP-History/master/history.css',
    'autoload': true
  }];
}

History.prototype.executeOnce = function () {
  "use strict";
  var th = this;

  createNavTab({
    tooltip: 'History',
    tab: '#tabs_playlist_history',
    class: 'fa fa-clock-o'
  }).insertAfter('.video-controls > .nav-tabs > li:first-child');

  $('<div>', {
    class: 'tab-pane',
    id: 'tabs_playlist_history'
  }).append(
    $('<ol>', {
      class: 'playlist',
      id: 'playlist_history'
    })
  ).appendTo('.video-controls > .tab-content');

  events.on(th, 'PlayVideo', function () {
    var clone = $('#playlist > li.active').clone().toggleClass('active');
    $('.buttons > .remove-video', clone).remove();
    $('#playlist_history').prepend(clone);
  });
};

window.plugins = window.plugins || {};
window.plugins.history = new History('1.0.1');