// ==UserScript== // @name Reuters Video Unmute // @namespace https://greasyfork.org/users/28298 // @version 0.1 // @description Auto unmute Reuters Video! // @author Jerry // @match *://www.reuters.com/video/* // @icon https://www.google.com/s2/favicons?sz=64&domain=reuters.com // @noframes // @license GNU GPLv3 // @require https://greasyfork.org/scripts/456410-gmlibrary/code/GMLibrary.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; findx('//button[@title="Unmute"]').click() })(); // end of main function