Skip to content

Instantly share code, notes, and snippets.

View mvalim's full-sized avatar

Matheus Valim Oliveira mvalim

  • T4R Sistemas
  • Uberaba, MG - Brasil
View GitHub Profile
@mvalim
mvalim / gist:de15730c9c7ebc8a5b1fc583ca3ec8a3
Created July 2, 2019 21:04
Chrome mediaSession global shortcuts
function video() {
return Array.from(document.querySelectorAll('video'))
.filter((v) => v.readyState !== 0)
.sort((v1, v2) => {
const v1Rect = v1.getClientRects()[0];
const v2Rect = v2.getClientRects()[0];
return ((v2Rect.width * v2Rect.height) - (v1Rect.width * v1Rect.height));
})[0];
}