1 // ==UserScript==
2 // @name 自动评论新版
3 // @namespace http://tampermonkey.net/
4 // @version 0.1
5 // @description try to take over the world!
6 // @author You
7 // @match https://blog.csdn.net/*
8 // @grant none
9 // ==/UserScript==
10 (function() {
11 // 等待两秒钟再进行评论
12 setTimeout(function(){
13
14 var c=["本条消息自动评论","别看啦,程序自己写的评论","喧闹的世界,收下这条来自机器的评论吧!"];
15 var n = -1;
16 var m = 3;
17 var temp_count = Math.floor(Math.random()*(n-m+1))+m;//取m-n之间的随机数 [m,n]
18
19 document.getElementsByClassName("tool-item-comment")[0].click();//能够打开评论区啦
20
21 document.getElementById("comment_content").value = c[temp_count];//能够赋值啦
22
23
24 document.getElementsByClassName("btn-comment")[0].click();//发表评论成功!
25
26 },2000);//ajax do something
27 })();