Switch Flash embed to secure

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

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 or Violentmonkey 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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

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