Skip to content

Instantly share code, notes, and snippets.

View fredericogg's full-sized avatar
🏠
Working from home

Frederico Genovez fredericogg

🏠
Working from home
  • Seedz
  • Uberlândia, Brasil
View GitHub Profile
@fredericogg
fredericogg / playlist_time.js
Last active December 30, 2023 16:16
Calcula o tempo total de uma playlist no Youtube. É só colar no console na página da playlist. Fiz esse script porque não achei o tempo total da playlist 😅.
(function() {
var timeSeconds = 0;
var timestampDivList = document.querySelectorAll(".timestamp");
for(var i = 0; i < timestampDivList.length; i++) {
var timestampDiv = timestampDivList[i];