Greasy Fork is available in English.

Video Repubblica in HTML5

Allows to watch MP4 videos on the Repubblica.it website with a HTML5 container

Pada tanggal 23 Maret 2016. Lihat %(latest_version_link).

// ==UserScript==
// @name         Video Repubblica in HTML5
// @namespace    http://andrealazzarotto.com/
// @version      0.1
// @description  Allows to watch MP4 videos on the Repubblica.it website with a HTML5 container
// @author       Andrea Lazzarotto
// @match        http://video.repubblica.it/*
// @copyright    2012+, Andrea Lazzarotto - GPLv3 License
// @require      http://code.jquery.com/jquery-latest.min.js
// @license      GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// ==/UserScript==
'use strict';

$(document).ready(function() {
	var contentURL = $('meta[itemprop=contentUrl]').attr('content');
	if(!!contentURL && contentURL.indexOf('.mp4') > 0)
		$('#playerCont').empty().append('<video src="' + contentURL + '" controls autoplay width="100%" height="100%"></video>');
});