Last active
January 30, 2022 15:22
-
-
Save LostInsight/76a3daeef5bfb12201d3739fdeacb543 to your computer and use it in GitHub Desktop.
A script for highlighting free and 2xfree items in NexusPHP based PT sites
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name NexusPHP Hightlight | |
// @name:zh-CN NexusPHP 高亮脚本 | |
// @version 0.0.2 | |
// @description A script for highlighting free and 2xfree items in NexusPHP based PT sites | |
// @description:zh-CN 适用于基于 NexusPHP 的 PT 站的高亮脚本,包括free、2xfree高亮和鼠标悬停高亮 | |
// @author LostMelody | |
// @note 大量站点未测,特别是CHD,TTG,影客,U2,HDChina | |
// @note 网址和入口参考PT-Plugin-Plus内置地址 | |
// @note 部分识别接口参考Juszoe的flexget-nexusphp但具体未测 | |
// @match *://*.52pt.site/* | |
// @match *://*.byr.cn/* | |
// @match *://*.chdbits.co/* | |
// @match *://*.discfan.net/* | |
// @match *://*.et8.org/* | |
// @match *://*.hdcity.city/* | |
// @match *://*.hddolby.com/* | |
// @match *://*.hdhome.org/* | |
// @match *://*.pthome.net/* | |
// @match *://*.btschool.club/* | |
// @match *://*.beitai.pt/* | |
// @match *://*.hdsky.me/* | |
// @match *://*.hdstreet.club/* | |
// @match *://*.hdtime.org/* | |
// @match *://*.hdzone.me/* | |
// @match *://*.hdupt.com/* | |
// @match *://*.leaguehd.com/* | |
// @match *://*.joyhd.net/* | |
// @match *://*.moecat.best/* | |
// @match *://*.nanyangpt.com/* | |
// @match *://*.nicept.net/* | |
// @match *://*.npupt.com/* | |
// @match *://*.open.cd/* | |
// @match *://*.ourbits.club/* | |
// @match *://*.eastgame.org/* | |
// @match *://*.hd4fans.org/* | |
// @match *://*.hdbd.us/* | |
// @match *://*.hdupt.com/* | |
// @match *://*.j99.info/* | |
// @match *://*.keepfrds.com/* | |
// @match *://*.m-team.cc/* | |
// @match *://*.msg.vg/* | |
// @match *://*.soulvoice.club/* | |
// @match *://*.pterclub.com/* | |
// @match *://*.ptsbao.club/* | |
// @match *://*.springsunday.net/* | |
// @match *://*.tjupt.org/* | |
// @match *://*.totheglory.im/* | |
// @match *://*.sjtu.edu.cn/* | |
// @match *://u2.dmhy.org/* | |
// @match *://*.uhdbits.org/* | |
// @match *://*.hdarea.co/* | |
// @match *://*.yingk.com/* | |
// ==/UserScript== | |
(function() { | |
switch (location.pathname) { | |
case '/adult.php': | |
case '/browse.php': | |
case '/live.php': | |
case '/movie.php': | |
case '/music.php': | |
case '/torrentsasia.php': | |
case '/torrents.php': { | |
try { | |
var cnt=$("form_torrent"); | |
if (!(cnt===null)){ | |
cnt.replaceWith(...cnt.childNodes); | |
} | |
}catch(err) {} | |
var styleElement = document.createElement('style'); | |
styleElement.innerHTML = '.torrents tr:hover{background-color:#009966;}'; | |
document.head.append(styleElement); | |
const freenames = ['pro_free', 'pro_free2up','free','twoupfree','span_frees','span_twoupfreels','本种子限时不计流量']; | |
for (const freename of freenames) { | |
var $free=document.getElementsByClassName(freename); | |
for (const free of $free) { | |
free.parentElement.parentElement.setAttribute('style','background:#c6dc11'); | |
} | |
} | |
} | |
break; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! This is helpful!