forked from SthephanShinkufag/Dollchan-Extension-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDollchan_Extension_Tools.user.js
6839 lines (6511 loc) · 206 KB
/
Dollchan_Extension_Tools.user.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name Dollchan Extension Tools
// @version 12.6.28.0
// @namespace http://www.freedollchan.org/scripts/*
// @author Sthephan Shinkufag @ FreeDollChan
// @copyright (C)2084, Bender Bending Rodriguez
// @description Doing some profit for imageboards
// @icon https://raw.github.com/SthephanShinkufag/Dollchan-Extension-Tools/stable/Icon.png
// @updateURL https://raw.github.com/SthephanShinkufag/Dollchan-Extension-Tools/stable/Dollchan_Extension_Tools.meta.js
// @include *
// ==/UserScript==
(function (scriptStorage) {
'use strict';
var defaultCfg = {
'version': '12.6.28.0',
'language': 0, // script language [0=ru, 1=en]
'hideBySpell': 0, // hide posts by spells
'hideByWipe': 1, // antiwipe detectors:
'wipeSameLin': 1, // same lines
'wipeSameWrd': 1, // same words
'wipeLongWrd': 1, // long words
'wipeSpecial': 0, // special symbols
'wipeCAPS': 0, // cAsE, CAPS
'wipeNumbers': 1, // numbers
'filterThrds': 1, // apply filters to threads
'menuHiddBtn': 1, // menu on hide button
'viewHiddNum': 1, // view hidden on postnumber
'delHiddPost': 0, // delete hidden posts [0=off, 1=merge, 2=full hide]
'updThread': 1, // update threads [0=off, 1=auto, 2=click+count, 3=click]
'updThrDelay': '60', // threads update interval in sec
'favIcoBlink': 1, // favicon blinking, if new posts detected
'desktNotif': 0, // desktop notifications, if new posts detected
'expandPosts': 2, // expand shorted posts [0=off, 1=auto, 2=on click]
'expandImgs': 2, // expand images by click [0=off, 1=in post, 2=by center]
'maskImgs': 0, // mask images
'preLoadImgs': 0, // pre-load images
'findRarJPEG': 0, // detect rarJPEGs in images
'postBtnsTxt': 0, // show post buttons as text
'imgSrcBtns': 1, // add image search buttons
'noSpoilers': 1, // open spoilers
'noPostNames': 0, // hide post names
'noPostScrl': 1, // no scroll in posts
'keybNavig': 0, // keyboard navigation
'correctTime': 0, // correct time in posts
'timeOffset': '-2', // offset in hours
'timePattern': '', // replace pattern
'linksNavig': 2, // navigation by >>links [0=off, 1=no map, 2=+refmap]
'linksOver': '100', // delay appearance in ms
'linksOut': '1500', // delay disappearance in ms
'markViewed': 0, // mark viewed posts
'strikeHidd': 0, // strike >>links to hidden posts
'noNavigHidd': 0, // don't show previews for hidden posts
'insertNum': 1, // insert >>link on postnumber click
'addMP3': 1, // mp3 player by links
'addImgs': 1, // add images by links
'addYouTube': 3, // YouTube links embedder [0=off, 1=onclick, 2=player, 3=preview+player, 4=only preview]
'YTubeType': 0, // player type [0=flash, 1=HTML5 <iframe>, 2=HTML5 <video>]
'YTubeWidth': 360, // player width
'YTubeHeigh': 270, // player height
'YTubeHD': 0, // hd video quality
'YTubeTitles': 0, // convert links to titles
'addPostForm': 2, // postform displayed [0=at top, 1=at bottom, 2=hidden]
'noThrdForm': 1, // hide thread-creating form
'favOnReply': 1, // add thread to favorites on reply
'checkReply': 1, // reply without reload
'postSameImg': 1, // ability to post same images
'removeEXIF': 1, // remove EXIF data from JPEGs
'removeFName': 0, // remove file name
'addSageBtn': 1, // email field -> sage btn
'saveSage': 1, // remember sage
'sageReply': 0, // reply with sage
'captchaLang': 1, // language input in captcha [0=off, 1=en, 2=ru]
'addTextBtns': 1, // text format buttons [0=off, 1=graphics, 2=text, 3=usual]
'txtBtnsLoc': 0, // located at [0=top, 1=bottom]
'userName': 0, // user name
'nameValue': '', // value
'userPassw': 0, // user password
'passwValue': '', // value
'userSignat': 0, // user signature
'signatValue': '', // value
'noBoardRule': 1, // hide board rules
'noGoto': 1, // hide goto field
'noPassword': 1, // hide password field
'scriptStyle': 0, // script style [0=glass black, 1=glass blue, 2=gradient blue, 3=solid grey]
'expandPanel': 0, // show full main panel
'attachPanel': 1, // attach main panel
'panelCounter': 1, // posts/images counter in script panel
'rePageTitle': 1, // replace page title in threads
'animation': 1, // animation in script
'closePopups': 0, // auto-close popups
'updScript': 1, // check for script's update
'scrUpdIntrv': 2, // check interval in days (0=on page load)
'betaScrUpd': 0, // check for beta-version
'lastScrUpd': 0, // last update check
'textaWidth': 540, // textarea width
'textaHeight': 140 // textarea height
},
Lng = {
cfg: {
'hideBySpell': ['Заклинания: ', 'Magic spells: '],
'hideByWipe': ['Анти-вайп детекторы ', 'Anti-wipe detectors '],
'wipeSameLin': ['Повтор строк', 'Same lines'],
'wipeSameWrd': ['Повтор слов', 'Same words'],
'wipeLongWrd': ['Длинные слова', 'Long words'],
'wipeSpecial': ['Спецсимволы', 'Special symbols'],
'wipeCAPS': ['КАПС/реГисТР', 'CAPS/cAsE'],
'wipeNumbers': ['Числа', 'Numbers'],
'filterThrds': ['Применять фильтры к тредам', 'Apply filters to threads'],
'menuHiddBtn': ['Дополнительное меню кнопок скрытия ', 'Additional menu of hide buttons'],
'viewHiddNum': ['Просмотр скрытого по №поста*', 'View hidden on №postnumber*'],
'delHiddPost': {
sel: [['Не изменять', 'Объединять', 'Удалять'], ['Skip', 'Merge', 'Delete']],
txt: ['скрытые посты', 'hidden posts']
},
'updThread': {
sel: [['Откл.', 'Авто', 'Счет+клик', 'По клику'], ['Disable', 'Auto', 'Count+click', 'On click']],
txt: ['подгрузка постов в треде ', 'loading posts in thread ']
},
'updThrDelay': [' (сек)*', ' (sec)*'],
'favIcoBlink': ['мигать фавиконом при новых постах*', 'Favicon blinking on new posts*'],
'desktNotif': ['Уведомления на рабочем столе', 'Desktop notifications'],
'expandPosts': {
sel: [['Откл.', 'Авто', 'По клику'], ['Disable', 'Auto', 'On click']],
txt: ['загрузка сокращенных постов*', 'upload of shorted posts*']
},
'expandImgs': {
sel: [['Откл.', 'В посте', 'По центру'], ['Disable', 'In post', 'By center']],
txt: ['раскрывать изображения ', 'expand images ']
},
'preLoadImgs': ['Предварительно загружать изображения*', 'Pre-load images*'],
'findRarJPEG': ['Распознавать rarJPEG\'и в изображениях*', 'Detect rarJPEGs in images*'],
'postBtnsTxt': ['Кнопки постов в виде текста*', 'Show post buttons as text*'],
'imgSrcBtns': ['Добавлять кнопки для поиска изображений*', 'Add image search buttons*'],
'noSpoilers': ['Открывать спойлеры', 'Open spoilers'],
'noPostNames': ['Скрывать имена в постах', 'Hide names in posts'],
'noPostScrl': ['Без скролла в постах', 'No scroll in posts'],
'keybNavig': ['Навигация с помощью клавиатуры* ', 'Navigation with keyboard* '],
'correctTime': ['Корректировать время в постах* ', 'Correct time in posts* '],
'timeOffset': [' Разница во времени', ' Time difference'],
'timePattern': ['Шаблон замены', 'Replace pattern'],
'linksNavig': {
sel: [['Откл.', 'Без карты', 'С картой'], ['Disable', 'No map', 'With map']],
txt: ['навигация по >>ссылкам* ', 'navigation by >>links* ']
},
'linksOver': [' задержка появления (мс)', ' delay appearance (ms)'],
'linksOut': [' задержка пропадания (мс)', ' delay disappearance (ms)'],
'markViewed': ['Отмечать просмотренные посты*', 'Mark viewed posts*'],
'strikeHidd': ['Зачеркивать >>ссылки на скрытые посты', 'Strike >>links to hidden posts'],
'noNavigHidd': ['Не отображать превью для скрытых постов', 'Don\'t show previews for hidden posts'],
'insertNum': ['Вставлять >>ссылку по клику на №поста*', 'Insert >>link on №postnumber click*'],
'addMP3': ['Добавлять плейер к mp3-ссылкам* ', 'Add player to mp3-links* '],
'addImgs': ['Загружать изображения к .jpg-, .png-, .gif-ссылкам*', 'Load images to .jpg-, .png-, .gif-links*'],
'addYouTube': {
sel: [['Ничего', 'Плейер по клику', 'Авто плейер', 'Превью+плейер', 'Только превью'], ['Nothing', 'On click player', 'Auto player', 'Preview+player', 'Only preview']],
txt: ['к YouTube-ссылкам* ', 'to YouTube-links* ']
},
'YTubeType': {
sel: [['Flash', 'HTML5 iframe', 'HTML5 video'], ['Flash', 'HTML5 iframe', 'HTML5 video']],
txt: [' ', ' ']
},
'YTubeHD': ['HD ', 'HD '],
'YTubeTitles': ['Загружать названия к YouTube-ссылкам*', 'Load titles into YouTube-links*'],
'addPostForm': {
sel: [['Сверху', 'Внизу', 'Скрытая'], ['At top', 'At bottom', 'Hidden']],
txt: ['форма ответа в треде* ', 'reply form in thread* ']
},
'noThrdForm': ['Прятать форму создания треда', 'Hide thread creating form'],
'favOnReply': ['Добавлять тред в избранное при ответе', 'Add thread to favorites on reply'],
'checkReply': ['Постить ответ без перезагрузки*', 'Posting reply without reload*'],
'postSameImg': ['Возможность отправки одинаковых изображений', 'Ability to post same images'],
'removeEXIF': ['Удалять EXIF-данные из JPEG-изображений', 'Remove EXIF-data from JPEG-images'],
'removeFName': ['Удалять имя из отправляемых файлов', 'Remove name from uploaded files'],
'addSageBtn': ['Sage вместо поля E-mail* ', 'Sage button instead of E-mail field* '],
'saveSage': ['запоминать сажу', 'remember sage'],
'captchaLang': {
sel: [['Откл.', 'Eng', 'Rus'], ['Disable', 'Eng', 'Rus']],
txt: ['язык ввода капчи', 'language input in captcha']
},
'addTextBtns': {
sel: [['Откл.', 'Графич.', 'Упрощ.', 'Стандарт.'], ['Disable', 'As images', 'As text', 'Standard']],
txt: ['кнопки форматирования текста ', 'text format buttons ']
},
'txtBtnsLoc': ['внизу', 'at bottom'],
'userName': ['Постоянное имя', 'Fixed name'],
'userPassw': ['Постоянный пароль', 'Fixed password'],
'userSignat': ['Постоянная подпись', 'Fixed signature'],
'noBoardRule': ['правила ', 'rules '],
'noGoto': ['поле goto ', 'goto field '],
'noPassword': ['пароль', 'password'],
'scriptStyle': {
sel: [['Glass black', 'Glass blue', 'Gradient blue', 'Solid grey'], ['Glass black', 'Glass blue', 'Gradient blue', 'Solid grey']],
txt: [' стиль скрипта', ' script style']
},
'attachPanel': ['Прикрепить главную панель ', 'Attach main panel '],
'panelCounter': ['Счетчик постов/изображений в треде', 'Posts/images counter in thread'],
'rePageTitle': ['Название треда в заголовке вкладки*', 'Thread name in page title*'],
'animation': ['Включить анимацию в скрипте', 'Enable animation in script'],
'closePopups': ['Автоматически закрывать уведомления', 'Close popups automatically'],
'updScript': ['Включить авто-проверку на обновления', 'Enable Auto Update-сheck'],
'scrUpdIntrv': {
sel: [['Всегда', 'Каждый день', 'Каждые 2 дня', 'Каждую неделю', 'Каждые 2 недели', 'Каждый месяц'], ['Always', 'Every day', 'Every 2 days', 'Every week', 'Every 2 week', 'Every month']],
txt: ['Интервал проверки', 'Check interval']
},
'betaScrUpd': ['Проверять обновления для beta-версии', 'Check updates for beta-version'],
'language': {
sel: [['Ru', 'En'], ['Ru', 'En']],
txt: ['', '']
}
},
txtBtn: {
'Bold': ['Жирный', 'Bold'],
'Italic': ['Наклонный', 'Italic'],
'Under': ['Подчеркнутый', 'Underlined'],
'Strike': ['Зачеркнутый', 'Strike'],
'Spoil': ['Спойлер', 'Spoiler'],
'Code': ['Код', 'Code'],
'Quote': ['Цитировать выделенное', 'Quote selected']
},
cfgTab: {
'Filters': ['Фильтры', 'Filters'],
'Posts': ['Посты', 'Posts'],
'Links': ['Ссылки', 'Links'],
'Form': ['Форма', 'Form'],
'Common': ['Общее', 'Common'],
'Info': ['Инфо', 'Info']
},
panelBtn: {
'Settings': ['Настройки', 'Settings'],
'Hidden': ['Скрытое', 'Hidden'],
'Favor': ['Избранное', 'Favorites'],
'Refresh': ['Обновить', 'Refresh'],
'GoBack': ['Назад', 'Go back'],
'GoNext': ['Следующая', 'Next'],
'GoUp': ['Наверх', 'To the top'],
'GoDown': ['В конец', 'To the bottom'],
'NewThr': ['Создать тред', 'New thread'],
'ExpImg': ['Раскрыть картинки', 'Expand images'],
'MaskImg': ['Маскировать картинки', 'Mask images'],
'UpdOn': ['Автообновление треда', 'Thread autoupdate'],
'AudioOff': ['Звуковое оповещение о новых постах', 'Sound notification about new posts'],
'Catalog': ['Каталог', 'Catalog'],
'counter': ['Постов/Изображений в треде', 'Posts/Images in thread']
},
selHiderMenu: [
['Скрывать выделенное', 'Скрывать изображение', 'Скрыв. схожие изобр.', 'Скрыть схожий текст'],
['Hide selected text', 'Hide same images', 'Hide similar images', 'Hide similar text']
],
selExpandThrd: [
['5 постов', '15 постов', '30 постов', '50 постов', '100 постов'],
['5 posts', '15 posts', '30 posts', '50 posts', '100 posts']
],
selAjaxPages: [
['1 страница', '2 страницы', '3 страницы', '4 страницы', '5 страниц'],
['1 page', '2 pages', '3 pages', '4 pages', '5 pages']
],
selAudioNotif: [
['Каждые 30 сек.', 'Каждую минуту', 'Каждые 2 мин.', 'Каждые 5 мин.'],
['Every 30 sec.', 'Every minute', 'Every 2 min.', 'Every 5 min.']
],
add: ['Добавить', 'Add'],
apply: ['Применить', 'Apply'],
clear: ['Очистить', 'Clear'],
refresh: ['Обновить', 'Refresh'],
load: ['Загрузить', 'Load'],
save: ['Сохранить', 'Save'],
edit: ['Правка', 'Edit'],
reset: ['Сброс', 'Reset'],
remove: ['Удалить', 'Remove'],
info: ['Инфо', 'Info'],
undo: ['Отмена', 'Undo'],
loading: ['Загрузка...', 'Loading...'],
checking: ['Проверка...', 'Checking...'],
deleting: ['Удаление...', 'Deleting...'],
error: ['Ошибка:', 'Error:'],
noConnect: ['Ошибка подключения', 'Connection failed'],
thrdNotFound: ['Тред недоступен (№', 'Thread is unavailable (№'],
succDeleted: ['Пост(ы) удален(ы)!', 'Post(s) deleted!'],
errDelete: ['Не могу удалить пост(ы)!', 'Can\'t delete post(s)!'],
cTimeError: ['Неправильная разница во времени', 'Invalid time difference'],
cookiesLimit: ['Превышен лимит cookies', 'Cookies limit overflow'],
noGlobalCfg: ['Глобальные настройки не найдены', 'Global config not found'],
postNotFound: ['Пост не найден', 'Post not found'],
checkNow: ['Проверить сейчас', 'Check now'],
updAvail: ['Доступно обновление!', 'Update available!'],
haveLatest: ['У вас стоит самая последняя версия!', 'You have latest version!'],
unreadMsg: ['В треде %m непрочитанных сообщений.', 'There are %m unreaded messages in thread.'],
version: ['Версия: ', 'Version: '],
storage: ['Хранение: ', 'Storage: '],
thrViewed: ['Тредов просмотрено: ', 'Threads viewed: '],
thrCreated: ['Тредов создано: ', 'Threads created: '],
pstSended: ['Постов отправлено: ', 'Posts sended: '],
total: ['Всего: ', 'Total: '],
dontShow: ['Не отображать: ', 'Do not show: '],
showMore: ['Показать подробнее', 'Show more'],
loadGlobal: ['Загрузить глобальные настройки', 'Load global settings'],
saveGlobal: ['Сохранить настройки как глобальные', 'Save settings as global'],
resetCfg: ['Сбросить в настройки по умолчанию', 'Reset settings to defaults'],
saveChanges: ['Сохранить внесенные изменения', 'Save your changes'],
editInTxt: ['Правка в текстовом формате', 'Edit in text format'],
infoCount: ['Обновить счетчики постов', 'Refresh posts counters'],
clrDeleted: ['Очистить записи недоступных тредов', 'Clear notes of inaccessible threads'],
clrSelected: ['Удалить выделенные записи', 'Remove selected notes'],
hiddenPosts: ['Скрытые посты', 'Hidden posts'],
hiddenThrds: ['Скрытые треды', 'Hidden threads'],
onPage: [' на странице', ' on page'],
noHidThrds: ['Нет скрытых тредов...', 'No hidden threads...'],
noHidOnPage: ['На этой странице нет скрытого...', 'Nothing to hide on this page...'],
expandAll: ['Раскрыть все', 'Expand all'],
noFavorites: ['Нет избранных тредов...', 'Favorites is empty...'],
replies: ['Ответы:', 'Replies:'],
postsOmitted: ['Пропущено ответов: ', 'Posts omitted: '],
collapseThrd: ['Свернуть тред', 'Collapse thread'],
deleted: ['удалён', 'deleted'],
getNewPosts: ['Получить новые посты', 'Get new posts'],
page: [' страница', ' page'],
hiddenThrd: ['Скрытый тред:', 'Hidden thread:'],
expandForm: ['Раскрыть форму', 'Expand form'],
search: ['Искать в ', 'Search in '],
reply: ['Ответ', 'Reply'],
wait: ['Ждите', 'Wait'],
makeRjpeg: ['Сделать rarJPEG', 'Make rarJPEG'],
keyNavHelp: [
'На доске:\n"J" - тред ниже,\n"K" - тред выше,\n"N" - пост ниже,\n"M" - пост выше,\n"V" - вход в тред\n\nВ треде:\n"J" - пост ниже,\n"K" - пост выше,\n"V" - быстрый ответ',
'On board:\n"J" - thread below,\n"K" - thread above,\n"N" - post below,\n"M" - post above,\n"V" - enter a thread\n\nIn thread:\n"J" - post below,\n"K" - post above,\n"V" - quick reply'
],
month: [
['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'],
['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
],
week: [
['Вск', 'Пнд', 'Втр', 'Срд', 'Чтв', 'Птн', 'Сбт'],
['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
],
conReset: ['Данное действие удалит все ваши настройки и закладки. Продолжить?', 'This will delete all your preferences and favourites. Continue?'],
fileCorrupt: ['Файл повреждён: ', 'File is corrupted: ']
},
doc = window.document,
storageLife = 5 * 24 * 3600 * 1000,
Cfg = {}, Favor = {}, hThrds = {}, Stat = {}, Posts = [], pByNum = [], Threads = [], Visib = [], Expires = [],
nav = {}, aib = {}, brd, res, TNum, pageNum, docExt, docTitle,
pr = {}, dForm, oeForm, dummy, postWrapper = false, refMap = [],
Pviews = {deleted: [], ajaxed: {}, current: null, outDelay: null},
Favico = {href: '', delay: null, focused: false},
Audio = {enabled: false, el: null, repeat: false, running: false},
pSpells = {}, tSpells = {}, oSpells = {}, spellsList = [],
oldTime, endTime, timeLog = '', dTime, crc32table,
ajaxInterval, lCode, hideTubeDelay, quotetxt = '', liteMode = false, isExpImg = false;
/*==============================================================================
UTILITES
==============================================================================*/
function $$X(path, root, dc) {
return dc.evaluate(path, root, null, 7, null);
}
function $X(path, root) {
return $$X(path, root, doc);
}
function $$x(path, root, dc) {
return dc.evaluate(path, root, null, 8, null).singleNodeValue;
}
function $x(path, root) {
return $$x(path, root, doc);
}
function $xb(path, root) {
return doc.evaluate(path, root, null, 3, null).booleanValue;
}
function $c(id, root) {
return root.getElementsByClassName(id)[0];
}
function $id(id) {
return doc.getElementById(id);
}
function $t(id, root) {
return root.getElementsByTagName(id)[0];
}
function $each(list, Fn) {
var i = 0, el;
if(list) {
while(el = list.snapshotItem(i)) {
Fn(el, i++);
}
}
}
function $html(el, html) {
var cln = el.cloneNode(false);
cln.innerHTML = html;
el.parentNode.replaceChild(cln, el);
return cln;
}
function $attr(el, attr) {
for(var key in attr) {
key === 'text' ? el.textContent = attr[key] :
key === 'value' ? el.value = attr[key] :
el.setAttribute(key, attr[key]);
}
return el;
}
function $event(el, events) {
for(var key in events) {
el.addEventListener(key, events[key], false);
}
return el;
}
function $revent(el, events) {
for(var key in events) {
el.removeEventListener(key, events[key], false);
}
}
function $append(el, nodes) {
for(var i = 0, len = nodes.length; i < len; i++) {
if(nodes[i]) {
el.appendChild(nodes[i]);
}
}
}
function $before(el, node) {
el.parentNode.insertBefore(node, el);
}
function $after(el, node) {
el.parentNode.insertBefore(node, el.nextSibling);
}
function $add(html) {
dummy.innerHTML = html;
return dummy.firstChild;
}
function $$new(tag, attr, events, dc) {
var el = dc.createElement(tag);
if(attr) {
$attr(el, attr);
}
if(events) {
$event(el, events);
}
return el;
}
function $new(tag, attr, events) {
return $$new(tag, attr, events, doc);
}
function $New(tag, attr, nodes) {
var el = $new(tag, attr, null);
$append(el, nodes);
return el;
}
function $toDOM(html) {
var myDoc, el, first;
try {
myDoc = (new DOMParser()).parseFromString(html, 'text/html');
} catch (e) {}
if(!myDoc || !myDoc.body) {
myDoc = doc.implementation.createHTMLDocument('');
el = myDoc.documentElement;
el.innerHTML = html;
first = el.firstElementChild;
if(el.childElementCount === 1 && first.localName.toLowerCase() === 'html') {
myDoc.replaceChild(first, el);
}
}
return myDoc;
}
function $txt(el) {
return doc.createTextNode(el);
}
function $btn(val, ttl, Fn) {
return $new('input', {'type': 'button', 'value': val, 'title': ttl}, {'click': Fn});
}
function $if(cond, el) {
return cond ? el : null;
}
function $disp(el) {
el.style.display = el.style.display === 'none' ? '' : 'none';
}
function $del(el) {
if(el) {
el.parentNode.removeChild(el);
}
}
function $$Del(path, root, dc) {
$each($$X(path, root, dc), function(el) {
$del(el);
});
}
function $Del(path, root) {
$$Del(path, root, doc);
}
function $offset(el) {
var box = el.getBoundingClientRect();
return {
top: Math.round(box.top + window.pageYOffset),
left: Math.round(box.left + window.pageXOffset)
};
}
function $getStyle(el, prop) {
return doc.defaultView && doc.defaultView.getComputedStyle ?
doc.defaultView.getComputedStyle(el, '').getPropertyValue(prop) : '';
}
function $focus(el) {
window.scrollTo(0, $offset(el).top);
}
function $pd(e) {
e.preventDefault();
}
function $rnd() {
return Math.round(Math.random() * 1e10).toString(10);
}
function $txtInsert(el, txt) {
var scrtop = el.scrollTop,
start = el.selectionStart;
el.value = el.value.substr(0, start) + txt + el.value.substr(el.selectionEnd);
el.setSelectionRange(start + txt.length, start + txt.length);
el.focus();
el.scrollTop = scrtop;
}
function $txtSelect() {
return nav.Opera ? doc.getSelection() : window.getSelection().toString();
}
function $toRegExp(str) {
var t = str.match(/\/.*?[^\\]\/[ig]*/)[0],
l = t.lastIndexOf('/');
return new RegExp(t.substr(1, l - 1), t.substr(l + 1));
}
function $isEmpty(obj) {
for(var i in obj) {
return false;
}
return true;
}
function $log(txt) {
var newTime = Date.now();
timeLog += txt + ': ' + (newTime - oldTime) + 'ms\n';
oldTime = newTime;
}
function fixFunctions() {
if(!('head' in doc)) {
doc.head = $t('head', doc);
}
if(aib.hid) {
window.setTimeout = function(Fn, num) {
if(typeof Fn === 'function') {
Fn.apply(null, Array.prototype.slice.call(arguments, 2));
}
return 1;
};
}
if(!('GM_log' in window)) {
window.GM_log = function() {};
}
if(!('GM_xmlhttpRequest' in window)) {
window.GM_xmlhttpRequest = function(obj) {
var h, xhr = new window.XMLHttpRequest();
if('onreadystatechange' in obj) {
xhr.onreadystatechange = function() {
obj.onreadystatechange(xhr);
};
}
xhr.onload = function() {
try{
obj.onload(xhr);
} catch(e) {}
xhr = null;
};
xhr.open(obj.method, obj.url, true);
xhr.setRequestHeader('Accept-Encoding', 'deflate, gzip, x-gzip');
for(h in obj.headers) {
xhr.setRequestHeader(h, obj[h]);
}
xhr.finalUrl = obj.url;
xhr.send(null);
};
}
}
function addContentScript(text) {
doc.head.appendChild($new('script', {'type': 'text/javascript', 'text': text}, null));
}
function getPost(el) {
return $x('ancestor::*[@desu-post]', el);
}
function getPostImages(el) {
return $X('.//img[@class="thumb" or contains(@src,"thumb") or contains(@src,"/spoiler") or starts-with(@src,"blob:")]', el);
}
function getText(el) {
return (
el.innerText ||
el.innerHTML
.replace(/<\/?(?:br|p|li)[^>]*?>/gi,'\n')
.replace(/<[^>]+?>/g,'')
.replace(/>/g, '>')
.replace(/</g, '<')
).trim();
}
function getImgWeight(post) {
var inf = aib.getImgInfo(post).textContent.match(/\d+[\.\d\s|m|k|к]*[b|б]/i)[0],
w = parseFloat(inf.match(/[\d|\.]+/));
if(/MB/.test(inf)) {
w = w * 1e3;
}
if(/\d[\s]*B/.test(inf)) {
w = (w / 1e3).toFixed(2);
}
return +w;
}
function getImgSize(post) {
var el = aib.getImgInfo(post),
m = el ? el.textContent.match(/\d+[x×]\d+/) : false;
return m ? m[0].split(/[x×]/) : [null, null];
}
function fixBrd(b) {
return '/' + (b === '' ? '' : b + '/');
}
function getThrdUrl(h, b, tNum) {
return '//' + h + fixBrd(b) + (
(h.indexOf('krautchan.net') + 1) ? 'thread-' :
(h.indexOf('ylilauta.fi') + 1) ? '' :
'res/'
) + tNum + (
/dobrochan|tenhou/.test(h) ? '.xhtml' :
(h.indexOf('2chan.net') + 1) ? '.htm' :
(h.indexOf('420chan.org') + 1) ? '.php' :
(h.indexOf('ylilauta.fi') + 1) ? '' :
'.html'
);
}
function getPageUrl(h, b, p) {
return (h.indexOf('ylilauta.fi') + 1) ?
('/' + b + (p === 1 ? '/' : '-' + p)) :
(fixBrd(b) + (
p > 0 ? (p + docExt) :
/dobrochan|tenhou/.test(h) ? ('index' + docExt) :
''
));
}
/*==============================================================================
STORAGE / CONFIG
==============================================================================*/
function setCookie(id, value, life) {
if(id) {
doc.cookie = escape(id) + '=' + escape(value) + ';expires=' +
(new Date(Date.now() + life)).toGMTString() + ';path=/';
}
}
function getCookie(id) {
var one,
arr = doc.cookie.split('; '),
i = arr.length;
while(i--) {
one = arr[i].split('=');
if(one[0] === escape(id)) {
return unescape(one[1]);
}
}
return false;
}
function turnCookies(id) {
var data = getCookie('DESU_Cookies'),
arr = data ? data.split('|') : [];
arr[arr.length] = id;
if(arr.length > 13) {
setCookie(arr[0], '', -10);
arr.splice(0, 1);
}
setCookie('DESU_Cookies', arr.join('|'), storageLife);
}
function getStored(id) {
if(nav.isGM) {
return GM_getValue(id);
}
if(nav.isScript) {
return scriptStorage.getItem(id);
}
if(nav.isLocal) {
return localStorage.getItem(id);
}
return getCookie(id);
}
function setStored(id, value) {
if(nav.isGM) {
GM_setValue(id, value);
} else if(nav.isScript) {
scriptStorage.setItem(id, value);
} else if(nav.isLocal) {
localStorage.setItem(id, value);
} else {
setCookie(id, value, storageLife);
}
}
function getStoredObj(id, def) {
try {
return JSON.parse(getStored(id)) || def;
} catch(e) {
return def;
}
}
function saveSpells(val) {
spellsList = val.split('\n');
setStored('DESU_Spells_' + aib.dm, val);
initSpells();
}
/** @constructor */
function Config(cfg) {
for(var key in cfg) {
this[key] = cfg[key];
}
}
Config.prototype = defaultCfg;
function parseCfg(id) {
try {
var rv = JSON.parse(getStored(id));
if(rv['version']) {
return new Config(rv);
}
} catch(e) {}
return false;
}
function fixCfg(isGlob) {
var rv = (isGlob && parseCfg('DESU_GlobalCfg')) || new Config({'version': defaultCfg['version']});
rv['captchaLang'] = aib.hana || aib.tire || aib.vomb || aib.ment || aib.tinyIb ? 2 : 1;
rv['timePattern'] = rv['timeOffset'] = '';
rv['correctTime'] = 0;
return rv;
}
function readCfg() {
Cfg = parseCfg('DESU_Config_' + aib.dm) || fixCfg(nav.isGlobal);
Cfg['version'] = defaultCfg['version'];
if(nav.Opera && nav.Opera < 11.1 && Cfg['scriptStyle'] !== 2) {
Cfg['scriptStyle'] = 2;
}
if(nav.Firefox < 6 && !nav.WebKit) {
Cfg['preLoadImgs'] = 0;
}
if(aib.fch || aib.abu) {
Cfg['findRarJPEG'] = 0;
}
if(!nav.Firefox) {
Cfg['favIcoBlink'] = 0;
}
if(!nav.WebKit) {
Cfg['desktNotif'] = 0;
}
if(nav.Opera && nav.Opera < 12) {
Cfg['YTubeTitles'] = 0;
}
if(nav.Opera) {
Cfg['updScript'] = 0;
}
if(!Cfg['saveSage']) {
Cfg['sageReply'] = 0;
}
Cfg['linksOver'] = +Cfg['linksOver'];
Cfg['linksOut'] = +Cfg['linksOut'];
setStored('DESU_Config_' + aib.dm, JSON.stringify(Cfg));
lCode = Cfg['language'];
Stat = getStoredObj('DESU_Stat_' + aib.dm, {'view': 0, 'op': 0, 'reply': 0});
if(TNum) {
Stat.view = +Stat.view + 1;
}
setStored('DESU_Stat_' + aib.dm, JSON.stringify(Stat));
if(Cfg['correctTime']) {
dTime = new dateTime(Cfg['timePattern'], Cfg['timeOffset']);
}
saveSpells(getStored('DESU_Spells_' + aib.dm) || '');
}
function saveCfg(id, val) {
if(Cfg[id] !== val) {
Cfg[id] = val;
setStored('DESU_Config_' + aib.dm, JSON.stringify(Cfg));
}
}
function toggleCfg(id) {
saveCfg(id, !Cfg[id] ? 1 : 0);
}
function getVisib(pNum) {
var key = nav.isCookie ? pByNum[pNum].Count : brd + pNum;
return key in Visib ? Visib[key] : null;
}
function getPostVisib(post) {
var pNum = post.Num;
post.Vis = getVisib(pNum);
if(post.isOp) {
if(hThrds[brd] && (
nav.isCookie && hThrds[brd].indexOf(pNum) >= 0
|| !nav.isCookie && hThrds[brd][pNum] !== undefined
)) {
post.Vis = 0;
} else if(post.Vis === 0) {
Visib[brd + pNum] = null;
post.Vis = null;
}
}
}
function readPostsVisib() {
var i, arr, data,
currTime = Date.now();
if(nav.isCookie) {
if(TNum) {
data = getStored('DESU_Posts_' + aib.dm + '_' + TNum);
if(data) {
i = data.length;
while(i--) {
Visib[i] = +data[i];
}
}
}
} else {
data = getStored('DESU_Posts_' + aib.dm);
if(data) {
arr = data.split('-');
i = arr.length;
while((i -= 3) >= 0) {
if(currTime < +arr[i + 2]) {
Visib[arr[i]] = +arr[i + 1];
Expires[arr[i]] = +arr[i + 2];
}
}
}
}
readHiddenThreads();
Posts.forEach(getPostVisib);
}
function savePostsVisib() {
var key,
arr = [],
id = 'DESU_Posts_' + aib.dm;
if(nav.isCookie) {
if(TNum) {
id += '_' + TNum;
if(!getStored(id)) {
turnCookies(id);
}
setStored(id, Visib.join(''));
}
} else {
for(key in Visib) {
if(!/^\d$/.test(Visib[key])) {
break;
}
arr[arr.length] = key + '-' + Visib[key] + '-' + Expires[key];
}
setStored(id, arr.join('-'));
}
toggleContent('Hid', true);
}
function readHiddenThreads() {
hThrds = getStoredObj('DESU_Threads_' + aib.dm, {});
}
function saveHiddenThreads(txt) {
setStored('DESU_Threads_' + aib.dm, txt);
}
function toggleHiddenThread(post, vis) {
var i,
b = brd,
tNum = post.Num;
if(nav.isCookie) {
if(!hThrds[b]) {
hThrds[b] = [];
}
i = hThrds[b].indexOf(tNum);
if(vis === 0 && i < 0) {
hThrds[b].push(tNum);
}
if(vis === 1 && i >= 0) {
hThrds[b].splice(i, 1);
}
if(escape(JSON.stringify(hThrds)).length > 4095) {
hThrds[b].shift();
}
} else {
if(!hThrds[b]) {
hThrds[b] = {};
}
if(vis === 0) {
hThrds[b][tNum] = post.dTitle;
} else {
delete hThrds[b][tNum];
if($isEmpty(hThrds[b])) {
delete hThrds[b];
}
}
}
saveHiddenThreads(JSON.stringify(hThrds));
}
function readFavorites() {
Favor = getStoredObj('DESU_Favorites', {});
}
function saveFavorites(txt) {
setStored('DESU_Favorites', txt);
toggleContent('Fav', true);
}
function removeFavorites(h, b, tNum) {
delete Favor[h][b][tNum];
if($isEmpty(Favor[h][b])) {
delete Favor[h][b];
}
if($isEmpty(Favor[h])) {
delete Favor[h];
}
if(pByNum[tNum]) {
$x('.//span[starts-with(@class,"DESU_btnFav")]', pByNum[tNum].Btns).className = 'DESU_btnFav';
}
}
function toggleFavorites(post, btn) {
var h = aib.host,
b = brd,
tNum = post.Num;
if(!btn) {
return;
}
readFavorites();
if(Favor[h] && Favor[h][b] && Favor[h][b][tNum]) {
removeFavorites(h, b, tNum);
saveFavorites(JSON.stringify(Favor));
return;
}
if(!Favor[h]) {