Sonar Radiator

Removes menus and increses fonts for SonarQube dashboards

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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