This file contains hidden or 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
javascript: (function() { | |
let maxSpeed = 2.0; | |
let stepSize = 0.25; | |
let videos = document.querySelectorAll('video'); | |
for (video of videos) { | |
if (video.playbackRate >= maxSpeed) { | |
video.playbackRate = 1.0; | |
} else { | |
video.playbackRate = video.playbackRate + stepSize; |
This file contains hidden or 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
javascript: (function() { | |
let filteredInputId = document.getElementById("filterInputId"); | |
if (filteredInputId) { | |
filteredInputId.remove(); | |
} | |
let table = document.getElementsByTagName("table")[0]; | |
table.parentNode.insertAdjacentHTML("beforebegin", '<input id="filterInputId" type="file">'); | |
let url = location.protocol + '//' + location.host + location.pathname; |
This file contains hidden or 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
javascript: (function() { | |
let audios = document.getElementsByTagName('audio'); | |
for (let audio of audios) { | |
audio.muted = !audio.muted; | |
} | |
})(); |
This file contains hidden or 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
javascript: (function() { | |
let filteredInputId = document.getElementById("filterInputId"); | |
if (filteredInputId) { | |
filteredInputId.remove(); | |
} | |
let table = document.getElementsByTagName("table")[0]; | |
table.parentNode.insertAdjacentHTML("beforebegin", '<input id="filterInputId" type="file">'); | |
let url = location.protocol + '//' + location.host + location.pathname; |
This file contains hidden or 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
javascript:(function() { | |
let table = document.getElementsByTagName("table")[0]; | |
let linkList = table.querySelectorAll("a.object-link"); | |
let imageElements = [...linkList].map(url => { | |
let path = url.href.split("_details")[1]; | |
let name = url.href.split("/").pop().split("?")[0]; | |
return "<img height=200 src='https://storage.cloud.google.com" + path + "' title='" + name + "'/>"; | |
}); | |
imageElements = Array.from(new Set(imageElements)); | |
table.insertAdjacentHTML("beforebegin", "<div>" + imageElements.join("") + "</div>"); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
{ | |
"metadata": { | |
"name": "", | |
"signature": "sha256:dcc9c498f43dac3f108956486820ea5ab2b7a7990fbd15aeaeab10cffcc51f23" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ |