Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/07cb5265d4ecb0b3c8b2e41c8371118e.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Forum Master・Discuz! Beautified interface, Hidden ads, Enhanced functions.
// @name:en Forum Master・Discuz! Beautified interface, Hidden ads, Enhanced functions.
// @name:zh 论坛大师・Discuz! 界面美化、隐藏广告、功能增强、回帖强显……
// @name:zh-CN 论坛大师・Discuz! 界面美化、隐藏广告、功能增强、回帖强显……
// @name:zh-HK 論壇大師・Discuz! 界面美化、隱藏廣告、功能增強、回帖強顯……
// @name:zh-TW 論壇大師・Discuz! 界面美化、隱藏廣告、功能增強、回帖強顯……
// @namespace Forum Master・Discuz!
// @homepage https://greasyfork.org/scripts/400250
// @version 0.0.1
// @icon https://www.discuz.net/favicon.ico
// @description Forum Master - Discuz! Beautify the interface, hide ads, enhance functions.
// @description:en Forum Master - Discuz! Beautify the interface, hide ads, enhance functions.
// @description:zh 论坛大师(中文)・Discuz! 界面美化、隐藏广告、功能增强、回帖强显……
// @description:zh-CN 论坛大师(简体中文)・Discuz! 界面美化、隐藏广告、功能增强、回帖强显……
// @description:zh-HK 論壇大師(繁体中文)・Discuz! 界面美化、隱藏廣告、功能增強、回帖強顯……
// @description:zh-TW 論壇大師(繁体中文)・Discuz! 界面美化、隱藏廣告、功能增強、回帖強顯……
// @author hostname
// @match https://www.discuz.net/thread-*.html
// @match https://www.discuz.net/forum.php?mod=viewthread&tid=*
// @match https://www.52pojie.cn/thread-*.html
// @match https://www.52pojie.cn/forum.php?mod=viewthread&tid=*
// @match https://www.hostloc.com/thread-*.html
// @match https://www.hostloc.com/forum.php?mod=viewthread&tid=*
// @match https://bbs.kafan.cn/thread-*.html
// @match https://bbs.kafan.cn/forum.php?mod=viewthread&tid=*
// @match http://bbs.pcbeta.com/thread-*.html
// @match http://bbs.pcbeta.com/viewthread-*.html
// @match http://bbs.pcbeta.com/forum.php?mod=viewthread&tid=*
// @match https://bbs.pcbeta.com/thread-*.html
// @match https://bbs.pcbeta.com/viewthread-*.html
// @match https://bbs.pcbeta.com/forum.php?mod=viewthread&tid=*
// @grant none
// @supportURL https://greasyfork.org/scripts/400250
// @license MIT
// @downloadURL none
// ==/UserScript==
(function () {
'use strict';
// Cascading Style Sheets
const style_tag_100 = document.createElement('style');
style_tag_100.innerHTML = `
/* Global */
.ads {
display: none;
}
#um .avt img {
border-radius: 50%;
}
#um .avt img:hover {
border-radius: 0;
}
.pls .avatar {
padding-top: 1px;
text-align: center;
}
.pls .avatar img {
width: 120px;
height: 120px;
border-radius: 50%;
padding: 0;
border: 4px solid #ffffff;
box-shadow: 0 0 4px #cccccc;
}
.pls .avatar img:hover {
border-radius: 0;
}
/* www.52pojie.cn */
.dnch_eo_pt,
.dnch_eo_pb {
display: none;
}
/* www.hostloc.com */
.a_t,
.a_pt,
.a_pb {
display: none;
}
/* bbs.pcbeta.com */
#diynavtop {
display: none;
}
`
document.head.appendChild(style_tag_100);
const attachContent = '[img]https://www.fb.com/security/hsts-pixel.gif[/img]';
const fastPostMessage = document.getElementById('fastpostmessage');
function editor_content() {
let fastPostMessageContent = fastPostMessage.value;
if (fastPostMessageContent && fastPostMessageContent.length < 10) {
fastPostMessageContent = fastPostMessageContent.trim();
fastPostMessage.value = fastPostMessageContent.concat('\n\n', attachContent);
}
}
fastPostMessage.removeAttribute('onkeydown');
fastPostMessage.addEventListener('keydown', function (event) {
if (event.ctrlKey && event.which === 13) {
editor_content();
seditor_ctlent(event, 'fastpostvalidate($(\'fastpostform\'))');
}
if (event.altKey && event.which === 83) {
editor_content();
seditor_ctlent(event, 'fastpostvalidate($(\'fastpostform\'))');
}
}, false);
document.getElementById('fastpostsubmit').addEventListener('click', editor_content, false);
})();