cuticle/README.md

29 lines
789 B
Markdown
Raw Permalink Normal View History

2021-09-24 23:28:16 +00:00
# chromiutil
2021-09-25 05:59:26 +00:00
utility scripts for chromium. current features:
2021-09-24 23:28:16 +00:00
2021-09-25 05:59:26 +00:00
- <key>alt-p</key> to put videos in pip (picture in picture)
2021-09-25 11:02:08 +00:00
- if multiple videos are found, you can pick which one to put in pip
- press again to unpip
2021-09-24 23:28:16 +00:00
- hold alt to temporarily speed up videos 5x
2021-09-25 05:59:26 +00:00
- automatic tab group collapsing (read note below)
2021-11-17 22:42:25 +00:00
- auto-hide download bar
2021-09-25 05:59:26 +00:00
to make automatic tab group collapsing work, you need to hijack ctrl{-shift}-tab.
2021-11-17 22:39:21 +00:00
you can do so by running this code on `chrome://extensions`
2021-09-25 05:59:26 +00:00
```js
chrome.developerPrivate.updateExtensionCommand({
2021-09-25 11:02:08 +00:00
extensionId: "<whatever id chrome chooses>",
commandName: "nextTab",
keybinding: "Ctrl+Tab"
2021-09-25 05:59:26 +00:00
});
chrome.developerPrivate.updateExtensionCommand({
2021-09-25 11:02:08 +00:00
extensionId: "<the same id again>",
commandName: "prevTab",
keybinding: "Ctrl+Shift+Tab"
2021-09-25 05:59:26 +00:00
});
```
2021-09-24 23:28:16 +00:00