2/12/2018

// ==UserScript==
// @name         JazScript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://www.aljazeera.com/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
    var j = jQuery.noConflict();
    j('#article-main-header').fadeOut(4000);
    j('.top-sec-desc').css('backgroundColor','red');
    j('a:contains("News")').prepend('Breaking News:');
})();

Comments are closed.