我一直在努力制作能够自动评论YouTube视频的内容。到目前为止,我已尝试过这个开关,我是脚本的新手,所以请原谅我。
enter code here
// ==UserScript==
// @name YouTube auto chat
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Auto comments on all youtube videos you open
// @author BoBgames
// @match https://www.youtube.com
// @grant none
// ==/UserScript==
(function(comment) {
'use strict';
// Your code here...
function partA(w) {
window.setTimeout(partB,10000);
}
function partB() {
}
document.getElementById(".comment-simplebox-render-collapsed-content").click();
$("comment-simplebox-render-collapsed-content").sendkeys('1234');
$("comment-simplebox-render-collapsed-content").focus();
})();
我不确定我是否正在尝试调用正确的元素,或者我是否正确地执行此操作。