Greasy Fork is available in English.
Auto unmute Reuters Video!
当前为
// ==UserScript==
// @name Reuters Video Unmute
// @namespace http://greasyfork.icu/users/28298
// @version 0.2
// @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 http://greasyfork.icu/scripts/456410-gmlibrary/code/GMLibrary.js
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){findx('//button[@title="Unmute"]').click()}, 1000);
})(); // end of main function