Skip to content

Instantly share code, notes, and snippets.

@tsi
tsi / input.scss
Created September 19, 2022 14:12
Generated by SassMeister.com.
$text-color: #0c163b;
@function HEX2RGB($hex) {
@return #{red($hex)},#{green($hex)},#{blue($hex)};
}
.a {
color: HEX2RGB($text-color);
}
@tsi
tsi / profile.json
Last active January 26, 2025 12:18
profile.json
{
"playerOptions": {
"private_cdn": true,
"secure_distribution": "content.toastmasters.org"
},
"sourceOptions": {
"sourceTypes": ["hls"]
}
}
function forwardPlayers(doc = document) {
doc.querySelectorAll(".vjs-v8").forEach(player => {
if (player.player.currentTime() < player.player.duration() - 1) {
player.player.currentTime(player.player.duration() - 0.1);
logs.push(["forwarded: ", player]);
}
});
}
function clickNext(doc = document) {