bilibilixionggui | 1 points | Feb 08 2020 10:41:41
Reddit User Blocker脚本在旧版reddit可以一键屏蔽
// ==UserScript==
// u/name Reddit User Blocker
// u/namespace 66d7e0a67864c7b9795d7c40ba3754eb9ad3f8f9
// u/version 0.4
// u/description Blocks Reddit users without reporting them
// u/author /u/AyrA_ch
// u/match
https://www.reddit.com/*
// u/grant none
// ==/UserScript==
// Changelog
// 0.4 - Prevent links from being added to wrong elements
// 0.3 - Design adjustments
// 0.2 - Properly configure MutationObserver
// 0.1 - Initial Version
(function () {
'use strict';
//Creates an element with content and attributes
var ce = function (type, props, content) {
var e = document.createElement(type);
var keys = Object.keys(props || {});
for (var i = 0; i < keys.length; i++) {
e.setAttribute(keys[i], props[keys[i]]);
}
if (content) {
e.innerHTML = content;
}
return e;
};
//Content of the form
var formContent = '<input type="hidden" name="executed" value="blocke' +
'd"&rt;<span class="option main active"&rt;<a href="#" class="togglebut' +
'ton " onclick="return toggle(this)" data-event-action="block_use' +
'r"&rt;block user</a&rt;</span&rt;<span class="option error"&rt;are you sure?' +
' <a href="javascript:void(0)" class="yes" onclick="change_state' +
'(this, "block", hide_thing,undefined, null)"&rt;yes</a&rt; /' +
' <a href="javascript:void(0)" class="no" onclick="return toggle(' +
'this)"&rt;no</a&rt;</span&rt;';
//Inserts a form into the given Element
var insertForm = function (ele) {
var form = ce("form", {
"class": "toggle block-button",
action: "#",
method: "get"
}, formContent);
var li=document.createElement("li");
li.appendChild(form);
ele.appendChild(li);
return li;
};
//Checks for elements that should have the block form but have not yet
var checkAndAddForms = function () {
//Containers that are supposed to hold the form
var ele = document.querySelectorAll(".entry &rt; ul.flat-list.buttons");
for (var i = 0; i < ele.length; i++) {
var e = ele[i];
//Only insert form if it is not there already but other stuff is.
if (e.childNodes.length &rt; 0 && !e.querySelector(".block-button")) {
insertForm(e);
}
}
};
//Initially process all nodes
checkAndAddForms();
//Listen to document changes to dynamically add the block option
var observer = new MutationObserver(checkAndAddForms);
var config = {
attributes: false,
childList: true,
characterData: false,
subtree: true
};
observer.observe(document.body, config);
})();
/*
LICENSE:
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
The full license text can be found here:
http://creativecommons.org/licenses/by-nc-sa/4.0/
The link has an easy to understand version of the license and the full license text.
DISCLAIMER:
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
*/
[-] bilibilixionggui | 1 points | Feb 08 2020 18:36:53
哈哈哈,我好像是在为一个把我block了的人提供block的帮助