1. // ==UserScript==
  2. // @name Fast Youtube embedded player
  3. // @description Fast HTML5 direct playback at 720p is used when selected and available. The script also hugely improves load speed of pages with lots of embedded Youtube videos by instantly showing clickable and immediately accessible placeholders, then the thumbnails are loaded in background.
  4. // @version 1.5.3
  5. // @include *
  6. // @exclude https://www.youtube.com/*
  7. // @author wOxxOm
  8. // @namespace wOxxOm.scripts
  9. // @license MIT License
  10. // @grant GM_getValue
  11. // @grant GM_setValue
  12. // @grant GM_addStyle
  13. // @grant GM_xmlhttpRequest
  14. // @connect-src www.youtube.com
  15. // @connect www.youtube.com
  16. // @run-at document-start
  17. // ==/UserScript==
  18.  
  19. /* jshint lastsemic:true, multistr:true, laxbreak:true, -W030, -W041, -W084 */
  20.  
  21. var resizeToFit = GM_getValue('resize', true);
  22. var playHTML5 = GM_getValue('playHTML5', false);
  23. var skipCustom = GM_getValue('skipCustom', false);
  24.  
  25. var embedSelector;
  26. initEmbedSelector();
  27.  
  28. function initEmbedSelector() {
  29. embedSelector = 'iframe[src*="youtube.com/embed"]~~~, embed[src*="youtube.com/v"]~~~'
  30. .replace(/~~~/g, skipCustom ? ':not([src*="enablejsapi=1"])' : '');
  31. }
  32.  
  33. processEmbeds(document.querySelectorAll(embedSelector));
  34.  
  35. document.addEventListener('DOMContentLoaded', function() {
  36. if (resizeToFit)
  37. adjustNodes();
  38. injectStylesIfNeeded();
  39. });
  40.  
  41. window.addEventListener('resize', function() {
  42. if (resizeToFit)
  43. adjustNodes();
  44. });
  45.  
  46. var mutQueue = [];
  47. new MutationObserver(function(mutations) {
  48. mutQueue.push(mutations);
  49. if (mutations.length < 100)
  50. processQueue();
  51. else
  52. setTimeout(processQueue, 0);
  53. }).observe(document, {subtree:true, childList:true});
  54.  
  55. function processQueue() {
  56. while (mutQueue.length) {
  57. var mutationBatch = mutQueue.shift();
  58. for (var m=0, ml=mutationBatch.length, mutation; (m<ml) && (mutation=mutationBatch[m]); m++) {
  59. for (var n=0, nodes=mutation.addedNodes, nl=nodes.length, node; (n<nl) && (node=nodes[n]); n++) {
  60. if (node.nodeType != 1) // skip non-ELEMENT_NODE
  61. continue;
  62. if (node.localName == 'iframe' || node.localName == 'embed') {
  63. if (node.matches(embedSelector))
  64. processEmbeds([node]);
  65. }
  66. else if (node.children.length) {
  67. var embeds = node.querySelectorAll(embedSelector);
  68. if (embeds.length)
  69. processEmbeds(embeds);
  70. }
  71. }
  72. }
  73. }
  74. }
  75.  
  76. function processEmbeds(nodes) {
  77. for (var i=0, nl=nodes.length, n; i<nl && (n=nodes[i]); i++) {
  78. if (!n.parentNode ||
  79. n.className.indexOf('instant-youtube-') >= 0 ||
  80. n.src.indexOf('autoplay=1') > 0 ||
  81. n.onload && getComputedStyle(n.parentNode).display == 'none' // skip some retarded loaders
  82. )
  83. continue;
  84.  
  85. var id = n.src.match(/(?:embed\/|v[=\/])([^\s,.()\[\]?]+?)(?:[&?\/].*|$)/);
  86. if (!id)
  87. continue;
  88. id = id[1];
  89.  
  90. // np = parent node with nonzero width (i.e. independent of our video element), used in fit-to-width mode
  91. var np = n.parentNode, npw;
  92. while (np && !(npw=np.clientWidth))
  93. np = np.parentNode;
  94.  
  95. var containerWidth = resizeToFit ? npw : n.clientWidth;
  96. var containerHeight = resizeToFit ? npw / 16 * 9 : n.clientHeight;
  97.  
  98. var div = document.createElement('div');
  99. div.className = 'instant-youtube-container';
  100. div.srcEmbed = n.src;
  101. div.style.maxWidth = containerWidth + 'px';
  102. div.style.height = containerHeight + 'px';
  103. div.originalWidth = n.width;
  104. div.originalHeight = n.height;
  105. div.videoID = id;
  106.  
  107. var wrapper = div.appendChild(document.createElement('div'));
  108. wrapper.className = 'instant-youtube-wrapper';
  109.  
  110. var img = wrapper.appendChild(document.createElement('img'));
  111. img.className = 'instant-youtube-thumbnail';
  112. img.src = 'https://i.ytimg.com/vi/' + id + '/maxresdefault.jpg';
  113. if (n.clientHeight) {
  114. img.style.maxWidth = 'auto';
  115. img.style.width = (containerHeight / 9 * 16) + 'px';
  116. img.style.marginLeft = Math.round((containerWidth - containerHeight / 9 * 16) / 2) + 'px';
  117. }
  118. img.title = 'Shift-click to use alternative player';
  119. img.onload = function(e) {
  120. var img = e.target;
  121. if (img.naturalWidth <= 120)
  122. img.onerror(e);
  123. else {
  124. img.style.marginTop = ((img.parentNode.clientHeight - img.clientHeight) / 2).toFixed(1) + 'px';
  125. img.style.setProperty('opacity', '1');
  126. }
  127. if (img.parentNode.iframeHasLoader)
  128. img.parentNode.parentNode.style.display = '';
  129. };
  130. img.onerror = function(e) {
  131. var img = e.target;
  132. if (img.src.indexOf('maxresdefault') > 0)
  133. img.src = img.src.replace('maxresdefault','hqdefault');
  134. };
  135.  
  136. GM_xmlhttpRequest({
  137. method: 'GET',
  138. url: div.srcEmbed.replace(/\/(embed\/|v[=\/])/, '/watch?v='),
  139. context: div,
  140. onload: parseWatchPage
  141. });
  142.  
  143. wrapper.insertAdjacentHTML('beforeend', '\
  144. <svg class="instant-youtube-play-button"><path fill-rule="evenodd" clip-rule="evenodd" fill="#1F1F1F" class="ytp-large-play-button-svg" d="M84.15,26.4v6.35c0,2.833-0.15,5.967-0.45,9.4c-0.133,1.7-0.267,3.117-0.4,4.25l-0.15,0.95c-0.167,0.767-0.367,1.517-0.6,2.25c-0.667,2.367-1.533,4.083-2.6,5.15c-1.367,1.4-2.967,2.383-4.8,2.95c-0.633,0.2-1.316,0.333-2.05,0.4c-0.767,0.1-1.3,0.167-1.6,0.2c-4.9,0.367-11.283,0.617-19.15,0.75c-2.434,0.034-4.883,0.067-7.35,0.1h-2.95C38.417,59.117,34.5,59.067,30.3,59c-8.433-0.167-14.05-0.383-16.85-0.65c-0.067-0.033-0.667-0.117-1.8-0.25c-0.9-0.133-1.683-0.283-2.35-0.45c-2.066-0.533-3.783-1.5-5.15-2.9c-1.033-1.067-1.9-2.783-2.6-5.15C1.317,48.867,1.133,48.117,1,47.35L0.8,46.4c-0.133-1.133-0.267-2.55-0.4-4.25C0.133,38.717,0,35.583,0,32.75V26.4c0-2.833,0.133-5.95,0.4-9.35l0.4-4.25c0.167-0.966,0.417-2.05,0.75-3.25c0.7-2.333,1.567-4.033,2.6-5.1c1.367-1.434,2.967-2.434,4.8-3c0.633-0.167,1.333-0.3,2.1-0.4c0.4-0.066,0.917-0.133,1.55-0.2c4.9-0.333,11.283-0.567,19.15-0.7C35.65,0.05,39.083,0,42.05,0L45,0.05c2.467,0,4.933,0.034,7.4,0.1c7.833,0.133,14.2,0.367,19.1,0.7c0.3,0.033,0.833,0.1,1.6,0.2c0.733,0.1,1.417,0.233,2.05,0.4c1.833,0.566,3.434,1.566,4.8,3c1.066,1.066,1.933,2.767,2.6,5.1c0.367,1.2,0.617,2.284,0.75,3.25l0.4,4.25C84,20.45,84.15,23.567,84.15,26.4z M33.3,41.4L56,29.6L33.3,17.75V41.4z"></path><polygon fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" points="33.3,41.4 33.3,17.75 56,29.6"></polygon></svg>\
  145. <span class="instant-youtube-link">' + (playHTML5 ? 'Play with Youtube player' : 'Play directly (up to 720p)') + '</span>\
  146. <div class="instant-youtube-options">\
  147. <label>Resize to fit <input data-action="resize" type="checkbox"' + (resizeToFit ? ' checked' : '') + '></label>\
  148. <label title="Tip: shift-clicking thumbnails will use alternative player">\
  149. Play directly <input data-action="direct" type="checkbox"' + (playHTML5 ? ' checked' : '') + '></label>\
  150. <label title="Do not process customized videos with enablejsapi=1 parameter">Safe <input data-action="safe" type="checkbox"' + (skipCustom ? ' checked' : '') + '></label>\
  151. </div>\
  152. ');
  153.  
  154. if (n.parentNode.localName == 'object')
  155. n = n.parentNode;
  156. n.parentNode.insertBefore(div, n);
  157. n.remove();
  158.  
  159. div.addEventListener('click', clickHandler);
  160. }
  161.  
  162. injectStylesIfNeeded();
  163. return true;
  164. }
  165.  
  166. function adjustNodes() {
  167. var nearest = null, minDistance = window.innerHeight;
  168. var vids = [].slice.call(document.getElementsByClassName('instant-youtube-container'));
  169. vids.forEach(function(n) {
  170. var bounds = n.getBoundingClientRect();
  171. var distance = Math.abs((bounds.bottom + bounds.top)/2 - window.innerHeight/2);
  172. if (distance < minDistance) {
  173. minDistance = distance;
  174. nearest = n;
  175. }
  176. });
  177. var resized = false;
  178. vids.forEach(function(n) {
  179. if (Math.abs(n.parentNode.clientWidth - parseFloat(n.style.maxWidth)) > 2) {
  180. var img = n.getElementsByClassName('instant-youtube-thumbnail')[0];
  181. var npw = n.parentNode.clientWidth;
  182. var nph = npw / 16 * 9;
  183. n.style.maxWidth = img.style.width = npw + 'px';
  184. n.style.height = nph + 'px';
  185. img.style.marginLeft = Math.round((npw - nph / 9 * 16) / 2) + 'px';
  186. img.style.marginTop = ((nph - img.clientHeight) / 2).toFixed(1) + 'px';
  187. resized = true;
  188. }
  189. });
  190. if (resized && nearest)
  191. setTimeout(function() {
  192. nearest.scrollIntoView();
  193. }, 100);
  194. }
  195.  
  196. function parseWatchPage(response) {
  197. var div = response.context;
  198. var m = response.responseText.match(/ytplayer\.config\s*=\s*(\{.+?\});\s*ytplayer\.load/);
  199. var videoInfo = [];
  200. if (m) {
  201. var cfg = JSON.parse(m[1]), streams = {};
  202. cfg.args.url_encoded_fmt_stream_map.split(',').forEach(function(stream) {
  203. var params = {};
  204. stream.split('&').forEach(function(kv) {
  205. params[kv.split('=')[0]] = decodeURIComponent(kv.split('=')[1]);
  206. });
  207. streams[params.itag] = params;
  208. });
  209. cfg.args.fmt_list.split(',').forEach(function(fmt) {
  210. var itag = fmt.split('/')[0];
  211. var dimensions = fmt.split('/')[1];
  212. var stream = streams[itag];
  213. if (stream) {
  214. videoInfo.push({
  215. src: stream.url,
  216. title: stream.quality + ', ' + dimensions + ', ' + stream.type
  217. });
  218. }
  219. });
  220. } else {
  221. var rx = /url=([^=]+?mime%3Dvideo%252F(?:mp4|webm)[^=]+?)(?:,quality|,itag|.u0026)/g;
  222. var text = response.responseText.split('url_encoded_fmt_stream_map')[1];
  223. while (m = rx.exec(text)) {
  224. videoInfo.push({
  225. src: decodeURIComponent(decodeURIComponent(m[1]))
  226. });
  227. }
  228. }
  229.  
  230. var title = response.responseText.match(/<title>(.+?)(?:\s*-\s*YouTube)?<\/title>/);
  231. if (title) {
  232. var duration = response.responseText.match(/<meta itemprop="duration" content="\D*(\d+.*?)S?">/);
  233. var a = div.firstElementChild.appendChild(document.createElement('a'));
  234. a.className = 'instant-youtube-persistent-title';
  235. a.innerHTML = '<strong>' + title[1] + '</strong>' +
  236. (duration ? '<span>' + duration[1].replace(/[HM]/, ':0').replace(/\b0(\d\d)/, '$1') + '</span>' : '');
  237. a.href = 'https://www.youtube.com/watch?v=' + div.videoID;
  238. a.target = '_blank';
  239. ['animation', 'webkitAnimation', 'mozAnimation'].some(function(prop) {
  240. if (prop in a.style) {
  241. a.style[prop] = 'instant-youtube-fadein 1s ease-in';
  242. setTimeout(function() { a.style[prop] = '' }, 1000);
  243. return true;
  244. }
  245. });
  246. }
  247.  
  248. if (videoInfo.length)
  249. div.videoInfo = videoInfo;
  250.  
  251. injectStylesIfNeeded();
  252. }
  253.  
  254. function clickHandler(e) {
  255. if (e.target.href)
  256. return;
  257. if (e.target.closest('.instant-youtube-options'))
  258. return options(e);
  259. div = e.target.closest('.instant-youtube-container');
  260. div.removeEventListener('click', clickHandler);
  261. div.querySelector('svg').outerHTML = '<span class="instant-youtube-loading-button"></span>';
  262.  
  263. var alternateMode = e.shiftKey || e.target.className == 'instant-youtube-link';
  264. if (div.videoInfo && (!!playHTML5 + !!alternateMode == 1))
  265. playDirectly(div);
  266. else
  267. switchToIFrame.call(div);
  268. }
  269.  
  270. function playDirectly(div) {
  271. div.querySelector('.instant-youtube-options').style.display = 'none';
  272. div.querySelector('.instant-youtube-link').style.display = 'none';
  273.  
  274. var video = document.createElement('video');
  275. video.controls = true;
  276. video.autoplay = true;
  277. video.width = div.clientWidth;
  278. video.height = div.clientHeight;
  279. video.className = 'instant-youtube-embed';
  280. video.volume = GM_getValue('volume', 0.5);
  281.  
  282. div.videoInfo.forEach(function(src) {
  283. var srcdom = video.appendChild(document.createElement('source'));
  284. Object.keys(src).forEach(function(k) { srcdom[k] = src[k] });
  285. srcdom.onerror = switchToIFrame.bind(div);
  286. });
  287.  
  288.  
  289. if (window.chrome) {
  290. video.addEventListener('click', function(e) {
  291. this.paused ? this.play() : this.pause();
  292. });
  293. }
  294. video.interval = (function() {
  295. return setInterval(function() {
  296. if (video.volume != GM_setValue('volume', 0.5))
  297. GM_setValue('volume', video.volume);
  298. }, 1000);
  299. })();
  300. var title = div.querySelector('.instant-youtube-persistent-title');
  301. if (title) {
  302. video.onpause = function() { title.removeAttribute('hidden') };
  303. video.onplay = function() { title.setAttribute('hidden', true) };
  304. }
  305. video.onloadeddata = function(e) {
  306. pauseOtherVideos(this);
  307. div.firstElementChild.appendChild(this);
  308. this.style.opacity = 1;
  309. var img = div.querySelector('img');
  310. img.style.transition = 'opacity 1s';
  311. img.style.opacity = 0;
  312. };
  313. }
  314.  
  315. function switchToIFrame(e) {
  316. var div = this;
  317. if (e) console.log('Direct linking failed on %s, switching to IFRAME player', div.srcEmbed);
  318. var iframeHTML = '<iframe class="instant-youtube-embed" allowtransparency="true" src="' +
  319. div.srcEmbed.replace('/v/', '/embed/') +
  320. (div.srcEmbed.indexOf('?') > 0 ? '&' : '?') +
  321. 'html5=1' +
  322. '&autoplay=1' +
  323. '&autohide=2' +
  324. '&border=0' +
  325. '&controls=1' +
  326. '&fs=1' +
  327. '&showinfo=1' +
  328. '&ssl=1' +
  329. '&theme=dark' +
  330. '&enablejsapi=1' +
  331. '" frameborder="0" allowfullscreen width="' + div.clientWidth + '" height="' + div.clientHeight + '"></iframe>';
  332. div.firstElementChild.insertAdjacentHTML('beforeend', iframeHTML);
  333.  
  334. div.firstElementChild.lastElementChild.onload = function() {
  335. pauseOtherVideos(this);
  336. this.style.opacity = 1;
  337.  
  338. var div = this.closest('.instant-youtube-container');
  339. div.setAttribute('iframe', '');
  340. setTimeout(function() {
  341. div.querySelector('img').style.display = 'none';
  342. var title = div.querySelector('.instant-youtube-persistent-title');
  343. if (title)
  344. title.remove();
  345. }, 2000);
  346. };
  347. if (e && e.target) {
  348. var video = e.target.parentNode;
  349. while (video.lastElementChild)
  350. video.lastElementChild.remove();
  351. }
  352. }
  353.  
  354. function pauseOtherVideos(activePlayer) {
  355. [].forEach.call(activePlayer.ownerDocument.getElementsByClassName('instant-youtube-embed'), function(v) {
  356. if (v == activePlayer)
  357. return;
  358. switch (v.localName) {
  359. case 'video':
  360. if (!v.paused)
  361. v.pause();
  362. break;
  363. case 'iframe':
  364. (function() { try { v.contentWindow.postMessage('{"event":"command", "func":"pauseVideo", "args":""}', '*') } catch(e) {} })();
  365. break;
  366. }
  367. });
  368. }
  369.  
  370. function options(e) {
  371. var action = e.target.dataset.action;
  372. var state = e.target.checked;
  373. switch (action) {
  374. case 'resize':
  375. resizeToFit = state;
  376. GM_setValue('resize', resizeToFit);
  377. [].forEach.call(document.querySelectorAll('div.instant-youtube-container'), function(n) {
  378. var w = n.originalWidth, h = n.originalHeight, img = n.querySelector('img');
  379. if (resizeToFit) {
  380. for (var np=n.parentNode, npw; np && !(npw=np.clientWidth); np=np.parentNode) {}
  381. w = npw;
  382. h = npw / 16 * 9;
  383. }
  384. n.style.maxWidth = w + 'px';
  385. n.style.height = h + 'px';
  386. img.style.width = (h / 9 * 16) + 'px';
  387. img.style.marginLeft = Math.round((w - h / 9 * 16) / 2) + 'px';
  388. img.style.marginTop = ((h - img.clientHeight) / 2).toFixed(1) + 'px';
  389. n.querySelector('[data-action="resize"]').checked = resizeToFit;
  390. var video = n.querySelector('video');
  391. if (video) {
  392. video.width = w;
  393. video.height = h;
  394. }
  395. });
  396. break;
  397. case 'direct':
  398. playHTML5 = state;
  399. GM_setValue('playHTML5', playHTML5);
  400. [].forEach.call(document.querySelectorAll('div.instant-youtube-container'), function(div) {
  401. div.querySelector('span.instant-youtube-link').textContent = playHTML5 ? 'Play with Youtube player' : 'Play directly (up to 720p)';
  402. div.querySelector('[data-action="direct"]').checked = playHTML5;
  403. });
  404. break;
  405. case 'safe':
  406. skipCustom = state;
  407. initEmbedSelector();
  408. break;
  409. }
  410. }
  411.  
  412. function injectStylesIfNeeded() {
  413. if (document.head.innerHTML.indexOf('.instant-youtube-container') > 0)
  414. return;
  415. GM_addStyle('\
  416. .instant-youtube-container {contain:strict; position:relative; overflow:hidden; cursor:pointer; background-color:black; padding:0; margin:0; font:normal 14px/1.0 sans-serif,Arial,Helvetica,Verdana;}\
  417. .instant-youtube-container .instant-youtube-wrapper {width:100%; height:100%}\
  418. .instant-youtube-container .instant-youtube-thumbnail {transition:opacity 0.1s ease-out; opacity:0; padding:0; margin:0}\
  419. .instant-youtube-container .instant-youtube-play-button {position:absolute; left:0; right:0; top:0; bottom:0; margin:auto; width:85px; height:60px}\
  420. .instant-youtube-container .instant-youtube-loading-button {position:absolute; left:0; right:0; top:0; bottom:0; padding:0; margin:auto; display:block; width:20px; height:20px; background: url("data:image/gif;base64,R0lGODlhFAAUAJEDAMzMzLOzs39/f////yH/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgADACwAAAAAFAAUAAACPJyPqcuNItyCUJoQBo0ANIxpXOctYHaQpYkiHfM2cUrCNT0nqr4uudsz/IC5na/2Mh4Hu+HR6YBaplRDAQAh+QQFCgADACwEAAIADAAGAAACFpwdcYupC8BwSogR46xWZHl0l8ZYQwEAIfkEBQoAAwAsCAACAAoACgAAAhccMKl2uHxGCCvO+eTNmishcCCYjWEZFgAh+QQFCgADACwMAAQABgAMAAACFxwweaebhl4K4VE6r61DiOd5SfiN5VAAACH5BAUKAAMALAgACAAKAAoAAAIYnD8AeKqcHIwwhGntEWLkO3CcB4biNEIFACH5BAUKAAMALAQADAAMAAYAAAIWnDSpAHa4GHgohCHbGdbipnBdSHphAQAh+QQFCgADACwCAAgACgAKAAACF5w0qXa4fF6KUoVQ75UaA7Bs3yeNYAkWACH5BAUKAAMALAIABAAGAAwAAAIXnCU2iMfaRghqTmMp1moAoHyfIYIkWAAAOw==")}\
  421. .instant-youtube-container:hover .ytp-large-play-button-svg {fill:#CC181E}\
  422. .instant-youtube-container .instant-youtube-link, .instant-youtube-container .instant-youtube-link:link, .instant-youtube-container .instant-youtube-link:visited, .instant-youtube-container .instant-youtube-link:active, .instant-youtube-container .instant-youtube-link:focus {\
  423. position:absolute; top:50%; left:0; right:0; width:20em; height:1.7em; margin:60px auto; padding:0; border:none; \
  424. display:block; text-align:center; text-decoration:none; color:white; text-shadow:1px 1px 3px black; font-weight:bold;\
  425. }\
  426. .instant-youtube-container span.instant-youtube-link {font-weight:normal; font-size:12px}\
  427. .instant-youtube-container .instant-youtube-link:hover {color:white; text-decoration:underline; background:transparent}\
  428. .instant-youtube-container .instant-youtube-embed {position:absolute; left:0; top:0; padding:0; margin:0; height:inherit!important; opacity:0; transition:opacity 2s!important}\
  429. .instant-youtube-container iframe {z-index:10}\
  430. .instant-youtube-container .instant-youtube-persistent-title {\
  431. display:block; z-index:9; background-color:rgba(0,0,0,0.5); color:white;\
  432. width:100%; height: 1.9em; top:0; left:0; right:0; position:absolute; z-index: 9;\
  433. color:white; text-shadow:1px 1px 2px black; text-align:center; text-decoration:none;\
  434. margin:0; padding:0.5em 0.5em 0.2em; border:none;\
  435. }\
  436. .instant-youtube-container .instant-youtube-persistent-title strong:after {content:" - watch on Youtube"; font-weight:normal; margin-right:1ex}\
  437. .instant-youtube-container .instant-youtube-persistent-title span {color:inherit}\
  438. .instant-youtube-container .instant-youtube-persistent-title span:before {content:"("}\
  439. .instant-youtube-container .instant-youtube-persistent-title span:after {content:")"}\
  440. @-webkit-keyframes instant-youtube-fadein { from {opacity:0} to {opacity:1} }\
  441. @-moz-keyframes instant-youtube-fadein { from {opacity:0} to {opacity:1} }\
  442. @keyframes instant-youtube-fadein { from {opacity:0} to {opacity:1} }\
  443. .instant-youtube-container:not(:hover) .instant-youtube-persistent-title[hidden] {display:none; margin:0}\
  444. .instant-youtube-container .instant-youtube-persistent-title:hover {text-decoration:underline}\
  445. .instant-youtube-container .instant-youtube-persistent-title strong {color:white}\
  446. .instant-youtube-container .instant-youtube-options {position:absolute; right:2px; bottom:0; color:white; text-shadow:1px 1px 2px black; padding:0; margin:0; opacity:0.6}\
  447. .instant-youtube-container .instant-youtube-options:hover {opacity:1; background:rgba(0,0,0,0.5); padding-left:1ex;}\
  448. .instant-youtube-container .instant-youtube-options * {display:inline; color:white; font-size:13px; vertical-align:middle; padding:0; margin:0}\
  449. ');
  450. }