No description
Find a file
2021-11-17 14:42:25 -08:00
altspeed.js autohide downloads 2021-11-17 14:39:21 -08:00
background.js update readme.md 2021-11-17 14:42:25 -08:00
manifest.json autohide downloads 2021-11-17 14:39:21 -08:00
pip.js picture in picture 2021-09-24 12:08:59 -07:00
README.md update readme.md 2021-11-17 14:42:25 -08:00

chromiutil

utility scripts for chromium. current features:

  • alt-p to put videos in pip (picture in picture)
    • if multiple videos are found, you can pick which one to put in pip
    • press again to unpip
  • hold alt to temporarily speed up videos 5x
  • automatic tab group collapsing (read note below)
  • auto-hide download bar

to make automatic tab group collapsing work, you need to hijack ctrl{-shift}-tab. you can do so by running this code on chrome://extensions

chrome.developerPrivate.updateExtensionCommand({
	extensionId: "<whatever id chrome chooses>",
	commandName: "nextTab",
	keybinding: "Ctrl+Tab"
});

chrome.developerPrivate.updateExtensionCommand({
	extensionId: "<the same id again>",
	commandName: "prevTab",
	keybinding: "Ctrl+Shift+Tab"
});