Switch Flash embed to secure

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);