polywock
polywock
You're welcome! By the way, the new update not working could be due to these 3 reasons. 1. The old version of Global Speed is still running at 1x so...
Hello. I will look into that. For now, you could add a shortcut that changes the speed to 4x. The first time you press it, it will go to 4x....
> 都是可以直接触发的 Two reasons 1. It can be used to quickly turn on/off the audio effects without resetting pitch, gain, etc. 2. The TabCapture API, which Global Speed uses to...
Always happy to see the extension being helpful! The problem with toggling captions is all sites handle it differently. Same with next/previous shortcuts, which is a feature suggestion I get...
Hello. Did you enable "speed changes pitch" in the options page?
Weird, is this on all websites? If so, let me know your OS version, browser version, Global Speed version.
Hello. You can't for a single page, but you can for a single tab by clicking the 📌, or using the default "Q" shortcut key.
This javascript should work for most websites. You can add a URL rule that loads it on relevant sites. Let me know if there's any problems setting it up. 1....
Maybe this. ```js window.addEventListener('playing', e => { e.target.muted = false e.defaultMuted = false }, true) setTimeout(() => { document.querySelectorAll('video').forEach(v => { v.muted = false v.defaultMuted = false }) }, 1000)...
Hello. The Edge split screen feature introduced a lot of changes that aren't reflected in the extensions API. A few things I noticed investigating this issue. 1. For the `tabs`API,...