Created
October 13, 2015 09:05
-
-
Save Ashton-W/6a84438b2e67474bc1ad to your computer and use it in GitHub Desktop.
User script that removes max-height of WWDC video transcripts, no more scrolls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name WWDC Video Transcripts No Scroll | |
// @namespace http://wwdc/ | |
// @version 0.1 | |
// @description removes max-height of WWDC video transcripts, no more scrolls | |
// @author You | |
// @include https://developer.apple.com/videos/play/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle(".view-play .main .supplements .transcript { max-height: none !important; }"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment