GoodGame.Ru (new design) ad remover

Disable ad in header. Desrease font size at news pages and forum.

当前为 2016-10-29 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        GoodGame.Ru (new design) ad remover
// @include     https://goodgame.ru/*
// @version     1.10
// @description:ru Выключает верхний блок с рекламой. Уменьшает шрифт до нормального в новостях и на форуме.
// @description Disable ad in header. Desrease font size at news pages and forum.
// @namespace https://greasyfork.org/users/72530
// @license The MIT License
// @grant    GM_addStyle
// ==/UserScript==

//news - decrease font size
GM_addStyle (".news-wrapper .news-block p {font-size: 14px !important; line-height: 22px !important;}");
GM_addStyle (".news-wrapper .news-block h1 {font-size: 18px !important; line-height: 26px !important;}");
GM_addStyle (".news-wrapper .news-footer {font-size: 14px !important; line-height: 22px !important;}");

//forum - decrease font size
GM_addStyle (".dashboard-block .title {font-size: 18px !important; line-height: 26px !important;}");
GM_addStyle (".forum-wrap .topic-block .topic-body .title {font-size: 18px !important; line-height: 26px !important;}");
GM_addStyle (".dashboard-block.comments-block .comment-block .content-part .comment-body {font-size: 14px !important; line-height: 1.7em !important;}");

//remove ad
document.getElementsByTagName("body")[0].className  = "no-ads";