您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove items from search results of meetup.com based on regular expression. Personally I use this to filter out organizers that are not relevant to me.
- // ==UserScript==
- // @name Filter Out Meetup Search Results
- // @version 4
- // @description Remove items from search results of meetup.com based on regular expression. Personally I use this to filter out organizers that are not relevant to me.
- // @author Artium Nihamkin artium@nihamkin.com
- // @icon https://secure.meetupstatic.com/s/img/68780390453345256452178/favicon.ico
- // @homepageURL http://www.nihamkin.com
- // @include https://www.meetup.com/*
- // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
- // @namespace https://gf.qytechs.cn/users/231385
- // ==/UserScript==
- function f() {
- // You need to edit this with your own filtering keywords. The regular expression
- // is run against href attributes of the search result links.
- // See http://www.nihamkin.com/filtering-meetup-organizers-with-greasemonkey-script.html
- //
- var blacklist = ["All-the-best-Workshops-DIY-Israel", "The-Best-Science-Bar-Talks-in-Tel-aviv"];
- var blRegex = new RegExp(blacklist.join("|"));
- var links = $("a").filter(function(i,el) { return (blRegex.test(el.href)); })
- .closest("li.event-listing")
- .remove();
- }
- document.body.addEventListener("DOMNodeInserted", f, true);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址