We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Chrome youtube elapsed time text is broken. & keyword is shown frequently.
&
Screenshots
After checking the code, There seems to be a problem with the script that shows the elapsed time of Chrome YouTube.
if hh is 0 then set position to mm & ":" & ss else set position to hh & ":" & mm & ":" & ss end if
it should be
if hh is 0 then set position to "" & mm & ":" & ss else set position to "" & hh & ":" & mm & ":" & ss end if
It looks like mm and hh is not a text in some cases.
mm
hh
After change. it works fine.
Details:
The text was updated successfully, but these errors were encountered:
Web Tool - Youtube Chrome Open > Duration has the same problem.
Web Tool - Youtube Chrome Open > Duration
It should be
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Chrome youtube elapsed time text is broken.
&
keyword is shown frequently.Screenshots
After checking the code,
There seems to be a problem with the script that shows the elapsed time of Chrome YouTube.
it should be
It looks like
mm
andhh
is not a text in some cases.After change. it works fine.
Details:
The text was updated successfully, but these errors were encountered: