Makes the built-in transcript for LinkedIn Learning videos scrollable.
Scrollable Transcript for LinkedIn Learning by strawberry-meowcow
Details
Authorstrawberry-meowcow
LicenseNo License
Categoryhttps://www.linkedin.com/learning
Created
Updated
Size548 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
It doesn't autoscroll; you have to scroll manually, but it's useful if you want to view the video and the transcript at the same time.
Source code
/* ==UserStyle==
@name Scrollable Transcript for LinkedIn Learning
@version 20240720.19.44
@namespace https://userstyles.world/user/HoloBones
@description All it does is make the built in transcript for LinkedIn Learning scrollable. It unfortunately doesn't autoscroll. This is great if you want to be able to read the transcript while watching the video.
@author HoloBones
==/UserStyle== */
@-moz-document url-prefix("https://www.linkedin.com/learning") {
.classroom-transcript {
height: 25em;
overflow: scroll;
}
}