Change style background

Change style background for website http://valvrareteam.com/

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Change style background
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Change style background for website http://valvrareteam.com/
// @author       Nguyen Huu Tien
// @include      http://valvrareteam.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var interval = setInterval(function(){
        if(window.jQuery) {
            clearInterval(interval);
            jQuery(document).ready(function($){
                var $fbComment = $('.fb-comments');

                var handleStyles = {
                    black: function() {
                        $('.article, .single_post').css({backgroundColor: 'black', color: 'white'});
                        $fbComment.find('> span').css({backgroundColor: 'black', color: 'white'});
                    },
                    white: function() {
                        $('.article, .single_post').css({backgroundColor: 'white', color: 'black'});
                        $fbComment.find('> span').css({backgroundColor: 'black', color: 'white'});
                    },
                };
                var $body = $('body');

                var $controllerContainer = $('<div title="Skin" class="controller-container"><div style="background-color: black;" data-handle-style-name="black" class="styles style-black"></div><div style="background-color: white;" data-handle-style-name="white" class="styles style-white"></div></div>');
                $controllerContainer.css({
                    position: 'fixed',
                    width: 30,
                    right: 5,
                    top: 50,
                    border: 'black solid 1px',
                    zIndex: 1000,
                    backgroundColor: '#19B753',
                    padding: 2
                });
                var $handleStylesElement = $controllerContainer.find('.styles');
                $handleStylesElement.css({
                    width: '100%',
                    height: 20,
                    cursor: 'pointer'
                });

                $handleStylesElement.on('click', function(){
                    var handle = handleStyles[$(this).data('handle-style-name')];
                    if(typeof handle === 'function') {
                        handle();
                    }
                });

                $controllerContainer.appendTo($body);

                handleStyles.white();
                $('#content_box h1.title').css({color: '#339966'});
                var interval = setInterval(function() {
                    var $span = $fbComment.find('> span');
                    if($span.length) {
                        $span.css({backgroundColor: 'black', color: 'white'});
                        clearInterval(interval);
                    }
                }, 100);
            });
        }

    }, 500);

})();