Custom Styles Kaskus

custom tampilan kaskus + buka thread di tab baru

Stan na 27-01-2015. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name            Custom Styles Kaskus
// @description     custom tampilan kaskus + buka thread di tab baru
// @author          ndi
// @version         0.1
// @compatible      Greasemonkey
// @require         http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// @grant           GM_addStyle
// @include         *.kaskus.co.id/*
// @exclude         *.kaskus.co.id/forum
// @exclude         *.kaskus.co.id/fjb
// @exclude         *infokost.kaskus.co.id/
// @exclude         *.kaskus.co.id/group
// @namespace https://greasyfork.org/users/8670
// ==/UserScript==

$(function(){
GM_addStyle(''
+'body{background:#e3e3e3}'
+'.navbar{background:#eee;border-bottom:1px solid #fff}'
+'.related-thread, .sidebar-wrap,.ads-lb-wrap{display:none;}'
+'.main-content{width:100%}'
+'.container{width:1100px !important}'
+'.user-control-stick{width:1100px}'
+'.post-entry td.icon{width:50px}'
+'.postlist .entry{padding:20px;background:#f3f3f3}'
);
$('.listing-table .post-title a').attr('target','_blank')//open thread new tab
//end
})();