您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A script that skips antenna sites with minimal writing. The number of supported sites is increased according to my needs.
当前为
// ==UserScript== // @name minimumAntennaSkipper // @name:ja minimumAntennaSkipper(なるべく最小の記述でアンテナをスキップするスクリプト) // @namespace minimumAntennaSkipper // @version 0.1.3 // @description A script that skips antenna sites with minimal writing. The number of supported sites is increased according to my needs. // @description:ja 最低限の記述でアンテナサイトをスキップするスクリプトです。対応サイトは、自分の必要に応じて増やしています。 // @author iHok // @match http*://*/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let eArr = [ ["//url","//target"], ["kita-kore.com",".antenna-categories-index .top-area .articles-area .articles .article.active, .home-index .top-area .articles-area .articles .article.active, .archives-show .top-area .articles-area .articles .article.active, .websites-articles-index .top-area .articles-area .articles .article.active"], ["katuru.com",".rssget_red a"], ["newpuru.doorblog.jp","a.p.titlelink"], ["news-choice.net","#article-block [data-type=\"catchy\"] .entry-title a"], ["the-3rd.net","[style=\"background-color:rgb(231, 222, 220);\"]"], ["tokkaban.com",".blogroll .container #blogroll-content li.current a"], ["nullpoantenna.com","a.feed-click"], ["news.owata-net.com","#headline_block .headline .active .title a"], ["blog-news.doorblog.jp/archives/",".title_link"], ["moudamepo.com",".pickup"], ["get2ch.net","[style=\"color:#F55;font-weight:bold;\"]"], ["2channeler.com",".pickup"], ["newyaku.blog.fc2.com","#pickupnews .title_link_a"], ["2ch-c.net","[style=\"color:#d14 !important;\"]"], ["newmofu.doorblog.jp",".title_link a .linktitle, .title_link a:visited .linktitle, .title_link a:before"], ["matomeantena.com","#feed .main-box .list li.current a"], ["kaigai-antenna.com",".post.target a"]]; eArr[-1]=["//notFindHost",false]; const eX =document.querySelector(eArr[eArr.findIndex(([x]) => x === location.host)][1]); if(eX){ location.href=eX?.href||eX.querySelector("[href]").href||eX?.parentNode.href; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址