// ==UserScript== // @name 企鹅标注自动播放 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 进入任务后点击播放按钮一次 // @author Jiyao // @match https://qlabel.tencent.com/workbench/tasks/* // @license AGPL-3.0 // @grant GM_addStyle // @grant GM_addElement // @run-at document-idle // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.getElementById("pp").click(); })();