Trello Category

try to take over the world!

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

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         Trello Category
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://trello.com/*
// @grant        none
// ==/UserScript==

function render(){
    var color_match = 
        {
            Everyone: '#e67e22',
            Product: '#95a5a6',
            Marketing: '#2980b9',
            Hardware: '#1abc9c',
            CXO: '#e74c3c',
            Operation: '#95a5a6',
            Software: '#f1c40f'
        };


    $('span.board-tile-details-name').each(function(){
        var title = $(this).text();
        var re = /\[ (.+) \] (.+)/;
        var match = title.match(re);
        if(match){
            $(this).text(match[2]);
            $('<br/><span class="board-category">'+match[1]+'</span>').insertAfter($(this));
            var tile = $(this).parent().parent();
            tile.css({'border-left': '20px solid '+color_match[match[1]]});
        }
    });
}
$(window).load(function(){
    render();
    
    $('body').append(`<style>
body{
    background: #FEFEFE;
}

#header {
    background: #333;
}

.board-tile-details-name {
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.board-tile-fade {
    background-color: rgba(0,0,0,.4);
}

span.board-category{
    background: rgba(0,0,0,0);
    color: white;
    position: relative;
    text-shadow: 0 0 7px black;
    display: inline-block;
    line-height: 1em;
    font-size: 8px;
    margin-right: 5px;
    vertical-align: top;
    opacity: 0.7;
}

.board-tile-details-sub-name{
    display: none;
}

.board-tile-fade{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
</style>`);
});

setInterval(render, 1000);