M3U8 Filter Ad Script

自用,拦截和过滤 m3u8(解析/采集资源) 的广告切片,同时打印被过滤的行信息。

Ekde 2024/10/12. Vidu La ĝisdata versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Aŭtoro
ltxlong
Ratings
0 0 0
Versio
1.0.1
Kreita
2024/10/11
Ĝisdatigita
2024/10/12
Size
12,8 kb
Licenco
MIT
Aplikiĝas al
Ĉiuj retejoj

脚本默认匹配所有的网站

如果想要匹配特定的网站,可以自己修改:

1、将 // @match        *://*/* 这一行删除

2、新增规则匹配特定的网站 // @match        特定网站/*

有几个特定网站就添加几条

比如有想要特定匹配的网站 https://www.demo1.comhttps://www.demo2.comhttp://www.demo3.com

那么就新增3条匹配规则:

// @match        https://www.demo1.com/*   

或者

// @match        *://www.demo1.com/*   

或者

// @match        *://*.demo1.com/*
// @match        https://www.demo2.com/*   

或者

 // @match        *://www.demo2.com/*   

或者

 // @match        *://*.demo2.com/*
// @match        http://www.demo3.com/*   

或者

 // @match        *://www.demo3.com/*   

或者

 // @match        *://*.demo3.com/*

哪种写法具体看网站播放时的网址结构