Sonar Radiator

Removes menus and increses fonts for SonarQube dashboards

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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