Kitsu Nightmode

DarkMode for Kitsu

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Kitsu Nightmode
// @namespace    http://tampermonkey.net/
// @version      0.4.1a
// @description  DarkMode for Kitsu
// @author       AnzoDK (Kitsu.io/users/AnzoDK)
// @match        https://kitsu.io/
// @include      https://kitsu.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.onload = function () {
        var css = '#ember8{background-color:#1a1a1a!important;}.feed-aside > div:nth-child(1) > ul:nth-child(1) > li{background-color:#262626!important;border-color: black;}.stream-item--title-block{background-color:#262626;}.text-xs-center{background-color:#262626;}.stream-item{background-color:#262626!important;}{background-color:#262626!important;}#ember392 > div:nth-child(1) > div:nth-child(1){background-color:#262626!important;}.form-control {background-color:#262626!important;}.add-content-header{background-color:#262626!important;border-color: background-color:#262626!important;;}.stream-add-content{background-color:#262626!important;}.stream-item-comments{background-color:#262626;}.comment-box{background-color:#262626;}.comment-box-row{}.user-blotter{background-color: #262626;}.timeline-link.active{background-color:black!important;}.gate--hover{background-color: #262626;}.gate--label{background-color: #262626;}.nsfw-gate{background-color: #262626!important;}.stream-content{background-color: #262626!important;}.media-tag-synopsis{background-color: #262626!important;}.tagged-media{background-color: #262626!important;border-color:#262626!important;}p{color:#595858!important;}.media{background-color: #262626!important}.add-comment{border-color: #262626!important}div.spoiler-gate a{background-color:#262626!important;border-color:#262626!important;}.stream-content-editor{background-color:#262626!important;}.dismiss-blotter{background-color:#262626!important;}body{background-color:#262626!important;}.embed-info{background-color:#262626!important;}.comment-actions{background-color:#262626!important;border-color:#404040!important;}.stream-item-comments li{border-color:#404040!important;}.stream-item-comments{border-color:#404040!important;}.cover-nav navbar{background-color:#262626!important;}.ember-power-select-selected-item{background-color:#262626!important;}.media-grid{background-color:#262626!important;}.card{background-color:#262626!important;}.nav-item.nav-link.active{background-color:black!important;}.ember-power-select-trigger{background-color:#262626!important;border-color:#404040!important;}.nav-item.nav-link{border-color:#404040!important;}.cover-nav{background-color:#262626!important;}.nav-item.nav-link:hover{background-color:black!important;}.tag.tag-default{background-color:#404040!important;}.library-search-input{background-color:#262626!important;border-color:#404040!important;}'
var head = document.head || document.getElementsByTagName('head')[0],
    style = document.createElement('style');

style.type = 'text/css';
if (style.styleSheet){
  // This is required for IE8 and below.
  style.styleSheet.cssText = css;
} else {
  style.appendChild(document.createTextNode(css));
}

head.appendChild(style);
}
})();