// jQuery
$(document).ready(function() {
// code
})
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain("www.youtube.com") { | |
/* Don't think [theater] is used anymore, but it is in the YT CSS */ | |
@media (max-height: 1439px) { | |
ytd-watch-flexy[theater] #player-theater-container.ytd-watch-flexy, | |
/*ytd-watch-flexy[fullscreen] #player-theater-container.ytd-watch-flexy,*/ | |
ytd-watch-flexy[theater] #player-theater-container.ytd-watch-flexy .ytp-chrome-bottom { | |
max-height: 1080px; | |
max-width: 1920px; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Control Panel\\Colors] 1491939580 | |
#time=1d2b2fb5c69191c | |
"ActiveBorder"="49 54 58" | |
"ActiveTitle"="49 54 58" | |
"AppWorkSpace"="60 64 72" | |
"Background"="49 54 58" | |
"ButtonAlternativeFace"="200 0 0" | |
"ButtonDkShadow"="154 154 154" | |
"ButtonFace"="49 54 58" | |
"ButtonHilight"="119 126 140" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"SIMULATOR": { | |
"Progress": "Fortschritt", | |
"Quality": "Qualität", | |
"Step_counter": "Schritt", | |
"Durability": "Durability", //TODO How is it in DE client? | |
"Hq": "HQ", | |
"Cp_amount": "HP", // I think? Handwerkspunkte(?) | |
"Simulate_tooltip": "Im Simulator herstellen", //how to translate "craft" properly? | |
"Configuration": "Einstellungen", | |
"Level": "Level", // does DE client translate "level" to "Stufe"? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//inspired by http://stackoverflow.com/a/5624139 | |
function hexToRgb(hex) { | |
// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF") | |
var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; | |
hex = hex.replace(shorthandRegex, function(m, r, g, b) { | |
return r + r + g + g + b + b; | |
}); | |
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); | |
return result ? "rgba("+ |