您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds links to coke&popcorn to tv-muse.
// ==UserScript== // @name TV-Muse quicklinks in list view // @description Adds links to coke&popcorn to tv-muse. // @include http://www.tvmuse.com/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js // @version 1 // @grant GM_addStyle // @namespace https://gf.qytechs.cn/users/2209 // ==/UserScript== $("span.c2","ul.episodes").each(function( index ) { var daten = $("a", this).attr("href").match(/tv-shows\/([^_]+).*season_(\d+).*episode_(\d+)/); var show = ''; if(daten[1]==='NCIS') // special case for NCIS show = 'NCIS'; else show = daten[1].toLowerCase(); var neuerLink = '<a target="_blank" href="http:\/\/www.cokeandpopcorn.ch\/watch-'+show+'-season-'+daten[2]+'-episode-'+daten[3]+'-online.php">C & P</a> '; $(this).prepend(neuerLink); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址