Flash Header Replacement

Remove Star7arab default swf logo then replace it with a normal png logo

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

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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        Flash Header Replacement
// @namespace   Flash Header Replacement
// @description Remove Star7arab default swf logo then replace it with a normal png logo
// @exclude     http://*.star7arab.com/*?edit=*
// @exclude     http://*.star7-dz.com/*?edit=*
// @exclude     http://*.star7-dz.info/*?edit=*
// @include     http://*.star7arab.com/*
// @include     http://*.star7-dz.com/*
// @include     http://*.star7-dz.info/*
// @version     3
// @grant       none
// @require     http://code.jquery.com/jquery-latest.min.js
// ==/UserScript==

var NewLogo = 'http://www.star7arab.com/user.asp?id=20985&f=header_logo.png';
var element = document.getElementsByTagName("embed");
$data = $('center');
$.each($data, function (index, val) {
   $(val).find('embed').after('<img src="' + NewLogo + '" />');
});
element[0].parentNode.removeChild(element[0]);