Reuters Video Unmute

Auto unmute Reuters Video!

目前為 2022-12-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Reuters Video Unmute
// @namespace    https://greasyfork.org/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      https://greasyfork.org/scripts/456410-gmlibrary/code/GMLibrary.js
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function(){findx('//button[@title="Unmute"]').click()}, 1000);
})(); // end of main function