您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes featured answers from your ask.fm feed
// ==UserScript== // @name ask.fm Featured Answer Remover // @description Removes featured answers from your ask.fm feed // @include https://ask.fm/* // @version 1.1.1 // @grant none // @icon http://i.imgur.com/79q28PE.png // @namespace https://greasyfork.org/users/27958 // ==/UserScript== function nukeShit() { var nodesSnapshot = document.evaluate("//*[contains(text(), '? Featured') or contains(text(), '?Featured')]/..", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < nodesSnapshot.snapshotLength; i++) { nodesSnapshot.snapshotItem(i).style.display = 'none'; } } window.addEventListener('DOMNodeInserted', nukeShit);