Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.

feat(懂车帝):分段广告(补充activityid)、规则修复、车型页面右下角直播悬浮窗、规则分类、通知提示(优化规则) #3950

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 41 additions & 15 deletions src/apps/com.ss.android.auto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,46 @@ export default defineAppConfig({
{
enable: false,
key: 1,
name: '首页推荐卡片广告',
name: '分段广告-首页推荐卡片广告',
desc: '需二次点击关闭原因',
quickFind: true,
activityIds: 'com.ss.android.auto.activity.SplashActivity',
activityIds: [
'com.ss.android.auto.activity.SplashActivity',
'com.ss.android.auto.policy.AutoPrivacyActivity',
],
rules: [
{
key: 0,
name: '点击【x】',
matches:
'TextView[text.length=1][id=null][clickable=false] < @FrameLayout[clickable=true][id!=null] - LinearLayout > [text="广告"]',
// 貌似快照存在延迟导致屏幕与节点不对应
snapshotUrls: 'https://i.gkd.li/import/12660816',
snapshotUrls: [
'https://i.gkd.li/import/12660816',
'https://i.gkd.li/import/13959610',
],
},
{
// 不与旧版本合并,尽量使用[clickable=true],保证速度避免误触
preKeys: 1,
preKeys: 0,
name: '点击【不感兴趣】1', // 懂车帝v7.8.4样式
matches: '@ViewGroup[clickable=true] TextView[text="不感兴趣"]',
snapshotUrls: 'https://i.gkd.li/import/13538627',
},
{
preKeys: 1,
name: '点击【不感兴趣】2', // 懂车帝v7.7.4样式
preKeys: 0,
name: '点击【不感兴趣】2', // 懂车帝v7.7.4样式、v7.8.0样式
matches: '[text="不感兴趣"][clickable=true]',
snapshotUrls: 'https://i.gkd.li/import/12711589',
snapshotUrls: [
'https://i.gkd.li/import/12711589',
'https://i.gkd.li/import/13959613', //v7.8.0样式
],
},
],
},
{
key: 2,
name: '升级弹窗',
name: '更新提示',
quickFind: true,
actionMaximum: 1,
resetMatch: 'app',
Expand All @@ -51,7 +60,7 @@ export default defineAppConfig({
},
{
key: 3,
name: '右下角悬浮窗',
name: '局部广告-右下角悬浮窗',
quickFind: true,
matchTime: 10000,
actionMaximum: 1,
Expand All @@ -71,7 +80,7 @@ export default defineAppConfig({
},
{
key: 4,
name: '文章底部卡片式广告',
name: '局部广告-文章底部卡片式广告',
quickFind: true,
activityIds:
'com.ss.android.article.base.feature.detail2.view.NewDetailActivity',
Expand All @@ -81,7 +90,7 @@ export default defineAppConfig({
},
{
key: 5,
name: '评论区信息流广告',
name: '局部广告-评论区信息流广告',
desc: '像正常内容的广告',
quickFind: true,
activityIds: [
Expand All @@ -99,25 +108,42 @@ export default defineAppConfig({
},
{
key: 6,
name: '请求推送通知弹窗',
name: '通知提示',
quickFind: true,
actionMaximum: 1,
resetMatch: 'app',
activityIds: [
'com.ss.android.auto.activity.SplashActivity',
'com.ss.android.auto.policy.AutoPrivacyActivity',
'com.bytedance.im.auto.conversation.activity.ConversationListActivity', // https://i.gkd.li/import/14060897
],
rules: '@TextView[clickable=true] + [text*="推送通知"]',
snapshotUrls: [
'https://i.gkd.li/import/12840664',
'https://i.gkd.li/import/14060897',
],
rules: '@TextView[clickable=true] + [text^="打开推送通知"]',
snapshotUrls: 'https://i.gkd.li/import/12840664',
},
{
key: 7,
name: '选车页卡片广告',
name: '局部广告-选车页卡片广告',
quickFind: true,
activityIds: 'com.ss.android.auto.activity.ConcernDetailActivity',
rules:
'TextView[text.length=1][id=null][clickable=false] < @FrameLayout[clickable=true][id!=null] -2 [text="广告"]',
snapshotUrls: 'https://i.gkd.li/import/13686928',
},
{
key: 8,
name: '局部广告-车型页面右下角直播悬浮窗',
desc: '点击X',
quickFind: true,
rules: [
{
activityIds: 'com.ss.android.auto.activity.ConcernDetailActivity',
matches: 'FrameLayout[childCount=8] > TextView[text=""]',
snapshotUrls: 'https://i.gkd.li/import/14034740',
},
],
},
],
});
Loading