Switch Flash embed to secure

Workaround for Flash 14 on Firefox 30 not loading Flash videos on HTTP pages

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        Switch Flash embed to secure
// @description Workaround for Flash 14 on Firefox 30 not loading Flash videos on HTTP pages
// @author      Jefferson Scher
// @namespace   JeffersonScher
// @include     http://www.youtube.com/*
// @version     0.1
// @grant       GM_log
// ==/UserScript==

function fixURLs(e){
  var embeds = document.querySelectorAll("embed[type='application/x-shockwave-flash']");
  for (var i=0; i<embeds.length; i++){
    // If the player is on s.ytimg.com change http: to https:
    if (embeds[i].getAttribute("src").indexOf("http:\/\/s.ytimg.com\/") > -1)
      embeds[i].setAttribute("src", embeds[i].getAttribute("src").replace("http:", "https:"));
  }
}

// Allow 1 second delay for page to settle down
window.setTimeout(fixURLs, 1000);