Sonar Radiator

Removes menus and increses fonts for SonarQube dashboards

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.

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Sonar Radiator
// @namespace    http://gmatheu.github.io/
// @version      0.1
// @description  Removes menus and increses fonts for SonarQube dashboards
// @author       Gonzalo Matheu <[email protected]
// @match        https://sonar/dashboard/index/*
// @grant        none
// ==/UserScript==

$('hd').remove();
$('crumbs').remove();
$('sidebar').remove();
$('footer').remove();
jQuery.find('form').forEach(function (f) { f.remove();})
jQuery.find('.operations').forEach(function (f) { f.remove();})
jQuery('#content').removeClass('with_sidebar')
jQuery('#container').css('min-width', '90px');
jQuery('.page_title').css('font-size', '24px');

jQuery('a', jQuery('.rules')).css('font-size', '24px');
jQuery('a', jQuery('.rules')).css('text-decoration', 'none');
jQuery('span', jQuery('.rules')).css('font-size', '24px');

jQuery('.big').css('font-size', '72px');
jQuery('span', jQuery('.big')).css('font-size', '48px');