嗨,我尝试使用 ContentBlocker 阻止广告,但它不起作用,我尝试使用 androidShouldInterceptRequest 并且它工作正常但无法在 ios 上进行测试我只是尝试阻止所有包含“voiranime”的 url,我使用该正则表达式“。 *" 但不工作
contentBlockers:[
ContentBlocker(
trigger: ContentBlockerTrigger(urlFilter: ".*voiranime.*",),
action: ContentBlockerAction(
type: ContentBlockerActionType.BLOCK
)
),
],