// ==UserScript==
// @name Waifuist 8chan Enhancer 2
// @include https://8chan.co/*
// @description Early version of an updated script for 8chan: Post counting and notify, quick reply, images from links.
// @version 0.0.6
// @namespace https://greasyfork.org/users/2657
// ==/UserScript==
//check if thread
if (window.location.href.indexOf("res") > -1) {
//Config Vars
var Configs = {linkimgopt:"ON", arrows:"ON", noko:"ON", antiflood:"ON", quickreply:"ON", inlinereply:"ON", linkstoview:"OFF"};
var Description = {linkimgopt:"Links To Images", arrows:"Scroll Arrows", noko:"Noko", antiflood:"Anti-Flood Detection", quickreply:"Quick Reply", inlinereply:"In-Line Reply", linkstoview:"Links To Buttons"};
$('form:first-of-type').addClass( "postboxy" );
//Load Configs System
if (localStorage.getItem('Configs')){
var Configs2 = localStorage.getItem('Configs');
Configs = JSON.parse(Configs2);
};
//Configs Saver
function save(){
localStorage.setItem("Configs", JSON.stringify(Configs));
};
//Notifier/Counter
var count = 0;
$('#favicon').remove();
$('head').append('<link href="http://i.imgur.com/wBQJqld.png" id="favicon" rel="shortcut icon">');
$(document).on( "new_post", function() {
count++;
if (Configs["linkimgopt"] == "ON") {linkimg();};
if (Configs["inlinereply"] == "ON") {genreply();};
if (Configs["linkstoview"] == "ON") {linkstoview();};
});
var title_regex = /^\(\d+\) (.*)$/;
var original_title = document.title;
var match = title_regex.exec(document.title);
if (match != null) {
original_title = match[1];
};
setInterval(function() {
var state2 = document["visibilityState"];
if (state2 == "visible"){
count = 0;};
if (count > 0 && state2 == "hidden") {
document.title = '('+count+') '+original_title;
$('#favicon').remove();
$('head').append('<link href="http://i.imgur.com/lfAW4fq.png" id="favicon" rel="shortcut icon">');
};
}, 10000);
var onVisibilityChange = function (args) {
var state = document["visibilityState"];
if (state == "visible")
{
document.title = original_title;
count = 0;
$('#favicon').remove();
$('head').append('<link href="http://i.imgur.com/wBQJqld.png" id="favicon" rel="shortcut icon">');
}
};
document.addEventListener("visibilitychange", onVisibilityChange, false);
//Menu
$('body').append("<div class='menu' style='position:fixed; right:10%; bottom:20%; width:49px; background:grey;'></div>")
if (Configs["arrows"] == "ON") {
$('.menu').append("<center><font size='30'><a alt='Scroll Up' style='text-decoration: none' href='javascript:window.scrollTo(0,0);'>▲</a><br><a style='text-decoration: none' href='javascript:window.scrollTo(0,900000000);'>▼</a>")
};
//Config Menu
$("body").append("<div class='optionslink' style='cursor: pointer; cursor: hand; width:auto;'>[Script Options]</div>")
$("body").append("<div class='optionsmenu' style='display:none; position:fixed; right:10%; top:5%; width:200px; height:300px; background:grey; padding:5px;'></div>")
$(document).on('click', ".optionslink", function() {
$(".optionsmenu").css("display","inline");
$('.optionslink').html("[Close Script Options]");
$('.optionslink').attr('class', 'optionslinkclose');
});
$(document).on('click', ".optionslinkclose", function() {
$(".optionsmenu").css("display","none");
$('.optionslinkclose').html("[Script Options]");
$('.optionslinkclose').attr('class', 'optionslink');
});
function renmenu(){
rendermenu = '';
$.each(Configs, function(i, key) {
rendermenu += '<div alt="' + i + '" class="menubutton" style="cursor: pointer; cursor: hand; width:auto;">' + Description[i] + ' [' + Configs[i] + ']</div>';
});
rendermenu += '<div class="reset" style="cursor: pointer; cursor: hand; width:auto;">[Reset Configurations]</div>'
$(".optionsmenu").html(rendermenu);
};
renmenu();
$(document).on('click', ".reset", function() {
delete window.localStorage["Configs"]
renmenu();
});
$(document).on('click', ".menubutton", function() {
buttonid = $(this).attr('alt');
changevar = Configs[buttonid];
if (changevar === "ON") {changevar = "OFF";} else {changevar = "ON";};
Configs[buttonid] = changevar;
save();
renmenu();
});
//linkimg
function linkimg(){
$('a[href$=".png"][rel="nofollow"], a[href$=".jpg"][rel="nofollow"], a[href$=".gif"][rel="nofollow"]').each(function(){
$(this).replaceWith('<div class="linkedimg2" style="width:100px;display:inline-block;"><img class="linkedimg2" style="max-width: 100%;" src="' + $(this).attr('href') + '" /></div>');
});
$(document).on('click', ".linkedimg2", function() {
$(this).css('width', 'auto');
$(this).attr('class', 'clicked');
});
$(document).on('click', ".clicked", function() {
$(this).css('width', '100px');
$(this).attr('class', 'linkedimg2');
});
};
if (Configs["linkimgopt"] == "ON") {linkimg();};
//linkstoview
function linkstoview(){
$('a[href$=".png"][rel="nofollow"], a[href$=".jpg"][rel="nofollow"], a[href$=".gif"][rel="nofollow"]').each(function(){
var linkURL = $(this).attr('href');
$(this).replaceWith('<div class="viewbutton" id="' + $(this).attr('href') + '"><b>[Click to View Image]</b> <br>' + $(this).attr('href') + '</a></div>')
});
$(document).on('click', ".viewbutton", function() {
$(this).replaceWith('<br><div class="linkedimg2" style="width:100px;display:inline-block;"><img class="linkedimg2" style="max-width: 100%;" src="' + $(this).attr('id') + '" /></div>');
});
$(document).on('click', ".linkedimg2", function() {
$(this).css('width', 'auto');
$(this).attr('class', 'clicked');
});
$(document).on('click', ".clicked", function() {
$(this).css('width', '100px');
$(this).attr('class', 'linkedimg2');
});
};
if (Configs["linkstoview"] == "ON") {linkstoview();};
// Quick Reply
if (Configs["quickreply"] == "ON") {
$('.menu').append("<center><font size='30'><a style='text-decoration: none' class='QR'><img style='cursor: pointer; cursor: hand;' src='http://i.imgur.com/f8L6S1O.png'></a><a style='text-decoration:none;display:none;cursor: pointer; cursor: hand;' class='QR2'>X</a><br>");
$('body').on('click', '.QR', function() {
$('.close-btn').click();
$('.postboxy').after("<div class='dummytext' style='height:301px;'></div>");
$('.postboxy').css({"background-color":"#D1D1D1", position:"fixed", bottom:"10%", right:"calc(10% + 49px)"});
$(".posttable").css("margin","auto");
$(".QR").css("display","none");
$(".QR2").css("display","inline");
});
$('body').on('click', '.QR2', function() {
$( ".dummytext" ).remove();
$('.postboxy').css({"background-color":"", position:"", bottom:"", right:""});
$('.postboxy').insertAfter($('.banner'));
$(".posttable").css("margin","auto");
$(".QR").css("display","inline");
$(".QR2").css("display","none");
});
};
// In-Line Reply
if (Configs["inlinereply"] == "ON") {
$('table:first-of-type').addClass( "posttable" );
function quotador(id){
$("textarea[id*='body']")[0].value += '>>' + id + '\n';
reply_id = 'reply_' + id;
$( ".dummytext" ).remove();
$('.banner').after("<div class='dummytext' style='height:301px;'></div>");
$('.postboxy').insertAfter("#" + reply_id);
$(".posttable").css("margin","inherit");
$(".QR").css("display","none");
$(".QR2").css("display","inline");
};
function genreply(){
$("iframe").removeAttr('style');
if(window.location.href.indexOf("res") > -1) {
$('.quotes').remove();
$( "div[id^='reply_']" ).each(function() {
var replyid = $(this).attr("id")
replyid = replyid.replace("reply_", "");
$(this).append('<div class="quotes" id="'+ replyid +'" style=" float: right; clear: both; background-color: #FF6600; border: 1px solid; margin: 3px; padding: 3px; cursor: pointer; cursor: hand;">Reply</div>');
})};
};
genreply();
$('body').on('click', 'div.quotes', function() {
var currentId = $(this).attr('id');
$(".postboxy").removeAttr('style');
quotador(currentId);
});
};
//smaller functions
if (Configs["antiflood"] == "ON") {
function makeid(){
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for( var i=0; i < 10; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
};
function checkandffill(){
$("#body").each(function() {
if($(this).val() === "")
var number = 12345678 + Math.floor(Math.random() * 6);
$("#body").text(makeid());
});};
$nofill = 'no';
$(".post_no").click(function(){
$nofill = 'yes';
});
$("input[name='post']").click(function(){
if($nofill === "no"){
window.onload=checkandffill();
};
});
};
//autonoko
if (Configs["noko"] == "ON") {
function noko(){
document.getElementsByName("email", "input")[0].value = "noko";
};
};
};