This file contains hidden or 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 Open all unread messages button for OpenU messages system | |
// @version 0.1 | |
// @description adding "Mark all as read" button in the messages system | |
// @author Roey | |
// @match https://sheilta.apps.openu.ac.il/Main/Messages/* | |
// @license MIT | |
// ==/UserScript== | |
(function() { |
This file contains hidden or 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
var speed = 2; | |
var iframe = document.getElementById('iframe_player'); | |
var innerDoc = iframe.contentDocument || iframe.contentWindow.document; | |
innerDoc.getElementsByTagName('video')[0].playbackRate = speed; |