-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.js
64 lines (49 loc) · 1.91 KB
/
content.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// стандартные настройки
var delay = 30; // количество секунд между бампами
var message = 'Бамп'; // стандартное сообщение для бампа
// слушаем событие начала бампа с попапа
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
if( request.message === "start" ) {
start_autobump(delay, message);
}
}
);
// функция, начинающая автобамп
function start_autobump(delay, message) {
console.log('Starting autobump...');
// парсим с URL код текущей доски и номер треда
if (window.location.pathname.split('/')[2] == 'res') {
var url = window.location.pathname.split('/');
var board = url[1];
var thread = parseInt(url[3]);
// добавляем бамп-пост каждые delay секунд
setInterval(function() {
addPost(board, thread, message);
}, delay * 1000);
console.log('Autobump started...');
} else {
console.log('Для работы расширения должен быть открыт тред...');
alert('Для начала автобампа откройте вкладку с тредом');
}
}
// универсальная функция отправки сообщения на Двач на основе API
function addPost(board, thread, message) {
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://2ch.hk/makaba/posting.fcgi?json=1', true);
xhr.send(
'task=post' +
'&' + 'board=' + board +
'&' + 'thread=' + thread +
'&' + 'comment=' + message +
'&' + 'captcha_type=recaptcha'
);
xhr.onreadystatechange = function() {
if (xhr.readyState != 4) return;
if (xhr.status != 200) {
console.log('Абу шатает макабу', xhr.status + ': ' + xhr.statusText);
} else {
console.log('Bumped!');
}
}
}