2018-10-27 16:19:26 +00:00
|
|
|
// ==UserScript==
|
2018-10-27 17:11:41 +00:00
|
|
|
// @name Stack Exchange, Show NSFW post's text
|
2018-10-27 16:19:26 +00:00
|
|
|
// @namespace https://github.com/Glorfindel83/
|
|
|
|
// @description Shows (potentially NSFW) content for deleted posts whose content is deleted because of being spam or rude/abusive.
|
|
|
|
// @author Glorfindel
|
|
|
|
// @updateURL https://raw.githubusercontent.com/Glorfindel83/SE-Userscripts/master/nsfw/nsfw.user.js
|
|
|
|
// @downloadURL https://raw.githubusercontent.com/Glorfindel83/SE-Userscripts/master/nsfw/nsfw.user.js
|
2018-10-27 17:12:54 +00:00
|
|
|
// @version 0.3
|
2018-10-27 16:19:26 +00:00
|
|
|
// @match *://*.stackexchange.com/*
|
|
|
|
// @match *://*.stackoverflow.com/*
|
|
|
|
// @match *://*.superuser.com/*
|
|
|
|
// @match *://*.serverfault.com/*
|
|
|
|
// @match *://*.askubuntu.com/*
|
|
|
|
// @match *://*.stackapps.com/*
|
|
|
|
// @match *://*.mathoverflow.net/*
|
2018-10-27 17:11:41 +00:00
|
|
|
// @exclude *://api.stackexchange.com/*
|
|
|
|
// @exclude *://blog.*.com/*
|
|
|
|
// @exclude *://chat.*.com/*
|
|
|
|
// @exclude *://data.stackexchange.com/*
|
|
|
|
// @exclude *://elections.stackexchange.com/*
|
|
|
|
// @exclude *://openid.stackexchange.com/*
|
|
|
|
// @exclude *://stackexchange.com/*
|
2018-10-27 16:19:26 +00:00
|
|
|
// @grant none
|
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
(function () {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
$('span.hidden-deleted-question, span.hidden-deleted-answer').each(function() {
|
|
|
|
let self = this;
|
2018-10-27 17:11:41 +00:00
|
|
|
|
2018-10-27 16:19:26 +00:00
|
|
|
// Load revision history
|
|
|
|
let revisionHistory = $(this).find('a').attr('href');
|
|
|
|
$.get(revisionHistory, function(historyData) {
|
|
|
|
// Find link to latest revision
|
|
|
|
let href = $(historyData).find('#revisions a.single-revision')[0].getAttribute('href');
|
|
|
|
$.get(href, function(data) {
|
|
|
|
// Question?
|
|
|
|
if (self.className == 'hidden-deleted-question') {
|
|
|
|
// Replace question title
|
|
|
|
let title = $(data).find('a.question-hyperlink')[0].innerHTML;
|
|
|
|
document.getElementById('question-header').getElementsByTagName('h1')[0].innerHTML = title;
|
|
|
|
}
|
2018-10-27 17:11:41 +00:00
|
|
|
|
2018-10-27 16:19:26 +00:00
|
|
|
// Replace post content
|
|
|
|
self.innerHTML = $(data).find('div.post-text')[0].innerHTML;
|
2018-10-27 17:11:41 +00:00
|
|
|
|
2018-10-27 16:19:26 +00:00
|
|
|
// Add link to revision history
|
|
|
|
let postMenu = $(self.parentElement.parentElement).find('div.post-menu')[0];
|
|
|
|
$(postMenu).append($('<span class="lsep">|</span>'));
|
|
|
|
$(postMenu).append($('<a href="' + revisionHistory + '">revisions</a>'));
|
2018-10-27 16:51:25 +00:00
|
|
|
$('<div>post content normally hidden, but made visible by the NSFW userscript</div>').insertAfter($(postMenu));
|
2018-10-27 16:19:26 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-10-27 17:11:41 +00:00
|
|
|
})();
|