mirror of
https://github.com/peter-tanner/Echo360-Super-Speed-Userscript.git
synced 2024-11-30 10:00:15 +08:00
Add canada echo360 domain echo360.ca to @include
(https://support.echo360.com/hc/en-us/articles/11062438116237-EchoVideo-Recommended-Browsers)
This commit is contained in:
parent
fdafb33389
commit
fb63da88fc
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
### [Mirror (Greasyfork)](https://greasyfork.org/en/scripts/501694-echo360-super-speed)
|
### [Mirror (Greasyfork)](https://greasyfork.org/en/scripts/501694-echo360-super-speed)
|
||||||
|
|
||||||
Adds faster speed options (4x, 3x) to Echo360 player and allows the user to add their own speed options.
|
Adds faster speed options (4x, 3x) to Echo360 player and allows the user to add their own speed options. Works on Chromium (Google Chrome, Brave, etc.) and Firefox
|
||||||
|
|
||||||
![Dropdown with 4x and 3x speeds](superspeed.png)
|
![Dropdown with 4x and 3x speeds](superspeed.png)
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ For example, if I wanted only 4x, 3x and 2x options, I can replace the `selected
|
||||||
const selected_speeds = [4, 3, 2];
|
const selected_speeds = [4, 3, 2];
|
||||||
```
|
```
|
||||||
|
|
||||||
⚠ Note that there is a browser set limit of 16x, and speeds above 4x are muted, according to [these constants in the firefox source code](https://searchfox.org/mozilla-central/rev/f1c881ba5603410dacbe52874053af38bd825c3b/dom/html/HTMLMediaElement.cpp#179-183)
|
⚠ Note that there is a browser-set speed limit of 16x and speeds above 4x are muted, according to [the constants set in the brower's source](https://stackoverflow.com/a/32320020). This applies to both Firefox and Chromium.
|
||||||
|
|
||||||
## Current issues
|
## Current issues
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,9 @@
|
||||||
// @include *://echo360.net.au/*
|
// @include *://echo360.net.au/*
|
||||||
// @include *://echo360.org.uk/*
|
// @include *://echo360.org.uk/*
|
||||||
// @include *://echo360.org/*
|
// @include *://echo360.org/*
|
||||||
|
// @include *://echo360.ca/*
|
||||||
// @include *://echo360.org.au/*
|
// @include *://echo360.org.au/*
|
||||||
// @version 1.1
|
// @version 1.2
|
||||||
// @author Peter Tanner
|
// @author Peter Tanner
|
||||||
// @namespace https://github.com/peter-tanner/Echo360-Super-Speed-Userscript/
|
// @namespace https://github.com/peter-tanner/Echo360-Super-Speed-Userscript/
|
||||||
// @supportURL https://github.com/peter-tanner/Echo360-Super-Speed-Userscript/issues
|
// @supportURL https://github.com/peter-tanner/Echo360-Super-Speed-Userscript/issues
|
||||||
|
|
Loading…
Reference in New Issue
Block a user