LibriVox PlayMaker

Converts audio link on LibriVox page to an audio element loader.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         LibriVox PlayMaker
// @namespace    https://vox.quartertone.net/
// @version      1.3.1
// @description  Converts audio link on LibriVox page to an audio element loader.
// @author       Quartertone
// @icon         https://vox.quartertone.net/favico.ico
// @grant        none
// @match        *://librivox.org/*
// @exclude      *://librivox.org/search*
// @exclude      *://librivox.org/reader*
// @exclude      *://librivox.org/
// @license      gpl-3.0
// ==/UserScript==

(function() {
    'use strict';
  if (typeof vox == "undefined") var vox = false;
  let btns = document.getElementsByClassName("play-btn");
  if (btns.length == 0) return;
  if (!vox) {
    var style = document.createElement("style");
    style.innerHTML = "audio{width:110px;height:2em;position:absolute;} audio:focus,audio:hover{width:25em;} .play-btn{cursor:pointer;display:inline;background:transparent;}";
    document.head.appendChild(style);
  }
  let btnum = 0;
  let previousaudio = null;
  let lastplayed = "PM_Track";
  for (const btn of btns) {
    if (!vox) {
      btn.title = btn.href;
      btn.removeAttribute("href");
      btn.parentElement.style.width = "130px";
    }
    btn.innerHTML = "listen";
    btn.nexttrack = btns[++btnum];
    btn.tracknum = btnum;
    btn.onclick = function () {
      let audio = document.createElement("audio");
      audio.controls = true;
      audio.autoplay = true;
      audio.innerHTML = `<source src="${btn.title}" type="audio/mpeg"/>`;
      audio.oncanplay = function () {
        audio.currentTime = getCookie(btn.title) ? getCookie(btn.title) : 0;
        if (previousaudio != null)
          previousaudio.pause();
        previousaudio = audio;
        audio.oncanplay = null;
      };
      audio.onplay = function () {
        //console.log("on playyyy");
        createCookie(lastplayed, btn.title);
      };

      audio.ontimeupdate = audio.onpause = function () {
        createCookie(btn.title, this.currentTime);
      };
      audio.onended = function () {
        // createCookie(btn.title, 0);
        delCookie(btn.title);
        btn.innerHTML = "played";
        if (vox) btn.classList.add("play-btn");
        if (btn.nexttrack != undefined) {
          // there is a track after this one
          btn.nexttrack.click();
        } else {
          // end of album
          previousaudio = null;
          createCookie(lastplayed, "");
        }
      };
      btn.innerHTML = "";
      if (vox) btn.classList.remove("play-btn");
      btn.appendChild(audio);
    };
  }

  if (getCookie(lastplayed)) {
    //console.log("lastplayed", getCookie(lastplayed));
    try {
      document.querySelector("[title='" + getCookie(lastplayed) + "']").click();
    } catch (e) { };
  }
  function createCookie(name, value) {
    window.localStorage.setItem(name, value);
  }
  function getCookie(name) {
    return window.localStorage.getItem(name);
  }
  function delCookie(name) {
    window.localStorage.removeItem(name);
  }
})();