[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.yml",
    "content": "name: 报告 Bug\ntitle: '[Bug] '\ndescription: 报告 误触/问题 规则\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        ## 在提交问题之前，请您务必完成以下操作，否则你的issue可能会根据情况直接被关闭！！！\n\n        1. **提供 误触/出现问题 界面的快照（不要提供截图，截图没有任何作用，不要使用截屏快照），并说明是哪一条规则 误触/出现问题，快照获取方式如下图**\n        2. 如果是需要点击多次才能关闭的情况，那么必须提供每一次点击页面的快照\n        3. 检查使用的是否是 [最新版订阅](https://github.com/AIsouler/GKD_subscription/releases/latest) 和 [最新版GKD](https://github.com/gkd-kit/gkd/releases)\n        4. 检查这个问题是否属于 [本项目维护的规则](https://github.com/AIsouler/GKD_subscription) 导致的\n        5. 如果你的issue被受理，受理者提出的问题、要求，应在3日内予以回复，否则会被关闭\n\n        #### 检查问题是否属于以下几种之一，如果属于请说明是哪一种（误触问题可忽略这条）\n        1. 规则不生效，但是截取快照时生效/回到桌面（不杀后台）再进入软件后生效\n        2. 规则触发了（有点击提示），但实际并不能生效\n  - type: textarea\n    id: bug-1\n    attributes:\n      label: |\n        请提供 误触界面/出现问题界面 的快照（不要提供截图！！！不要使用截屏快照！！！），也可补充说明\n      description: |\n        快照是一个 zip 文件，快照链接是类似 \"https://i.gkd.li/i/XXXXXXXX\" 的文本，按照如下方式可获得快照信息\n\n        按照下面的截图示例来获取界面快照，上传文件或者生成链接并粘贴到下面的输入框\\\n        ![img](https://raw.githubusercontent.com/AIsouler/GKD_subscription/refs/heads/main/Snapshot.webp)\n    validations:\n      required: true\n  - type: textarea\n    id: bug-2\n    attributes:\n      label: |\n        请说明是哪一条规则 误触/出现问题（文字/触发记录界面截图）\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.yml",
    "content": "name: 请求适配\ntitle: '[Feature] '\ndescription: 请求增加适配 APP 规则\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        ## 在提交问题之前，请您务必完成以下操作，否则你的issue可能会根据情况直接被关闭！！！\n\n        1. **提供需要适配界面的快照（不要提供截图，截图没有任何作用，不要使用截屏快照），快照获取方式如下图**\n        2. 如果是需要点击多次才能关闭的情况，那么必须提供每一次点击页面的快照\n        3. 检查全局规则是否开启\n        4. 检查使用的是否是 [最新版订阅](https://github.com/AIsouler/GKD_subscription/releases/latest) 和 [最新版GKD](https://github.com/gkd-kit/gkd/releases)\n        5. 阅读 [不予适配情况合集](https://github.com/AIsouler/GKD_subscription/issues/480)\n        6. 如果你的issue被受理，受理者提出的问题、要求，应在3日内予以回复，否则会被关闭\n  - type: textarea\n    id: feature-description\n    attributes:\n      label: |\n        请提供 需要适配界面 的快照（不要提供截图！！！不要使用截屏快照！！！），也可补充说明\n      description: |\n        快照是一个 zip 文件，快照链接是类似 \"https://i.gkd.li/i/XXXXXXXX\" 的文本，按照如下方式可获得快照信息\n\n        按照下面的截图示例来获取界面快照，上传文件或者生成链接并粘贴到下面的输入框，如果是需要多个点击如 [点击关闭按钮->出现关闭弹窗->点击关闭原因] 这种类型，则需要填写每个点击界面的快照\\\n        ![img](https://raw.githubusercontent.com/AIsouler/GKD_subscription/refs/heads/main/Snapshot.webp)\n    validations:\n      required: true\n"
  },
  {
    "path": ".github/workflows/build_release.yml",
    "content": "name: build_release\n\non:\n  schedule:\n    - cron: '0 19 * * *'\n  workflow_dispatch:\n\njobs:\n  check_changes:\n    runs-on: ubuntu-latest\n    outputs:\n      changed: ${{ steps.changes.outputs.changed }}\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n      - id: changes\n        run: |\n          if [ \"${{ github.event_name }}\" == \"workflow_dispatch\" ]; then\n              echo \"changed=true\" >> $GITHUB_OUTPUT\n          else\n            prev_tag=$(git describe --tags --abbrev=0 2>/dev/null || echo \"none\")\n            if [ \"$prev_tag\" == \"none\" ]; then\n              echo \"changed=true\" >> $GITHUB_OUTPUT\n            else\n              if git diff --exit-code $prev_tag HEAD -- src; then\n                echo \"No changes detected in 'src' directory between $prev_tag and the latest commit.\"\n                echo \"changed=false\" >> $GITHUB_OUTPUT\n              else\n                echo \"changed=true\" >> $GITHUB_OUTPUT\n              fi\n            fi\n          fi\n\n  build_release:\n    needs: check_changes\n    if: ${{ needs.check_changes.outputs.changed == 'true' }}\n    runs-on: ubuntu-latest\n    outputs:\n      version: ${{ steps.version.outputs.version }}\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 25\n\n      - uses: pnpm/action-setup@v4\n\n      - run: pnpm install\n\n      - run: pnpm run build\n\n      - id: version\n        run: |\n          version=$(node -e \"import('@gkd-kit/tools').then((m) => m.stdoutGkdVersion());\")\n          echo \"version=${version}\" >> \"$GITHUB_OUTPUT\"\n\n      - name: Git commit\n        id: commit\n        run: |\n          git config --local user.email github-actions[bot]@users.noreply.github.com\n          git config --local user.name github-actions[bot]\n          git status\n          git add .\n          git commit -a -m \"chore: v${{steps.version.outputs.version}}\"\n        continue-on-error: true\n\n      - name: Git push\n        if: ${{ steps.commit.outcome == 'success' }}\n        uses: ad-m/github-push-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          branch: ${{ github.ref }}\n          tags: true\n\n      - name: Create Release\n        id: create_release\n        if: ${{ steps.commit.outcome == 'success' }}\n        uses: softprops/action-gh-release@v2\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        with:\n          tag_name: v${{ steps.version.outputs.version }}\n          release_name: Release ${{ steps.version.outputs.version }}\n          body_path: ./dist/CHANGELOG.md\n\n      - name: Publish package\n        env:\n          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n        if: ${{ steps.commit.outcome == 'success' && env.NPM_TOKEN != '' }}\n        run: |\n          pnpm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}\n          node -e \"import('@gkd-kit/tools').then((m) => m.updatePkgVersion());\"\n          pnpm publish --no-git-checks\n          node -e \"import('@gkd-kit/tools').then((m) => m.syncNpmmirror());\"\n"
  },
  {
    "path": ".github/workflows/check_fix_push.yml",
    "content": "name: check_fix_push\n\non:\n  push:\n    branches:\n      - '**'\n\npermissions: write-all\n\njobs:\n  check:\n    runs-on: ubuntu-latest\n    if: |\n      ${{ github.event.head_commit.message!='chore(actions): check_format_lint' }}\n    steps:\n      - uses: actions/checkout@v4\n\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 22\n\n      - uses: pnpm/action-setup@v4\n\n      - run: pnpm install\n\n      - run: pnpm run check\n\n      - run: pnpm run format\n\n      - run: pnpm run lint\n\n      - name: Git commit\n        id: commit\n        run: |\n          git config --local user.email github-actions[bot]@users.noreply.github.com\n          git config --local user.name github-actions[bot]\n          git status --porcelain\n          git --no-pager diff\n          git commit -a -m \"chore(actions): check_format_lint\"\n        continue-on-error: true\n\n      - name: Git push\n        uses: ad-m/github-push-action@master\n        if: ${{ steps.commit.outcome == 'success' }}\n        with:\n          branch: ${{ github.ref }}\n"
  },
  {
    "path": ".github/workflows/issue_content_check.yml",
    "content": "name: issue_content_check\n\non:\n  issues:\n    types: [opened]\n\njobs:\n  check-issue-content:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Add label and close issue for missing snapshots\n        if: |\n          contains(github.event.issue.body, 'i.gkd.li/') == false &&\n          contains(github.event.issue.body, '.zip') == false\n        uses: actions-cool/issues-helper@v3\n        with:\n          actions: add-labels,create-comment,close-issue\n          token: ${{ secrets.GITHUB_TOKEN }}\n          issue-number: ${{ github.event.issue.number }}\n          labels: 'invalid'\n          body: |\n            您好 ${{ github.event.issue.user.login }}，由于您没有提供快照，此issue已被自动关闭。\n\n      - name: Add label and comment for inaccessible snapshot links\n        if: contains(github.event.issue.body, 'i.gkd.li/snapshot/') == true\n        uses: actions-cool/issues-helper@v3\n        with:\n          actions: add-labels,create-comment\n          token: ${{ secrets.GITHUB_TOKEN }}\n          issue-number: ${{ github.event.issue.number }}\n          labels: 'invalid'\n          body: |\n            您好 ${{ github.event.issue.user.login }}，检测到您提供了他人无法访问的链接，\n            请点击查看 [正确的分享快照方式说明](https://gkd.li/guide/snapshot#share-note) 。\n\n            可在下方评论区补充\n"
  },
  {
    "path": ".github/workflows/pull_request_check.yml",
    "content": "name: pull_request_check\n\non:\n  pull_request:\n    branches:\n      - main\n\njobs:\n  check:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Get changed files\n        id: changed_files\n        uses: tj-actions/changed-files@v46\n        with:\n          files: |\n            src/apps/*.ts\n            src/categories.ts\n            src/globalGroups.ts\n            src/subscription.ts\n\n      - name: Check changed files\n        run: |\n          for file in ${{ steps.changed_files.outputs.all_changed_files }}; do\n            echo \"$file was changed\"\n          done\n          if [ ${{ steps.changed_files.outputs.all_changed_files_count }} -gt 1 ]; then\n            echo \"your src subscription changed files count must <= 1\"\n            exit 1\n          fi\n\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 22\n\n      - uses: pnpm/action-setup@v4\n\n      - run: pnpm install\n\n      - run: pnpm run check\n\n      - run: pnpm run format\n\n      - run: pnpm run lint\n\n      - name: check format status\n        run: |\n          status=$(git status --porcelain)\n          if [ -n \"$status\" ]; then\n            echo \"Something wasn’t formatted properly\"\n            git --no-pager diff\n            exit 1\n          fi\n"
  },
  {
    "path": ".gitignore",
    "content": "logs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\n.env\n.vscode\n.eslintcache\n\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n\nnode_modules\npackage-lock.json\nyarn.lock"
  },
  {
    "path": ".npmrc",
    "content": "package-manager-strict=false"
  },
  {
    "path": ".prettierignore",
    "content": "pnpm-lock.yaml\npnpm-workspace.yaml\nLICENCE\n\ndist\n\nREADME.md\nCHANGELOG.md\n"
  },
  {
    "path": ".prettierrc.mjs",
    "content": "// @ts-check\n/**\n * @type {import('prettier').Config}\n */\nexport default {\n  tabWidth: 2,\n  singleQuote: true,\n  trailingComma: 'all',\n};\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# 编写订阅贡献指南\n\n很高兴能有更多人参与到本项目默认订阅规则的开发中\n\n需要: 一台 Android 设备, 一台电脑(可选)\n\n## 环境搭建(无电脑跳过)\n\n本项目基于 nodejs + typescript\n\n- 安装 [nodejs](https://nodejs.org/) 或者 [volta](https://volta.sh/)\n- 安装 [pnpm](https://pnpm.io/zh/installation)\n- 建议安装 [Visual Studio Code](https://code.visualstudio.com/)\n- Fork 本项目, 然后 Clone 至本地, 切换到项目根目录，安装依赖 `pnpm install`\n\n## 开始\n\n首先我们需要给需要添加规则的APP打快照, 也就是把APP的广告截图节点信息给保存下来 <https://i.gkd.li/i/12505276> (如何获取这个链接将在审查快照这一步说明)\n\n首先打开APP-主页-允许无障碍授权\n\nAndroid>=11 的无障碍可以自己截屏, 所以如果你的设备不满足 Android>=11, 需要额外开启 高级设置-截屏服务\n\n有 2 种常用的打快照方式：\n\n- 悬浮窗服务: 在 APP-高级设置 中开启悬浮窗服务, 此时界面会出现一个截屏按钮, 点击这个按钮即可打快照\n- 网页端审查工具: 打开网页端审查工具-连接设备-点击快照按钮即可打快照, 网页端审查工具的使用在下面说明\n\n我们以 WPS 为例子, WPS 首页文档列表有一个广告, 我们先给 WPS 打一个快照, 然后使用 网页审查工具 编写测试规则订阅 关闭这个广告\n\n打开 WPS, 然后使用上面 2 种方式之一打快照, 然后打开设置-高级设置-快照记录, 可以看到已经有了一个快照记录\n\n<details close>\n  <summary>截图: 快照记录</summary>\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/ea86d3eb-00c4-44aa-b4a8-a42c08052404)\n\n</details>\n\n如果你没有电脑, 可以点击快照-分享，此时会分享一个 zip 文件, 截图和节点信息全在里面, 可以分享到某个云盘或者保存到本地, 然后在 [GKD_subscription/issues/new](https://github.com/AIsouler/GKD_subscription/issues) 上传这个 zip 或者填写分享链接, 然后提出问题, 项目维护者会帮助你处理这个快照\n\n<details close>\n  <summary>截图: 分享快照</summary>\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/8f37ce6b-4027-4679-988f-27730f60c971)\n\n</details>\n\n有电脑, 接下来我们将使用 网页审查工具 <https://github.com/gkd-kit/inspect>\n\n首先让 Android 设备和电脑处于同一个局域网内，你可以选择连接同一个 WiFi, 也可以 Android 设备开热点, 然后让电脑连接这个热点，总之确保 Android 设备和电脑在同一局域网内即可。\n\n打开 APP-设置-高级设置-HTTP服务, 此时 HTTP 服务底部出现若干条地址，一般情况下，我们只需要关注类似 `http://192.168.1.3:8888` 这样的地址即可。\n\n> [!NOTE]\n>\n> 地址不一定总是 `192.168.1.3` 这种形式，具体情况取决于局域网内的网关设置，如果当前局域网的网关地址被设置为 `192.168.31.1`\n> 那么你可能会看到类似 `http://192.168.31.3:8888` 的地址，请自行举一反三。\n\n<details close>\n  <summary>示例: HTTP服务</summary>\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/27aa1a3a-4096-4a0e-97ca-27a709645bba)\n\n</details>\n\n安装油猴脚本 <https://github.com/gkd-kit/network-extension>, 因为浏览器不允许 https 去连接 http 域名, 可以通过油猴脚本绕过这个限制\n\n浏览器打开 <https://i.gkd.li/>, 然后在这个网站启用油猴脚本的注入功能, 然后点击右上角 `连接设备` 图标去连接设备\n\n在设置页面左上角输入上述地址 `http://192.168.1.3:8888`, 然后点击 `刷新连接`, 即可成功连接设备\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/d3a956ca-f54b-4d9d-a2ae-3792b5a18aa4)\n\n可以看到第一个项目就是我们刚刚在 WPS 打的快照, 点击这个项目右侧的 `查看` 按钮\n\n我们就能在电脑上审查 <https://i.gkd.li/i/12505286> 这个快照\n\n## 审查快照\n\n很明显我们只需要点击文字 `小米·广告` 右侧关闭图标即可\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/96c78639-d304-4950-80f2-2b8f23cdaf36)\n\n我们把鼠标直接放到这个图标上去, 然后点击它, 可以看到中间的节点树已经展开, 右侧也出现了属性列表\n\n很明显这个图标按钮具有一个唯一的 id `com.mopub.ad.xiaomi:id/nativeclose`, 接下来编写一个简单的规则去点击它\n\n那么先去了解一下这个选择器 <https://github.com/gkd-kit/selector>, 如果你写过 CSS, 应该对这个选择器很熟悉\n\n了解完了之后, 编写的选择器也很简单 `[id=\"com.mopub.ad.xiaomi:id/nativeclose\"]`\n\n接下来测试这个选择器能否选中这个图标按钮, 点击审查工具的 选择器查询, 输入刚刚这个规则, 然后点击查询。\n\n这里点击右侧的 `分享`-`复制链接-快照` 才能获取快照链接（以/i/开头）\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/3aea04fd-da91-4f43-a79e-e40fdad4a5d4)\n\n很明显这个选择器是有效的, 那么我们去真机测试这个选择器到底行 8 行\n\n回到刚刚的设备连接页面, 点击顶部的 `执行选择器` 按钮, 然后手机回到 WPS 界面等待出现广告\n\n点击执行选择器确定按钮, 发现提示 `无点击目标`, 这是为什么呢, 我们对这个页面再打一个快照看看\n\n<https://i.gkd.li/i/12505350> 鼠标移动到截图里的广告关闭按钮上去点击后查看节点树和属性面板\n\n发现这个图标按钮的属性id已经变成了 `cn.wps.moffice_eng:id/nativeclose`, 于是我们需要扩展一下刚刚的选择器, 确保两个按钮都能选中\n\n把这个选择器改成 `[id$=\"/nativeclose\"]`, 这样两个节点都能选上\n\n回到网页端设备连接界面-执行选择器-输入 `[id$=\"/nativeclose\"]` 点击确认\n\n![2023-09-03_15-24-55](https://github.com/gkd-kit/subscription/assets/38517192/113219f1-164c-40c9-bf76-a9b2a3f66503)\n\n可以看到点击成功了, 但是出现了另外一个弹窗了, 叫你选择关闭原因, 这时我们直接点击网页端的快照按钮得到新快照 <https://i.gkd.li/i/12505365>\n\n点击截图里的 `关闭当前广告`, 查看属性面板, 编写测试选择器 `[text=\"关闭当前广告\"]`, 去执行 执行选择器\n\n![2023-09-03_15-31-18](https://github.com/gkd-kit/subscription/assets/38517192/ab99c7fb-6e7d-45de-b969-58db41519df7)\n\n那么选择器部分就基本没问题了, 接下来实时编写规则\n\n## 编写订阅\n\n订阅规则各个属性作用可以查看 [API 文档](https://gkd.li/api/)\n\n打开浏览器设备连接页面-点击修改内存订阅, 输入如下内容, 然后点击确认\n\n```text\n// 订阅使用 JSON5 语法, 根节点可以是数组也可以是对象\n{\n  id: 'cn.wps.moffice_eng',\n  name: 'WPS',\n  groups: [\n    {\n      key: 1,\n      name: '首页-文档列表广告',\n      activityIds: ['cn.wps.moffice.main.StartPublicActivity', 'cn.wps.moffice.main.local.HomeRootActivity'],\n      rules: [\n        {\n          matches: '[text=\"关闭当前广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12505365',//获取链接的方法在上一步有说明\n        },\n        {\n          matches: '[id$=\"/nativeclose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12505350',\n            'https://i.gkd.li/i/12505286',\n          ],\n        },\n      ],\n    },\n  ],\n}\n```\n\n此时回到APP首页-订阅, 会发现多了一条订阅\n\n![image](https://github.com/gkd-kit/subscription/assets/38517192/89413281-4ad3-4c9c-aee5-97eb9da4bcd0)\n\n接下来把 WPS 清除全部数据后重新打开, 可以看到规则已经生效, 广告已经被自动关闭\n\n![2023-09-03_15-55-18](https://github.com/gkd-kit/subscription/assets/38517192/57787554-0443-4bc0-9f29-1759aae07b9b)\n\n> [!WARNING]\n>\n> 当你关闭 HTTP 服务器时, 默认情况下，这个内存订阅也会被清除，所以，请不要将内存订阅当作本地订阅使用。\n> 如果你出于某种目的确实需要保留内存订阅中的内容，请在 APP-设置-高级设置中，关闭 `清除订阅` 功能。\n\n## 提交代码\n\n如果你要添加的 APP 不存在本项目, 那么需要在 [apps](./src/apps) 目录下新建文件 `xxx.ts`, `xxx` 是 `appId` 比如 WPS 是 `cn.wps.moffice_eng.ts`\n\n这个文件的初始内容是\n\n```ts\nimport { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wps.moffice_eng',\n  name: 'WPS',\n  groups: [],\n});\n```\n\n然后在的 group 节点后添加你的规则及其快照链接, 文件内容变成\n\n```ts\nimport { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wps.moffice_eng',\n  name: 'WPS',\n  groups: [\n    {\n      key: 1,\n      name: '首页-文档列表广告',\n      exampleUrls: [\n        'https://github.com/gkd-kit/subscription/assets/38517192/57787554-0443-4bc0-9f29-1759aae07b9b',\n      ],\n      activityIds: [\n        'cn.wps.moffice.main.StartPublicActivity',\n        'cn.wps.moffice.main.local.HomeRootActivity',\n      ],\n      rules: [\n        {\n          matches: '[text=\"关闭当前广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12505365',\n        },\n        {\n          matches: '[id$=\"/nativeclose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12505350',\n            'https://i.gkd.li/i/12505286',\n          ],\n        },\n      ],\n    },\n  ],\n});\n```\n\n注意每个规则一定要添加快照链接, 否则后期维护根本不知道这个规则到底点的是啥\n\n然后运行校验命令 `npm run check`, 它会检测你的规则是否书写正确, 也会检测每个选择器语法是否正确\n\n然后提交这个文件发起 pr 即可\n\n> [!NOTE]\n>\n> 通常不建议直接在 `main` 分支上修改内容进行提交，你应该针对每个要提交规则的 APP 单独创建新的分支，然后在每个 APP 的分支上分别发起各自的 pr\n> 也就是说，如果你想提交 N 个 APP, 你应该分别创建 N 个分支，发起 N 个 pr\n\n## 检测修复代码\n\n有些人可能没有配置 nodejs 环境或者直接在 github 网页上提交了\n\n而提交的代码可能存在 选择器语法不正确, 文件格式(如缩进换行)不正确 等问题, 这些问题就不能被自动检测和修复\n\n因此你需要在你 fork 后生成的新仓库启用 github actions, 操作也很简单\n\n只需要打开你的新仓库的 Actions 页面, 然后点击下方出现的按钮即可\n\n![img](https://github.com/gkd-kit/subscription/assets/38517192/d31f6afc-bf84-4a63-8800-698ed8d3a756)\n\n开启后, 当你提交并推送代码时, 它会自动帮你检测代码里的问题, 同时自动修复和提交修复后的代码\n"
  },
  {
    "path": "README.md",
    "content": "# @AIsouler/GKD_subscription\n\n---\n\n## 本仓库已停止维护\n\n> 2026.02.12\n\n建议使用 [GKD订阅模板](https://github.com/gkd-kit/subscription-template) 构建自己的订阅，如果仅供个人使用，维护量其实很小，并不会占用您太多时间。\n\n本仓库包含大量早期不完善的规则，以及一些为兼容特殊场景、不同应用版本和不同系统环境而编写的非常抽象的规则，您可能并不需要这些规则，但它们可能会影响查询效率。\n\n最后，维护这个仓库已经2年时间了，期间也学会了不少东西，最初是凭借着一股热情在维持，但热情终究会耗尽，是时候说再见了。\n\n---\n\n## 声明\n\n- **禁止在国内平台传播**\n- **本仓库仅供本人学习使用**\n- **精力有限，随缘更新**\n\n## 说明\n\n- **致力于编写效率最高、误触最低、覆盖最全面的规则**\n\n- **已适配的规则需要等待发布更新才能生效，北京时间每天凌晨3点会自动发布更新，如果规则没有改动则不会发布更新，在 `GKD订阅界面` 下拉就能检测是否有更新 -> [点击查看更新日志](https://github.com/AIsouler/GKD_subscription/releases)**\n\n- **仅启用 `开屏广告` 一类规则，其它所有规则均需用户手动打开，规则类别里可以批量开启某一类规则，建议按需开启规则，不要无脑开启规则，开启过多规则可能造成规则阻塞从而导致规则触发缓慢甚至不触发，并且规则开启越多耗电也越多 -> [点击查看耗电说明](https://gkd.li/guide/faq#power)**\n\n- **请求适配或报告问题 -> [点击反馈](https://github.com/AIsouler/GKD_subscription/issues/new/choose)**\n\n- **交流讨论（不要在这里反馈） -> [点击查看或开启讨论](https://github.com/AIsouler/GKD_subscription/discussions)**\n\n- **欢迎贡献规则，提交pr前请确认您已仔细阅读 [贡献指南](./CONTRIBUTING.md) 和 [API文档](https://gkd.li/api/)，规则编写可参考 [个人收集的通用规则以及适用场景](./Selectors.md)**\n\n## 订阅\n\n复制以下任意一个链接到 GKD 即可使用本订阅规则\n\n- npmmirror源（国内镜像，推荐大陆用户使用）\n\n```txt\nhttps://registry.npmmirror.com/@aisouler/gkd_subscription/latest/files/dist/AIsouler_gkd.json5\n```\n\n- GitHub源\n\n```txt\nhttps://raw.githubusercontent.com/AIsouler/GKD_subscription/main/dist/AIsouler_gkd.json5\n```\n\n- 当前版本: v406\n\n- 当前订阅文件已适配 886 个应用，共有 2074 应用规则组，3 全局规则组\n\n- 查看 [适配 APP 列表](./dist/README.md)\n\n- 使用 [GKD订阅模板](https://github.com/gkd-kit/subscription-template) 快速构建自己的订阅\n\n- 如何编写订阅/贡献此项目 -> [CONTRIBUTING.md](./CONTRIBUTING.md)\n\n## 交流群\n\n- TG群组：<https://t.me/+8L4eHePgYEZmY2M9>\n\n## 其他\n\n- 在 [GKD官网](https://gkd.li/) 查看 [GKD基础使用教程](https://gkd.li/guide/) 、[常见问题](https://gkd.li/guide/faq) 以及 [API文档](https://gkd.li/api/)\n\n- 查看 [规则编写教程](https://github.com/Snoopy1866/notebook/blob/main/04%20Others/GKD%20%E8%A7%84%E5%88%99%E7%BC%96%E5%86%99%E6%95%99%E7%A8%8B/gkd-rule-tutorial.md) By [@Snoopy1866](https://github.com/Snoopy1866)\n\n- 使用 [GKD网页审查工具增强脚本](https://github.com/adproqwq/MakeGKDInspectBetter) 可以高度自定义从网页复制出来的规则，提高规则编写效率\n\n## 感谢以下项目\n\n[gkd-kit/subscription](https://github.com/gkd-kit/subscription)\n\n## 感谢以下开发者的贡献\n\n![img](https://contrib.rocks/image?repo=AIsouler/GKD_subscription&_v=406)\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=AIsouler/GKD_subscription&type=Date)](https://star-history.com/#AIsouler/GKD_subscription&Date)\n"
  },
  {
    "path": "Selectors.md",
    "content": "# 一些比较通用的规则以及适用场景\n\n## 开屏广告（全局规则）\n\n### 通用情况\n\n适用于大部分的情况\n\n- 选择器\n\n```txt\nanyMatches: [\n  '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n  '@[name$=\"View\" || name$=\"LinearLayout\"][clickable=true][childCount<2][width<300 && height<200] - [text=\"互动广告\"][visibleToUser=true]',\n  '[childCount=0][visibleToUser=true][width<500 && height<300][(text.length<10 && (text*=\"跳过\" || text*=\"跳 过\" || text*=\"跳過\" || text~=\"(?is).*skip.*\") && text!*=\"视频\" && text!*=\"片头\" && text!*=\"片尾\") || (vid~=\"(?is).*skip.*\" && vid!~=\"(?is).*video.*\" && vid!~=\"(?is).*head.*\" && vid!~=\"(?is).*tail.*\" && !(text=\"帮助\") && !(text=\"取消\") && !(text*=\"退出\")) || id$=\"tt_splash_skip_btn\" || (desc.length<10 && (desc*=\"跳过\" || desc*=\"跳過\" || desc~=\"(?is).*skip.*\"))]',\n],\n```\n\n### 字节开屏广告\n\n右上角是圆形跳过按钮，被一个黄色圆圈包围 **（第一个选择器可快速查询，第二个选择器不可快速查询！）**\n\n- 选择器\n\n```txt\nanyMatches: [\n  '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n  'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n],\n```\n\n示例：\n\n|                                                               |                                                               |                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/c5926547-7642-4d55-9fbc-d4813ab35acf) | ![img](https://e.gkd.li/77e8fe12-f993-4712-8108-2b6bf2fa1135) | ![img](https://e.gkd.li/f11e0685-6baf-4372-acc5-d67c37d46b20) | ![img](https://e.gkd.li/8ee140eb-320e-440f-849d-ef97295b6162) |\n\n### 排除匹配\n\n由于上面有两个选择器都匹配 `跳过` 字样，虽然开屏广告规则限制了 `匹配时间、匹配次数、以及文本长度` ，但还是可能存在误触的情况，特别是在应用的搜索页，所以可使用以下选择器来排除匹配应用的搜索页面或其他误触页面 **（可快速查询！）**\n\n- 选择器\n\n```txt\n([text*=\"搜索\" || text=\"历史记录\" || text$=\"在搜\"][text.length>3 && text.length<7][visibleToUser=true]) || ([text=\"Submit\" || text*=\"阅读并同意\" || text=\"书签\" || text=\"NEXT\"][visibleToUser=true]) || ([text$=\"设置\" || text$=\"选好了\" || text^=\"下一步\" || text^=\"完成\" || text*=\"跳过片\"][text.length<10][visibleToUser=true]) || ([text^=\"选择\"][text*=\"偏好\" || text*=\"兴趣\" || text*=\"喜好\"][text.length<10][visibleToUser=true])\n```\n\n之所以限制文本长度 `[text.length>3 && text.length<6]` ，是因为有部分应用在加载开屏广告时会把首页的节点也加载出来，而大部分应用的首页顶部都会有一个搜索框，可能也会有“搜索”两个字，如果排除匹配内包含了 `vid*=\"search\"` 和 `text=\"搜索\"` ，那么这种情况下无法跳过开屏广告，并且 `vid*=\"search\"` 不支持快速查询，所以去掉了 `vid*=\"search\"` 和 `text=\"搜索\"` ，使得排除匹配选择器只能匹配上大部分应用搜索页存在的文本：`搜索记录` 、`搜索历史` 、`搜索发现` 、`历史记录` 、`最近搜索` 、`最近在搜` 、`大家都在搜` 等等，这样就能实现仅排除匹配应用的搜索页，而不排除匹配应用的首页，避免出现上述无法跳过开屏广告的情况\n\n## 更新提示（全局规则）\n\n- matches数组 **（可快速查询！）**\n\n```txt\nmatches: [\n  '[text*=\"内测\" || text*=\"测试版\" || text*=\"新版\" || text*=\"更新\" || text*=\"升级\" || text*=\"体验\" || text*=\"內測\" || text*=\"測試版\" || text*=\"升級\" || text*=\"體驗\" || text*=\"Update\" || text*=\"Upgrade\" || text*=\"Experience\"][text!*=\"自动\" && text!*=\"自動\" && text!*=\"成功\" && text!*=\"失败\" && text!*=\"失敗\" && text!*=\"检查更新\" && text!*=\"检测更新\" && text!*=\"卸载\"][childCount=0][visibleToUser=true]',\n  '[text*=\"更新\" || text*=\"下载\" || text*=\"安装\" || text*=\"升级\" || text*=\"查看\" || text*=\"体验\" || text*=\"确定\" || text*=\"确认\"][text.length<6][childCount=0][visibleToUser=true]',\n  '([text*=\"不再提醒\" || text$=\"再说\" || text$=\"拒绝\" || text$=\"再想想\" || text*=\"再看看\" || text^=\"忽略\" || text^=\"暂不\" || text^=\"放弃\" || text^=\"取消\" || text$=\"不要\" || text$=\"再說\" || text$=\"暫不\" || text$=\"拒絕\" || text*=\"稍后\" || text^=\"关闭\" || text$=\"Later\" || text^=\"Ignore\" || text^=\"Not now\" || text^=\"Cancel\"][!(text*=\"取消\"&&text*=\"忽略\")][text.length<6][childCount=0][visibleToUser=true]) || ([vid=\"closeIv\" || vid=\"iv_close\" || vid=\"iv_cancel\" || vid=\"close\" || vid=\"Close\" || vid=\"img_close\" || vid=\"btn_close\" || vid=\"ivCancel\" || vid=\"tvCancel\" || vid=\"cancel\" || vid=\"Cancel\" || vid=\"ivClose\" || vid=\"imgClose\" || vid=\"iv_negative\" || vid=\"update_close_icon\"][childCount=0][visibleToUser=true])',\n],\n```\n\n- 排除匹配，防止在一些安装页面误触 **（可快速查询！）**\n\n```txt\n([text*=\"全部\"][text*=\"更新\" || text*=\"忽略\"][text.length<7][visibleToUser=true]) || ([text^=\"继续\" || text^=\"仍然\" || text*=\"权限\"][text.length<6][visibleToUser=true]) || ([text*=\"来源\"][visibleToUser=true])\n```\n\n## 青少年模式（全局规则）\n\n- matches数组 **（可快速查询！）**\n\n```txt\nmatches: [\n  '[text*=\"青少年\" || text*=\"未成年\" || text*=\"儿童\"][text*=\"模式\" || text*=\"守护\"][text.length<15][childCount=0][visibleToUser=true]',\n  '[text*=\"知道了\" || text*=\"我已知晓\" || text*=\"已满\" || text*=\"不再提醒\"][text.length<8][childCount=0][visibleToUser=true]',\n],\n```\n\n## 弹窗广告\n\n### 腾讯广告\n\n前两个可适用于大部分情况，底部有醒目文本按钮\n\n- 选择器-1 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/13264383](https://i.gkd.li/i/13264383?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVtwYXJlbnQuY2hpbGRDb3VudD4zXSArbiBGcmFtZUxheW91dCA-KDEsMikgW3RleHRePSLnq4vljbMiIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i5LqG6Kej5pu05aSaIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/13852448](https://i.gkd.li/i/13852448?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVtwYXJlbnQuY2hpbGRDb3VudD4zXSArbiBGcmFtZUxheW91dCA-KDEsMikgW3RleHRePSLnq4vljbMiIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i5LqG6Kej5pu05aSaIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/14318236](https://i.gkd.li/i/14318236?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVtwYXJlbnQuY2hpbGRDb3VudD4zXSArbiBGcmFtZUxheW91dCA-KDEsMikgW3RleHRePSLnq4vljbMiIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i5LqG6Kej5pu05aSaIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/15400143](https://i.gkd.li/i/15400143?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVtwYXJlbnQuY2hpbGRDb3VudD4zXSArbiBGcmFtZUxheW91dCA-KDEsMikgW3RleHRePSLnq4vljbMiIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i5LqG6Kej5pu05aSaIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/24488993](https://i.gkd.li/i/24488993?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVtwYXJlbnQuY2hpbGRDb3VudD4zXSA8biBGcmFtZUxheW91dCA-KDIsMykgW3RleHRePSLnq4vljbMiIHx8IHRleHQkPSLor6bmg4UiIHx8IHRleHRePSLkuobop6MiIHx8IHRleHQ9IuWOu-W-ruS_oeeci-eciyIgfHwgdGV4dCQ9IuW6lOeUqCIgfHwgdGV4dD0i6L-b5YWl5bCP56iL5bqPIiB8fCB0ZXh0PSLpooblj5bkvJjmg6AiIHx8IHRleHQ9Iui3s-i9rOW-ruS_oSJd)\n\n```txt\n@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]\n```\n\n- 选择器-2 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/13348663](https://i.gkd.li/i/13348663?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSA8MiBGcmFtZUxheW91dFtjaGlsZENvdW50PTVdICsgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0yXSA-IFt0ZXh0Xj0i56uL5Y2zIiB8fCB0ZXh0PSLmn6XnnIvor6bmg4UiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5Y676YCb6YCbIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/13343675](https://i.gkd.li/i/13343675?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSA8MiBGcmFtZUxheW91dFtjaGlsZENvdW50PTVdICsgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0yXSA-IFt0ZXh0Xj0i56uL5Y2zIiB8fCB0ZXh0PSLmn6XnnIvor6bmg4UiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5Y676YCb6YCbIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/16670372](https://i.gkd.li/i/16670372?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSA8MiBGcmFtZUxheW91dFtjaGlsZENvdW50PTVdICsgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0yXSA-IFt0ZXh0Xj0i56uL5Y2zIiB8fCB0ZXh0PSLmn6XnnIvor6bmg4UiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5Y676YCb6YCbIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n[https://i.gkd.li/i/17689929](https://i.gkd.li/i/17689929?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSA8MiBGcmFtZUxheW91dFtjaGlsZENvdW50PTVdICsgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0yXSA-IFt0ZXh0Xj0i56uL5Y2zIiB8fCB0ZXh0PSLmn6XnnIvor6bmg4UiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5Y676YCb6YCbIiB8fCB0ZXh0PSLljrvlvq7kv6HnnIvnnIsiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9Iui_m-WFpeWwj-eoi-W6jyIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIiB8fCB0ZXh0PSLot7Povazlvq7kv6EiXQ)\n\n```txt\n@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]\n```\n\n- 选择器-3 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/14345580](https://i.gkd.li/i/14345580?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSA8KDIsMykgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD00XSArKDEsMikgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0yXSA-MiBbdGV4dF49Iueri-WNsyIgfHwgdGV4dD0i5Y676YCb6YCbIl0)\n\n```txt\n@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <(2,3) FrameLayout[childCount=4] +(1,2) FrameLayout[childCount=2] >2 [text^=\"立即\" || text=\"去逛逛\"]\n```\n\n- 选择器-4 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/13246786](https://i.gkd.li/i/13246786?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSAtIEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ-Ml0gPjMgW3RleHRePSLnq4vljbMiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5p-l55yL6K-m5oOFIl0)\n\n[https://i.gkd.li/i/14783306](https://i.gkd.li/i/14783306?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSAtIEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ-Ml0gPjMgW3RleHRePSLnq4vljbMiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5p-l55yL6K-m5oOFIl0)\n\n[https://i.gkd.li/i/15173845](https://i.gkd.li/i/15173845?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXVt2aXNpYmxlVG9Vc2VyPXRydWVdW3dpZHRoPDkwICYmIGhlaWdodDw5MF0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdW3RleHQ9bnVsbF1bZGVzYz1udWxsXVtpZD1udWxsXSAtIEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ-Ml0gPjMgW3RleHRePSLnq4vljbMiIHx8IHRleHQkPSLlupTnlKgiIHx8IHRleHQ9IuS6huino-abtOWkmiIgfHwgdGV4dD0i5p-l55yL6K-m5oOFIl0)\n\n```txt\n@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]\n```\n\n示例图：\n\n|                                                               |                                                               |                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/453db543-253a-4e96-80c5-60034bc15efc) | ![img](https://e.gkd.li/224bbf65-6cac-4d69-8548-6e33dfb4bf59) | ![img](https://e.gkd.li/b32e6921-b227-47f6-b189-2bc2fee2b23b) | ![img](https://e.gkd.li/3431d81b-9a1f-48b4-a061-76dc26568c2e) |\n| ![img](https://e.gkd.li/bc2e0453-1da8-43db-ad18-ec69d72e3c75) | ![img](https://e.gkd.li/5fab8d4e-e37a-4588-bdd9-2cb64490376c) | ![img](https://e.gkd.li/4b71351c-c001-42be-a7dd-a877d1e5d525) | ![img](https://e.gkd.li/3c5ff634-fe35-4ceb-8e67-565ab3367313) |\n\n### 京东广告\n\n底部有 `扭动或点击` 字样，下方有圆形波浪\n\n- 选择器-1 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/17689928](https://i.gkd.li/i/17689928?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bdmlzaWJsZVRvVXNlcj10cnVlXSA8IEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ9MV0gPDIgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0yXSA8MiBGcmFtZUxheW91dFtjaGlsZENvdW50PTJdIDwyIEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ9Ml0gLSBGcmFtZUxheW91dCA-IFt0ZXh0Xj0i5omt5Yqo5oiW54K55Ye7Il0)\n\n```txt\n@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]\n```\n\n- 选择器-2 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/13328126](https://i.gkd.li/i/13328126?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3RleHQ9bnVsbF1bdmlzaWJsZVRvVXNlcj10cnVlXSA8IEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ9MV0gPDMgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD0zXSA8IEZyYW1lTGF5b3V0W2NoaWxkQ291bnQ9Ml0gKzUgRnJhbWVMYXlvdXRbY2hpbGRDb3VudD00XSA-IFt0ZXh0Xj0i5omt5Yqo5oiW54K55Ye7Il0)\n\n```txt\n@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]\n```\n\n示例图：\n\n|                                                               |                                                               |                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/878c7708-329c-49c6-9cf4-daf64e0a5333) | ![img](https://e.gkd.li/5b7e260d-6896-4e9d-bbbf-062f5ec02b86) | ![img](https://e.gkd.li/d31ed6be-1211-4d34-855c-3f454f8f4b3f) | ![img](https://e.gkd.li/7f304ff0-787f-43c8-9048-1826c091f10b) |\n\n### 快手广告\n\n- 选择器，关闭按钮在左上角，`广告` 字样在左下角 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/15362927](https://i.gkd.li/i/15362927?gkd=SW1hZ2VWaWV3W2NoaWxkQ291bnQ9MF1bdGV4dD1udWxsXSA8IEBWaWV3R3JvdXBbY2hpbGRDb3VudD0xXVtjbGlja2FibGU9dHJ1ZV1bdmlzaWJsZVRvVXNlcj10cnVlXSA8IFZpZXdHcm91cCArbiBWaWV3R3JvdXBbY2hpbGRDb3VudD0yXSA-IFt0ZXh0PSLlub_lkYoiXQ)\n\n```txt\nImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]\n```\n\n- matches数组，下方倒计时和关闭按钮用竖线隔开 **（可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/13625303](https://i.gkd.li/i/13625303?gkd=QEltYWdlVmlld1tjbGlja2FibGU9dHJ1ZV0gLSBbdGV4dD0ifCJdIC0gW3RleHQkPSJzIl0)\n\n```txt\nmatches: [\n  '[text=\"广告\"]',\n  '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n],\n```\n\n示例图：\n\n|                                                               |                                                               |                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/fb5baf85-526a-4165-945a-73c1e5be5ef3) | ![img](https://e.gkd.li/bb83286c-a8ac-4971-bdf3-9f23f51de2ed) | ![img](https://e.gkd.li/57e7655b-907b-4635-9ab2-d67adb28db0b) | ![img](https://e.gkd.li/11816daf-c315-4bae-a8d5-290790df5610) |\n\n### 字节广告\n\n有 `反馈` 字样\n\n- 选择器-1 **（可覆盖 95% 的情况，不可快速查询！）**\n\n示例：\n\n[https://i.gkd.li/i/13632639](https://i.gkd.li/i/13632639?gkd=QEltYWdlW2NoaWxkQ291bnQ9MF1bdGV4dD0iIl1bd2lkdGg8NjAgJiYgaGVpZ2h0PDYwXSA8IFZpZXdbY2hpbGRDb3VudD0xXSArIFZpZXcgK24gVmlldyA-IFZpZXdbY2hpbGRDb3VudD0xXSA-IFRleHRWaWV3W3RleHQkPSLlub_lkYoiXQ)\n\n```txt\n@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]\n```\n\n- 选择器-2 **（不可快速查询！）**\n\n```txt\n@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View > [text=\"反馈\"]\n```\n\n- 选择器-3 **（不可快速查询！）**\n\n```txt\n[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]\n```\n\n- 选择器-4 **（不可快速查询！）**\n\n```txt\n[text=\"反馈\"] - View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]\n```\n\n示例图：\n\n|                                                               |                                                               |                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/f058df20-ae01-435b-a0e5-82474944d768) | ![img](https://e.gkd.li/189a48f8-0733-4d08-acec-aa4ad8cc0bb2) | ![img](https://e.gkd.li/7524bc17-8ff6-4fe1-95dd-3b9c4ae0a4e8) | ![img](https://e.gkd.li/27282270-d731-4cd8-a644-0c2b2029dac2) |\n\n## 卡片广告\n\n- 选择器-1 **（可快速查询！）**\n\n```txt\n@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]\n```\n\n示例：\n\n[https://i.gkd.li/i/14469848](https://i.gkd.li/i/14469848?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3Zpc2libGVUb1VzZXI9dHJ1ZV0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdIC0gTGluZWFyTGF5b3V0W2NoaWxkQ291bnQ9Ml0gPiBbdGV4dD0i5LiL6L295bqU55SoIiB8fCB0ZXh0PSLnq4vljbPkuIvovb0iIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIl0)\n\n[https://i.gkd.li/i/13999284](https://i.gkd.li/i/13999284?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3Zpc2libGVUb1VzZXI9dHJ1ZV0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdIC0gTGluZWFyTGF5b3V0W2NoaWxkQ291bnQ9Ml0gPiBbdGV4dD0i5LiL6L295bqU55SoIiB8fCB0ZXh0PSLnq4vljbPkuIvovb0iIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIl0)\n\n[https://i.gkd.li/i/13521680](https://i.gkd.li/i/13521680?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3Zpc2libGVUb1VzZXI9dHJ1ZV0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdIC0gTGluZWFyTGF5b3V0W2NoaWxkQ291bnQ9Ml0gPiBbdGV4dD0i5LiL6L295bqU55SoIiB8fCB0ZXh0PSLnq4vljbPkuIvovb0iIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIl0)\n\n[https://i.gkd.li/i/13488870](https://i.gkd.li/i/13488870?gkd=QEltYWdlVmlld1tjaGlsZENvdW50PTBdW3Zpc2libGVUb1VzZXI9dHJ1ZV0gPCBGcmFtZUxheW91dFtjaGlsZENvdW50PTFdIC0gTGluZWFyTGF5b3V0W2NoaWxkQ291bnQ9Ml0gPiBbdGV4dD0i5LiL6L295bqU55SoIiB8fCB0ZXh0PSLnq4vljbPkuIvovb0iIHx8IHRleHQ9Iuafpeeci-ivpuaDhSIgfHwgdGV4dD0i6aKG5Y-W5LyY5oOgIl0)\n\n示例图：\n\n|                                                               |                                                               |                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/8ae02b37-765b-46bd-a206-74e3f0b1714b) | ![img](https://e.gkd.li/e254a7b5-796a-4fb4-afe5-82fa4af84dc9) | ![img](https://e.gkd.li/9b9b3d63-ffaa-4a49-9bb5-e2e16aa85484) | ![img](https://e.gkd.li/fbf15dce-2355-4d60-b6b3-70d3eaf92abf) |\n\n- 选择器-2 **（可快速查询！）**\n\n```txt\n@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]\n```\n\n[https://i.gkd.li/i/13233916](https://i.gkd.li/i/13233916?gkd=QFZpZXdbY2xpY2thYmxlPXRydWVdW2NoaWxkQ291bnQ9MF1bdmlzaWJsZVRvVXNlcj10cnVlXSA8IEZyYW1lTGF5b3V0W2Rlc2NePSJkaXNsaWtlIl0gKyBGcmFtZUxheW91dCA-MiBbdGV4dD0i5bm_5ZGKIl0)\n\n[https://i.gkd.li/i/12640374](https://i.gkd.li/i/12640374?gkd=QFZpZXdbY2xpY2thYmxlPXRydWVdW2NoaWxkQ291bnQ9MF1bdmlzaWJsZVRvVXNlcj10cnVlXSA8IEZyYW1lTGF5b3V0W2Rlc2NePSJkaXNsaWtlIl0gKyBGcmFtZUxheW91dCA-MiBbdGV4dD0i5bm_5ZGKIl0)\n\n示例图：\n\n|                                                               |                                                               |\n| ------------------------------------------------------------- | ------------------------------------------------------------- |\n| ![img](https://e.gkd.li/93ca48cc-beae-43ee-8d57-ce3dba14e9f5) | ![img](https://e.gkd.li/81548c89-372f-4676-b473-8378fec75d22) |\n"
  },
  {
    "path": "Template.md",
    "content": "# @AIsouler/GKD_subscription\n\n---\n\n## 本仓库已停止维护\n\n> 2026.02.12\n\n建议使用 [GKD订阅模板](https://github.com/gkd-kit/subscription-template) 构建自己的订阅，如果仅供个人使用，维护量其实很小，并不会占用您太多时间。\n\n本仓库包含大量早期不完善的规则，以及一些为兼容特殊场景、不同应用版本和不同系统环境而编写的非常抽象的规则，您可能并不需要这些规则，但它们可能会影响查询效率。\n\n最后，维护这个仓库已经2年时间了，期间也学会了不少东西，最初是凭借着一股热情在维持，但热情终究会耗尽，是时候说再见了。\n\n---\n\n## 声明\n\n- **禁止在国内平台传播**\n- **本仓库仅供本人学习使用**\n- **精力有限，随缘更新**\n\n## 说明\n\n- **致力于编写效率最高、误触最低、覆盖最全面的规则**\n\n- **已适配的规则需要等待发布更新才能生效，北京时间每天凌晨3点会自动发布更新，如果规则没有改动则不会发布更新，在 `GKD订阅界面` 下拉就能检测是否有更新 -> [点击查看更新日志](https://github.com/AIsouler/GKD_subscription/releases)**\n\n- **仅启用 `开屏广告` 一类规则，其它所有规则均需用户手动打开，规则类别里可以批量开启某一类规则，建议按需开启规则，不要无脑开启规则，开启过多规则可能造成规则阻塞从而导致规则触发缓慢甚至不触发，并且规则开启越多耗电也越多 -> [点击查看耗电说明](https://gkd.li/guide/faq#power)**\n\n- **请求适配或报告问题 -> [点击反馈](https://github.com/AIsouler/GKD_subscription/issues/new/choose)**\n\n- **交流讨论（不要在这里反馈） -> [点击查看或开启讨论](https://github.com/AIsouler/GKD_subscription/discussions)**\n\n- **欢迎贡献规则，提交pr前请确认您已仔细阅读 [贡献指南](./CONTRIBUTING.md) 和 [API文档](https://gkd.li/api/)，规则编写可参考 [个人收集的通用规则以及适用场景](./Selectors.md)**\n\n## 订阅\n\n复制以下任意一个链接到 GKD 即可使用本订阅规则\n\n- npmmirror源（国内镜像，推荐大陆用户使用）\n\n```txt\nhttps://registry.npmmirror.com/@aisouler/gkd_subscription/latest/files/dist/AIsouler_gkd.json5\n```\n\n- GitHub源\n\n```txt\nhttps://raw.githubusercontent.com/AIsouler/GKD_subscription/main/dist/AIsouler_gkd.json5\n```\n\n- 当前版本: v--VERSION--\n\n- 当前订阅文件已适配 --APP_SIZE-- 个应用，共有 --GROUP_SIZE-- 应用规则组，--GLOBALGROUP_SIZE-- 全局规则组\n\n- 查看 [适配 APP 列表](./dist/README.md)\n\n- 使用 [GKD订阅模板](https://github.com/gkd-kit/subscription-template) 快速构建自己的订阅\n\n- 如何编写订阅/贡献此项目 -> [CONTRIBUTING.md](./CONTRIBUTING.md)\n\n## 交流群\n\n- TG群组：<https://t.me/+8L4eHePgYEZmY2M9>\n\n## 其他\n\n- 在 [GKD官网](https://gkd.li/) 查看 [GKD基础使用教程](https://gkd.li/guide/) 、[常见问题](https://gkd.li/guide/faq) 以及 [API文档](https://gkd.li/api/)\n\n- 查看 [规则编写教程](https://github.com/Snoopy1866/notebook/blob/main/04%20Others/GKD%20%E8%A7%84%E5%88%99%E7%BC%96%E5%86%99%E6%95%99%E7%A8%8B/gkd-rule-tutorial.md) By [@Snoopy1866](https://github.com/Snoopy1866)\n\n- 使用 [GKD网页审查工具增强脚本](https://github.com/adproqwq/MakeGKDInspectBetter) 可以高度自定义从网页复制出来的规则，提高规则编写效率\n\n## 感谢以下项目\n\n[gkd-kit/subscription](https://github.com/gkd-kit/subscription)\n\n## 感谢以下开发者的贡献\n\n![img](https://contrib.rocks/image?repo=AIsouler/GKD_subscription&_v=--VERSION--)\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=AIsouler/GKD_subscription&type=Date)](https://star-history.com/#AIsouler/GKD_subscription&Date)\n"
  },
  {
    "path": "commitlint.config.ts",
    "content": "import type { UserConfig } from '@commitlint/types';\n\nexport default {\n  extends: ['@commitlint/config-conventional'],\n  rules: {\n    'subject-case': [0],\n  },\n} as UserConfig;\n"
  },
  {
    "path": "dist/AIsouler_gkd.json5",
    "content": "{id:666,name:'AIsouler的GKD订阅-已停止维护',version:406,author:'AIsouler',checkUpdateUrl:'./AIsouler_gkd.version.json5',supportUri:'https://github.com/AIsouler/GKD_subscription/issues/new/choose',categories:[{key:0,name:'开屏广告',enable:true},{key:1,name:'青少年模式',enable:false},{key:2,name:'更新提示',enable:false},{key:3,name:'评价提示',enable:false},{key:4,name:'通知提示',enable:false},{key:5,name:'权限提示',enable:false},{key:6,name:'局部广告',enable:false},{key:7,name:'全屏广告',enable:false},{key:8,name:'分段广告',enable:false},{key:9,name:'功能类',enable:false},{key:10,name:'其他',enable:false}],globalGroups:[{key:0,name:'开屏广告-全局',desc:'关闭打开应用时的开屏广告',order:-10,fastQuery:true,matchTime:10000,actionMaximum:2,resetMatch:'app',forcedTime:10000,actionCdKey:0,actionMaximumKey:0,priorityTime:10000,disableIfAppGroupMatch:'开屏广告',rules:[{key:0,excludeMatches:'([text*=\"搜索\" || text=\"历史记录\" || text$=\"在搜\"][text.length>3 && text.length<7][visibleToUser=true]) || ([text=\"Submit\" || text*=\"阅读并同意\" || text=\"书签\" || text=\"NEXT\"][visibleToUser=true]) || ([text$=\"设置\" || text$=\"选好了\" || text^=\"下一步\" || text^=\"完成\" || text*=\"跳过片\"][text.length<10][visibleToUser=true]) || ([text^=\"选择\"][text*=\"偏好\" || text*=\"兴趣\" || text*=\"喜好\"][text.length<10][visibleToUser=true])',anyMatches:['[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]','@[name$=\"View\" || name$=\"LinearLayout\"][clickable=true][childCount<2][width<300 && height<200] - [text=\"互动广告\"][visibleToUser=true]','[childCount=0][visibleToUser=true][width<500 && height<300][(text.length<10 && (text*=\"跳过\" || text*=\"跳 过\" || text*=\"跳過\" || text~=\"(?is).*skip.*\") && text!*=\"视频\" && text!*=\"片头\" && text!*=\"片尾\") || (vid~=\"(?is).*skip.*\" && vid!~=\"(?is).*video.*\" && vid!~=\"(?is).*head.*\" && vid!~=\"(?is).*tail.*\" && !(text=\"帮助\") && !(text=\"取消\") && !(text*=\"退出\")) || id$=\"tt_splash_skip_btn\" || (desc.length<10 && (desc*=\"跳过\" || desc*=\"跳過\" || desc~=\"(?is).*skip.*\"))]'],snapshotUrls:['https://i.gkd.li/i/21617612','https://i.gkd.li/i/23557410','https://i.gkd.li/i/13421452','https://i.gkd.li/i/24097095','https://i.gkd.li/i/24766641','https://i.gkd.li/i/24330969','https://i.gkd.li/i/24541384','https://i.gkd.li/i/24588777'],excludeSnapshotUrls:['https://i.gkd.li/i/15079224','https://i.gkd.li/i/17108010','https://i.gkd.li/i/18265000','https://i.gkd.li/i/19952277','https://i.gkd.li/i/20946730','https://i.gkd.li/i/20949002','https://i.gkd.li/i/21617520','https://i.gkd.li/i/22634992','https://i.gkd.li/i/23051921','https://i.gkd.li/i/23742770','https://i.gkd.li/i/23743049','https://i.gkd.li/i/23052289','https://i.gkd.li/i/23122415','https://i.gkd.li/i/23225609','https://i.gkd.li/i/23741801','https://i.gkd.li/i/23741779','https://i.gkd.li/i/25039297']},{key:1,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/19685971','https://i.gkd.li/i/19701216','https://i.gkd.li/i/20262130','https://i.gkd.li/i/20768349','https://i.gkd.li/i/20883248','https://i.gkd.li/i/23549504']}],apps:[{id:'com.tencent.mm',enable:false},{id:'li.songe.gkd',enable:false},{id:'com.eg.android.AlipayGphone',enable:false},{id:'com.tencent.wetype',enable:false},{id:'com.tmri.app.main',enable:false},{id:'com.github.android',enable:false},{id:'org.telegram.messenger',enable:false},{id:'com.twitter.android',enable:false},{id:'com.aistra.hail',enable:false},{id:'com.heyanle.easybangumi4',enable:false},{id:'com.perol.pixez',enable:false},{id:'com.perol.play.pixez',enable:false},{id:'com.magicalstory.videos',enable:false},{id:'com.magicalstory.installer',enable:false},{id:'com.guozhigq.pilipala',enable:false},{id:'com.salt.music',enable:false},{id:'com.xuncorp.qinalt.music',enable:false},{id:'com.github.wgh136.pica_comic',enable:false},{id:'com.yenaly.han1meviewer',enable:false},{id:'ru.zdevs.zarchiver',enable:false},{id:'ru.zdevs.zarchiver.pro',enable:false},{id:'me.zhanghai.android.files',enable:false},{id:'com.xjcheng.musictageditor',enable:false},{id:'com.lalilu.lmusic',enable:false},{id:'com.ktls.fileinfo',enable:false},{id:'idm.internet.download.manager',enable:false},{id:'idm.internet.download.manager.plus',enable:false},{id:'com.mxtech.videoplayer',enable:false},{id:'com.mxtech.videoplayer.pro',enable:false},{id:'com.github.kr328.clash',enable:false},{id:'com.x8bit.bitwarden',enable:false},{id:'org.localsend.localsend_app',enable:false},{id:'moe.shizuku.privileged.api',enable:false},{id:'com.ktls.automation',enable:false},{id:'com.deepl.mobiletranslator',enable:false},{id:'com.accessibilitymanager',enable:false},{id:'me.tasy5kg.cutegif',enable:false},{id:'com.absinthe.libchecker',enable:false},{id:'com.github.metacubex.clash.meta',enable:false},{id:'io.github.jd1378.otphelper',enable:false},{id:'com.valvesoftware.android.steam.community',enable:false},{id:'io.legado.app.release',enable:false},{id:'com.getsurfboard',enable:false},{id:'moe.nb4a',enable:false},{id:'com.v2ray.ang',enable:false},{id:'com.v2ray.v2fly',enable:false},{id:'com.xiaoyv.bangumi',enable:false},{id:'com.funny.translation',enable:false},{id:'com.looker.droidify',enable:false},{id:'app.eleven.com.fastfiletransfer',enable:false},{id:'com.idaodan.clean.master',enable:false},{id:'com.samsung.agc.gcam84',enable:false},{id:'com.wsw.cospa',enable:false},{id:'app.mihon',enable:false},{id:'com.rosan.installer.x',enable:false},{id:'app.rikka.savecopy',enable:false},{id:'com.rosan.dhizuku',enable:false},{id:'com.rosan.accounts',enable:false},{id:'com.dv.adm',enable:false},{id:'com.assistant.ongoingclear',enable:false},{id:'org.koitharu.kotatsu',enable:false},{id:'me.ash.reader',enable:false},{id:'com.huanchengfly.tieba.post',enable:false},{id:'com.example.c001apk',enable:false},{id:'dev.anilbeesetti.nextplayer',enable:false},{id:'org.kde.kdeconnect_tp',enable:false},{id:'xyz.adproqwq.GKDTool',enable:false},{id:'com.alibaba.aliyun',enable:false},{id:'com.alicloud.databox',enable:false},{id:'xyz.nextalone.nagram',enable:false},{id:'com.openai.chatgpt',enable:false},{id:'org.telegram.group',enable:false},{id:'com.android.chrome',enable:false},{id:'com.microsoft.emmx',enable:false},{id:'org.mozilla.firefox',enable:false},{id:'org.mozilla.firefox_beta',enable:false},{id:'org.mozilla.fenix',enable:false},{id:'org.mozilla.focus',enable:false},{id:'com.google.android.youtube',enable:false},{id:'com.xunmeng.pinduoduo',enable:false},{id:'com.byyoung.setting',enable:false},{id:'com.mixplorer',enable:false},{id:'com.xjs.ehviewer',enable:false},{id:'rikka.appops',enable:false},{id:'com.vrem.wifianalyzer',enable:false},{id:'remix.myplayer',enable:false},{id:'com.arn.scrobble',enable:false},{id:'org.videolan.vlc',enable:false},{id:'org.geogebra.android.calculator.suite',enable:false},{id:'com.azure.authenticator',enable:false},{id:'com.microsoft.office.officehub',enable:false},{id:'com.microsoft.office.officehubrow',enable:false},{id:'com.microsoft.office.outlook',enable:false},{id:'com.microsoft.office.onenote',enable:false},{id:'com.sonkins.tguitar',enable:false},{id:'com.eumlab.android.prometronome',enable:false},{id:'cn.edu.buaa.wxwork',enable:false},{id:'io.github.muntashirakon.AppManager',enable:false},{id:'moe.shizuku.redirectstorage',enable:false},{id:'web1n.stopapp',enable:false},{id:'com.shatyuka.zhiliao',enable:false},{id:'com.adobe.reader',enable:false},{id:'org.wikipedia',enable:false},{id:'org.kiwix.kiwixmobile',enable:false},{id:'com.brakefield.painter',enable:false},{id:'me.iacn.biliroaming',enable:false},{id:'com.termux',enable:false},{id:'oss.krtirtho.spotube',enable:false},{id:'com.merxury.blocker',enable:false},{id:'moe.minamigo.miuigms',enable:false},{id:'mufanc.tools.applock',enable:false},{id:'com.gankes.tsbattery',enable:false},{id:'com.oasisfeng.nevo.xposed',enable:false},{id:'com.reddit.frontpage',enable:false},{id:'com.ghostflying.locationreportenabler',enable:false},{id:'com.zyc.zcontrol',enable:false},{id:'org.nobody.multitts',enable:false},{id:'deltazero.amarok',enable:false},{id:'com.quark.browser',enable:false},{id:'bin.mt.plus',enable:false},{id:'com.pikcloud.pikpak',enable:false},{id:'com.deepseek.chat',enable:false},{id:'com.yjllq.kito',enable:false},{id:'com.fuck.android.rimet',enable:false},{id:'cn.tinyhai.ban_uninstall',enable:false},{id:'cc.aoeiuv020.iamnotdisabled.hook',enable:false},{id:'cc.aoeiuv020.iamnotdisabled',enable:false},{id:'io.github.jqssun.gpssetter',enable:false},{id:'me.hoshino.novpndetect',enable:false},{id:'com.xchat',enable:false},{id:'com.kooritea.fcmfix',enable:false},{id:'nep.timeline.re_telegram',enable:false},{id:'com.fankes.tsbattery',enable:false},{id:'top.trangle.mbga',enable:false},{id:'cc.microblock.TGStickerProvider',enable:false},{id:'xyz.xfqlittlefan.notdeveloper',enable:false},{id:'com.zhenxi.hunter',enable:false},{id:'com.reveny.nativecheck',enable:false},{id:'cn.lyric.getter',enable:false},{id:'io.github.vvb2060.keyattestation',enable:false},{id:'com.google.android.hmal',enable:false},{id:'com.adguard.android',enable:false},{id:'com.spotify.music',enable:false},{id:'jp.pxv.android',enable:false},{id:'com.fankes.apperrorstracking',enable:false},{id:'com.fankes.epperrorsdemo',enable:false},{id:'com.fankes.miui.notify',enable:false},{id:'com.simo.ssl.killer',enable:false},{id:'net.afdian.afdian',enable:false},{id:'org.thoughtcrime.securesms',enable:false},{id:'com.example.piliplus',enable:false},{id:'com.mtphotosapp',enable:false},{id:'com.predidit.kazumi',enable:false},{id:'com.github.catfriend1.syncthingandroid',enable:false},{id:'com.github.catfriend1.syncthingfork',enable:false},{id:'org.fcitx.fcitx5.android',enable:false},{id:'org.fcitx.fcitx5.android.plugin.clipboard_filter',enable:false},{id:'org.fcitx.fcitx5.android.plugin.rime',enable:false},{id:'org.fcitx.fcitx5.android.plugin.anthy',enable:false},{id:'org.fdroid.fdroid',enable:false},{id:'org.fdroid.fdroid.privileged',enable:false},{id:'com.digibites.accubattery',enable:false},{id:'com.domosekai.cardreader',enable:false},{id:'com.noctuasoftware.stellarium_free',enable:false},{id:'net.osmand',enable:false},{id:'net.osmand.plus',enable:false},{id:'com.google.android.apps.maps',enable:false},{id:'com.jiaohua_browser',enable:false},{id:'com.picacomic.fregata',enable:false},{id:'com.rosan.installer.x.revived',enable:false},{id:'com.android.gpstest',enable:false},{id:'com.positron_it.zlib',enable:false},{id:'org.sunsetware.phocid',enable:false},{id:'com.twifucker.hachidori',enable:false},{id:'me.neko.fckvip',enable:false},{id:'gr.nikolasspyr.integritycheck',enable:false},{id:'com.luckyzyx.luckytool',enable:false},{id:'ai.x.grok',enable:false},{id:'xyz.malkki.neostumbler.fdroid',enable:false},{id:'org.torproject.torbrowser',enable:false},{id:'proton.android.authenticator',enable:false},{id:'io.safepal.wallet',enable:false},{id:'org.documentfoundation.libreoffice',enable:false},{id:'be.mygod.vpnhotspot_foss',enable:false},{id:'io.nekohasekai.sfa',enable:false},{id:'com.binance.dev',enable:false},{id:'com.superproductivity.superproductivity',enable:false},{id:'com.canghai.haoka',enable:false},{id:'com.xy.td',enable:false},{id:'com.bug.hookvip',enable:false},{id:'one.yufz.hmspush',enable:false},{id:'io.github.huskydg.magisk',enable:false},{id:'xzr.konabess',enable:false},{id:'org.lsposed.manager',enable:false},{id:'org.lsposed.daemon',enable:false},{id:'tw.nekomimi.nekogram',enable:false},{id:'io.github.qauxv',enable:false},{id:'com.rezvorck.tiktokplugin',enable:false},{id:'com.zhiliaoapp.musically',enable:false},{id:'com.github.tianma8023.xposed.smscode',enable:false},{id:'Han.GJZS',enable:false},{id:'org.adblockplus.adblockplussbrowser',enable:false},{id:'com.viewblocker.jrsen',enable:false},{id:'com.tsng.hidemyapplist',enable:false},{id:'com.pittvandewitt.wavelet',enable:false},{id:'one.yufz.onebox',enable:false},{id:'com.Wecrane.Scar.pubg',enable:false},{id:'me.bmax.apatch',enable:false},{id:'com.tubevpn.client',enable:false},{id:'github.tornaco.android.thanos.pro',enable:false},{id:'com.omarea.vtools',enable:false},{id:'com.litebyte.samhelper',enable:false},{id:'com.nurke.perfectone',enable:false},{id:'qlenlen.OneDesign',enable:false},{id:'icu.nullptr.nativetest',enable:false},{id:'icu.nullptr.applistdetector',enable:false},{id:'io.github.vvb2060.mahoshojo',enable:false},{id:'com.samsung.android.memoryguardian',enable:false},{id:'com.music.khkj',enable:false},{id:'Hook.JiuWu.Xp',enable:false},{id:'me.weishu.kernelsu',enable:false},{id:'com.franco.kernel',enable:false},{id:'com.samsung.android.themedesigner',enable:false},{id:'com.samsung.android.game.gamehome',enable:false},{id:'com.tencent.tmgp.sgame',enable:false},{id:'com.yangyanghuzhou.heijuan',enable:false},{id:'com.sec.android.app.sbrowser',enable:false},{id:'com.samsung.android.game.gamelab',enable:false},{id:'com.Twilight.tools',enable:false},{id:'com.miui.securitymanager',enable:false},{id:'com.google.android.documentsui',enable:false},{id:'com.android.settings',enable:false},{id:'com.miui.creation',enable:false},{id:'com.xiaomi.scanner',enable:false},{id:'com.miui.gallery',enable:false},{id:'com.yozo.office',enable:false},{id:'com.miui.video',enable:false},{id:'com.xiaomi.wpslauncher',enable:false},{id:'com.sevtinge.hyperceiler',enable:false},{id:'com.dna.tools',enable:false},{id:'flar2.devcheck',enable:false},{id:'com.github.capntrips.kernelflasher',enable:false},{id:'com.google.android.googlequicksearchbox',enable:false},{id:'qyz.onedesign',enable:false},{id:'com.samsung.android.app.repaircal',enable:false},{id:'com.yhchat.app',enable:false},{id:'com.skyhand.sinahelper',enable:false},{id:'com.rong862.bear',enable:false},{id:'be.mygod.vpnhotspot',enable:false},{id:'com.samsung.android.bixby.agent',enable:false},{id:'com.reveny.vbmetafix.service',enable:false},{id:'com.google.android.gms',enable:false},{id:'com.android.vending',enable:false},{id:'com.android.camera',enable:false},{id:'com.android.traceur',enable:false},{id:'com.android.mms',enable:false},{id:'com.google.android.accessibility.switchaccess',enable:false},{id:'com.miui.voiceassist',enable:false},{id:'com.android.fileexplorer',enable:false},{id:'com.miui.miservice',enable:false},{id:'com.miui.huanji',enable:false},{id:'com.miui.weather2',enable:false},{id:'com.miui.calculator',enable:false},{id:'com.android.soundrecorder',enable:false},{id:'com.android.email',enable:false},{id:'com.miui.screenrecorder',enable:false},{id:'com.android.deskclock',enable:false},{id:'com.miui.newmidrive',enable:false},{id:'cn.wps.moffice_eng.xiaomi.lite',enable:false},{id:'com.miui.mediaeditor',enable:false},{id:'com.miui.notes',enable:false},{id:'com.miui.cleanmaster',enable:false},{id:'com.miui.compass',enable:false},{id:'com.duokan.phone.remotecontroller',enable:false},{id:'com.mfashiongallery.emag',enable:false},{id:'com.miui.thirdappassistant',enable:false},{id:'com.xiaomi.cajlauncher',enable:false},{id:'com.mi.car.padapp',enable:false},{id:'com.android.calendar',enable:false},{id:'com.mi.earphone',enable:false},{id:'com.samsung.android.app.cameraassistant',enable:false},{id:'com.samsung.android.app.galaxyraw',enable:false},{id:'com.samsung.android.appbooster',enable:false},{id:'com.android.samsung.utilityapp',enable:false},{id:'com.samsung.android.goodlock',enable:false},{id:'com.samsung.android.thermalguardian',enable:false},{id:'com.samsung.android.calendar',enable:false},{id:'com.samsung.android.app.notes',enable:false},{id:'com.samsung.android.app.sreminder',enable:false},{id:'com.samsung.android.app.watchmanager',enable:false},{id:'com.samsung.android.app.reminder',enable:false},{id:'com.adguard.android.contentblocker',enable:false},{id:'com.sec.android.app.music',enable:false},{id:'com.sec.android.app.voicenote',enable:false},{id:'com.futuremark.dmandroid.application',enable:false},{id:'com.sec.android.app.clockpackage',enable:false},{id:'mark.via',enable:false},{id:'mark.via.gp',enable:false},{id:'com.mmbox.xbrowser',enable:false},{id:'com.mmbox.xbrowser.pro',enable:false},{id:'com.mycompany.app.soulbrowser',enable:false},{id:'com.google.android.contactkeys',enable:false},{id:'com.google.android.safetycore',enable:false},{id:'com.taptap',enable:false},{id:'com.sankuai.meituan',enable:false},{id:'com.bbk.appstore',enable:true},{id:'com.tencent.southpole.appstore',enable:true},{id:'com.heytap.browser',enable:true},{id:'com.heytap.themestore',enable:true},{id:'com.bbk.theme',enable:true},{id:'com.vivo.game',enable:true},{id:'com.meizu.media.video',enable:true},{id:'com.hihonor.vmall',enable:true},{id:'com.miui.systemAdSolution',enable:true}]},{key:1,name:'更新提示-全局',desc:'关闭应用的更新弹窗',order:-9,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',disableIfAppGroupMatch:'更新提示',rules:[{key:0,excludeMatches:'([text*=\"全部\"][text*=\"更新\" || text*=\"忽略\"][text.length<7][visibleToUser=true]) || ([text^=\"继续\" || text^=\"仍然\" || text*=\"权限\"][text.length<6][visibleToUser=true]) || ([text*=\"来源\"][visibleToUser=true])',matches:['[text*=\"内测\" || text*=\"测试版\" || text*=\"新版\" || text*=\"更新\" || text*=\"升级\" || text*=\"体验\" || text*=\"內測\" || text*=\"測試版\" || text*=\"升級\" || text*=\"體驗\" || text*=\"Update\" || text*=\"Upgrade\" || text*=\"Experience\"][text!*=\"自动\" && text!*=\"自動\" && text!*=\"成功\" && text!*=\"失败\" && text!*=\"失敗\" && text!*=\"检查更新\" && text!*=\"检测更新\" && text!*=\"卸载\"][childCount=0][visibleToUser=true]','[text*=\"更新\" || text*=\"下载\" || text*=\"安装\" || text*=\"升级\" || text*=\"查看\" || text*=\"体验\" || text*=\"确定\" || text*=\"确认\" || text*=\"应用市场\"][text.length<6][childCount=0][visibleToUser=true]','([text*=\"不再提醒\" || text$=\"再说\" || text$=\"拒绝\" || text$=\"再想想\" || text*=\"再看看\" || text^=\"忽略\" || text^=\"暂不\" || text^=\"放弃\" || text^=\"取消\" || text$=\"不要\" || text$=\"再說\" || text$=\"暫不\" || text$=\"拒絕\" || text*=\"稍后\" || text^=\"关闭\" || text$=\"Later\" || text^=\"Ignore\" || text^=\"Not now\" || text^=\"Cancel\"][!(text*=\"取消\"&&text*=\"忽略\")][text.length<6][childCount=0][visibleToUser=true]) || ([vid=\"closeIv\" || vid=\"iv_close\" || vid=\"iv_cancel\" || vid=\"close\" || vid=\"Close\" || vid=\"img_close\" || vid=\"btn_close\" || vid=\"ivCancel\" || vid=\"tvCancel\" || vid=\"cancel\" || vid=\"Cancel\" || vid=\"ivClose\" || vid=\"imgClose\" || vid=\"iv_negative\" || vid=\"update_close_icon\"][childCount=0][visibleToUser=true])'],snapshotUrls:'https://i.gkd.li/i/24158267',excludeSnapshotUrls:['https://i.gkd.li/i/17710149','https://i.gkd.li/i/19605413','https://i.gkd.li/i/19918544','https://i.gkd.li/i/20033908','https://i.gkd.li/i/16487278','https://i.gkd.li/i/16487282','https://i.gkd.li/i/16550275','https://i.gkd.li/i/20053957']}],apps:[{id:'com.tencent.mm',enable:false},{id:'li.songe.gkd',enable:false},{id:'com.eg.android.AlipayGphone',enable:false},{id:'com.tencent.wetype',enable:false},{id:'com.tmri.app.main',enable:false},{id:'com.github.android',enable:false},{id:'org.telegram.messenger',enable:false},{id:'com.twitter.android',enable:false},{id:'com.aistra.hail',enable:false},{id:'com.heyanle.easybangumi4',enable:false},{id:'com.perol.pixez',enable:false},{id:'com.perol.play.pixez',enable:false},{id:'com.magicalstory.videos',enable:false},{id:'com.magicalstory.installer',enable:false},{id:'com.guozhigq.pilipala',enable:false},{id:'com.salt.music',enable:false},{id:'com.xuncorp.qinalt.music',enable:false},{id:'com.github.wgh136.pica_comic',enable:false},{id:'com.yenaly.han1meviewer',enable:false},{id:'ru.zdevs.zarchiver',enable:false},{id:'ru.zdevs.zarchiver.pro',enable:false},{id:'me.zhanghai.android.files',enable:false},{id:'com.xjcheng.musictageditor',enable:false},{id:'com.lalilu.lmusic',enable:false},{id:'com.ktls.fileinfo',enable:false},{id:'idm.internet.download.manager',enable:false},{id:'idm.internet.download.manager.plus',enable:false},{id:'com.mxtech.videoplayer',enable:false},{id:'com.mxtech.videoplayer.pro',enable:false},{id:'com.github.kr328.clash',enable:false},{id:'com.x8bit.bitwarden',enable:false},{id:'org.localsend.localsend_app',enable:false},{id:'moe.shizuku.privileged.api',enable:false},{id:'com.ktls.automation',enable:false},{id:'com.deepl.mobiletranslator',enable:false},{id:'com.accessibilitymanager',enable:false},{id:'me.tasy5kg.cutegif',enable:false},{id:'com.absinthe.libchecker',enable:false},{id:'com.github.metacubex.clash.meta',enable:false},{id:'io.github.jd1378.otphelper',enable:false},{id:'com.valvesoftware.android.steam.community',enable:false},{id:'io.legado.app.release',enable:false},{id:'com.getsurfboard',enable:false},{id:'moe.nb4a',enable:false},{id:'com.v2ray.ang',enable:false},{id:'com.v2ray.v2fly',enable:false},{id:'com.xiaoyv.bangumi',enable:false},{id:'com.funny.translation',enable:false},{id:'com.looker.droidify',enable:false},{id:'app.eleven.com.fastfiletransfer',enable:false},{id:'com.idaodan.clean.master',enable:false},{id:'com.samsung.agc.gcam84',enable:false},{id:'com.wsw.cospa',enable:false},{id:'app.mihon',enable:false},{id:'com.rosan.installer.x',enable:false},{id:'app.rikka.savecopy',enable:false},{id:'com.rosan.dhizuku',enable:false},{id:'com.rosan.accounts',enable:false},{id:'com.dv.adm',enable:false},{id:'com.assistant.ongoingclear',enable:false},{id:'org.koitharu.kotatsu',enable:false},{id:'me.ash.reader',enable:false},{id:'com.huanchengfly.tieba.post',enable:false},{id:'com.example.c001apk',enable:false},{id:'dev.anilbeesetti.nextplayer',enable:false},{id:'org.kde.kdeconnect_tp',enable:false},{id:'xyz.adproqwq.GKDTool',enable:false},{id:'com.alibaba.aliyun',enable:false},{id:'com.alicloud.databox',enable:false},{id:'xyz.nextalone.nagram',enable:false},{id:'com.openai.chatgpt',enable:false},{id:'org.telegram.group',enable:false},{id:'com.android.chrome',enable:false},{id:'com.microsoft.emmx',enable:false},{id:'org.mozilla.firefox',enable:false},{id:'org.mozilla.firefox_beta',enable:false},{id:'org.mozilla.fenix',enable:false},{id:'org.mozilla.focus',enable:false},{id:'com.google.android.youtube',enable:false},{id:'com.xunmeng.pinduoduo',enable:false},{id:'com.byyoung.setting',enable:false},{id:'com.mixplorer',enable:false},{id:'com.xjs.ehviewer',enable:false},{id:'rikka.appops',enable:false},{id:'com.vrem.wifianalyzer',enable:false},{id:'remix.myplayer',enable:false},{id:'com.arn.scrobble',enable:false},{id:'org.videolan.vlc',enable:false},{id:'org.geogebra.android.calculator.suite',enable:false},{id:'com.azure.authenticator',enable:false},{id:'com.microsoft.office.officehub',enable:false},{id:'com.microsoft.office.officehubrow',enable:false},{id:'com.microsoft.office.outlook',enable:false},{id:'com.microsoft.office.onenote',enable:false},{id:'com.sonkins.tguitar',enable:false},{id:'com.eumlab.android.prometronome',enable:false},{id:'cn.edu.buaa.wxwork',enable:false},{id:'io.github.muntashirakon.AppManager',enable:false},{id:'moe.shizuku.redirectstorage',enable:false},{id:'web1n.stopapp',enable:false},{id:'com.shatyuka.zhiliao',enable:false},{id:'com.adobe.reader',enable:false},{id:'org.wikipedia',enable:false},{id:'org.kiwix.kiwixmobile',enable:false},{id:'com.brakefield.painter',enable:false},{id:'me.iacn.biliroaming',enable:false},{id:'com.termux',enable:false},{id:'oss.krtirtho.spotube',enable:false},{id:'com.merxury.blocker',enable:false},{id:'moe.minamigo.miuigms',enable:false},{id:'mufanc.tools.applock',enable:false},{id:'com.gankes.tsbattery',enable:false},{id:'com.oasisfeng.nevo.xposed',enable:false},{id:'com.reddit.frontpage',enable:false},{id:'com.ghostflying.locationreportenabler',enable:false},{id:'com.zyc.zcontrol',enable:false},{id:'org.nobody.multitts',enable:false},{id:'deltazero.amarok',enable:false},{id:'com.quark.browser',enable:false},{id:'bin.mt.plus',enable:false},{id:'com.pikcloud.pikpak',enable:false},{id:'com.deepseek.chat',enable:false},{id:'com.yjllq.kito',enable:false},{id:'com.fuck.android.rimet',enable:false},{id:'cn.tinyhai.ban_uninstall',enable:false},{id:'cc.aoeiuv020.iamnotdisabled.hook',enable:false},{id:'cc.aoeiuv020.iamnotdisabled',enable:false},{id:'io.github.jqssun.gpssetter',enable:false},{id:'me.hoshino.novpndetect',enable:false},{id:'com.xchat',enable:false},{id:'com.kooritea.fcmfix',enable:false},{id:'nep.timeline.re_telegram',enable:false},{id:'com.fankes.tsbattery',enable:false},{id:'top.trangle.mbga',enable:false},{id:'cc.microblock.TGStickerProvider',enable:false},{id:'xyz.xfqlittlefan.notdeveloper',enable:false},{id:'com.zhenxi.hunter',enable:false},{id:'com.reveny.nativecheck',enable:false},{id:'cn.lyric.getter',enable:false},{id:'io.github.vvb2060.keyattestation',enable:false},{id:'com.google.android.hmal',enable:false},{id:'com.adguard.android',enable:false},{id:'com.spotify.music',enable:false},{id:'jp.pxv.android',enable:false},{id:'com.fankes.apperrorstracking',enable:false},{id:'com.fankes.epperrorsdemo',enable:false},{id:'com.fankes.miui.notify',enable:false},{id:'com.simo.ssl.killer',enable:false},{id:'net.afdian.afdian',enable:false},{id:'org.thoughtcrime.securesms',enable:false},{id:'com.example.piliplus',enable:false},{id:'com.mtphotosapp',enable:false},{id:'com.predidit.kazumi',enable:false},{id:'com.github.catfriend1.syncthingandroid',enable:false},{id:'com.github.catfriend1.syncthingfork',enable:false},{id:'org.fcitx.fcitx5.android',enable:false},{id:'org.fcitx.fcitx5.android.plugin.clipboard_filter',enable:false},{id:'org.fcitx.fcitx5.android.plugin.rime',enable:false},{id:'org.fcitx.fcitx5.android.plugin.anthy',enable:false},{id:'org.fdroid.fdroid',enable:false},{id:'org.fdroid.fdroid.privileged',enable:false},{id:'com.digibites.accubattery',enable:false},{id:'com.domosekai.cardreader',enable:false},{id:'com.noctuasoftware.stellarium_free',enable:false},{id:'net.osmand',enable:false},{id:'net.osmand.plus',enable:false},{id:'com.google.android.apps.maps',enable:false},{id:'com.jiaohua_browser',enable:false},{id:'com.picacomic.fregata',enable:false},{id:'com.rosan.installer.x.revived',enable:false},{id:'com.android.gpstest',enable:false},{id:'com.positron_it.zlib',enable:false},{id:'org.sunsetware.phocid',enable:false},{id:'com.twifucker.hachidori',enable:false},{id:'me.neko.fckvip',enable:false},{id:'gr.nikolasspyr.integritycheck',enable:false},{id:'com.luckyzyx.luckytool',enable:false},{id:'ai.x.grok',enable:false},{id:'xyz.malkki.neostumbler.fdroid',enable:false},{id:'org.torproject.torbrowser',enable:false},{id:'proton.android.authenticator',enable:false},{id:'io.safepal.wallet',enable:false},{id:'org.documentfoundation.libreoffice',enable:false},{id:'be.mygod.vpnhotspot_foss',enable:false},{id:'io.nekohasekai.sfa',enable:false},{id:'com.binance.dev',enable:false},{id:'com.superproductivity.superproductivity',enable:false},{id:'com.canghai.haoka',enable:false},{id:'com.xy.td',enable:false},{id:'com.bug.hookvip',enable:false},{id:'one.yufz.hmspush',enable:false},{id:'io.github.huskydg.magisk',enable:false},{id:'xzr.konabess',enable:false},{id:'org.lsposed.manager',enable:false},{id:'org.lsposed.daemon',enable:false},{id:'tw.nekomimi.nekogram',enable:false},{id:'io.github.qauxv',enable:false},{id:'com.rezvorck.tiktokplugin',enable:false},{id:'com.zhiliaoapp.musically',enable:false},{id:'com.github.tianma8023.xposed.smscode',enable:false},{id:'Han.GJZS',enable:false},{id:'org.adblockplus.adblockplussbrowser',enable:false},{id:'com.viewblocker.jrsen',enable:false},{id:'com.tsng.hidemyapplist',enable:false},{id:'com.pittvandewitt.wavelet',enable:false},{id:'one.yufz.onebox',enable:false},{id:'com.Wecrane.Scar.pubg',enable:false},{id:'me.bmax.apatch',enable:false},{id:'com.tubevpn.client',enable:false},{id:'github.tornaco.android.thanos.pro',enable:false},{id:'com.omarea.vtools',enable:false},{id:'com.litebyte.samhelper',enable:false},{id:'com.nurke.perfectone',enable:false},{id:'qlenlen.OneDesign',enable:false},{id:'icu.nullptr.nativetest',enable:false},{id:'icu.nullptr.applistdetector',enable:false},{id:'io.github.vvb2060.mahoshojo',enable:false},{id:'com.samsung.android.memoryguardian',enable:false},{id:'com.music.khkj',enable:false},{id:'Hook.JiuWu.Xp',enable:false},{id:'me.weishu.kernelsu',enable:false},{id:'com.franco.kernel',enable:false},{id:'com.samsung.android.themedesigner',enable:false},{id:'com.samsung.android.game.gamehome',enable:false},{id:'com.tencent.tmgp.sgame',enable:false},{id:'com.yangyanghuzhou.heijuan',enable:false},{id:'com.sec.android.app.sbrowser',enable:false},{id:'com.samsung.android.game.gamelab',enable:false},{id:'com.Twilight.tools',enable:false},{id:'com.miui.securitymanager',enable:false},{id:'com.google.android.documentsui',enable:false},{id:'com.android.settings',enable:false},{id:'com.miui.creation',enable:false},{id:'com.xiaomi.scanner',enable:false},{id:'com.miui.gallery',enable:false},{id:'com.yozo.office',enable:false},{id:'com.miui.video',enable:false},{id:'com.xiaomi.wpslauncher',enable:false},{id:'com.sevtinge.hyperceiler',enable:false},{id:'com.dna.tools',enable:false},{id:'flar2.devcheck',enable:false},{id:'com.github.capntrips.kernelflasher',enable:false},{id:'com.google.android.googlequicksearchbox',enable:false},{id:'qyz.onedesign',enable:false},{id:'com.samsung.android.app.repaircal',enable:false},{id:'com.yhchat.app',enable:false},{id:'com.skyhand.sinahelper',enable:false},{id:'com.rong862.bear',enable:false},{id:'be.mygod.vpnhotspot',enable:false},{id:'com.samsung.android.bixby.agent',enable:false},{id:'com.reveny.vbmetafix.service',enable:false},{id:'com.google.android.gms',enable:false},{id:'com.android.vending',enable:false},{id:'com.android.camera',enable:false},{id:'com.android.traceur',enable:false},{id:'com.android.mms',enable:false},{id:'com.google.android.accessibility.switchaccess',enable:false},{id:'com.miui.voiceassist',enable:false},{id:'com.android.fileexplorer',enable:false},{id:'com.miui.miservice',enable:false},{id:'com.miui.huanji',enable:false},{id:'com.miui.weather2',enable:false},{id:'com.miui.calculator',enable:false},{id:'com.android.soundrecorder',enable:false},{id:'com.android.email',enable:false},{id:'com.miui.screenrecorder',enable:false},{id:'com.android.deskclock',enable:false},{id:'com.miui.newmidrive',enable:false},{id:'cn.wps.moffice_eng.xiaomi.lite',enable:false},{id:'com.miui.mediaeditor',enable:false},{id:'com.miui.notes',enable:false},{id:'com.miui.cleanmaster',enable:false},{id:'com.miui.compass',enable:false},{id:'com.duokan.phone.remotecontroller',enable:false},{id:'com.mfashiongallery.emag',enable:false},{id:'com.miui.thirdappassistant',enable:false},{id:'com.xiaomi.cajlauncher',enable:false},{id:'com.mi.car.padapp',enable:false},{id:'com.android.calendar',enable:false},{id:'com.mi.earphone',enable:false},{id:'com.samsung.android.app.cameraassistant',enable:false},{id:'com.samsung.android.app.galaxyraw',enable:false},{id:'com.samsung.android.appbooster',enable:false},{id:'com.android.samsung.utilityapp',enable:false},{id:'com.samsung.android.goodlock',enable:false},{id:'com.samsung.android.thermalguardian',enable:false},{id:'com.samsung.android.calendar',enable:false},{id:'com.samsung.android.app.notes',enable:false},{id:'com.samsung.android.app.sreminder',enable:false},{id:'com.samsung.android.app.watchmanager',enable:false},{id:'com.samsung.android.app.reminder',enable:false},{id:'com.adguard.android.contentblocker',enable:false},{id:'com.sec.android.app.music',enable:false},{id:'com.sec.android.app.voicenote',enable:false},{id:'com.futuremark.dmandroid.application',enable:false},{id:'com.sec.android.app.clockpackage',enable:false},{id:'mark.via',enable:false},{id:'mark.via.gp',enable:false},{id:'com.mmbox.xbrowser',enable:false},{id:'com.mmbox.xbrowser.pro',enable:false},{id:'com.mycompany.app.soulbrowser',enable:false},{id:'com.google.android.contactkeys',enable:false},{id:'com.google.android.safetycore',enable:false},{id:'com.miui.packageinstaller',enable:false},{id:'com.android.packageinstaller',enable:false},{id:'com.google.android.packageinstaller',enable:false},{id:'com.oplus.appdetail',enable:false},{id:'com.samsung.android.packageinstaller',enable:false},{id:'info.muge.appshare',enable:false},{id:'com.jingdong.app.mall',enable:false},{id:'com.netease.uuremote',enable:false},{id:'com.zhjy.study',enable:false},{id:'com.hihonor.phoneservice',enable:true}]},{key:2,name:'青少年模式-全局',desc:'关闭应用的青少年模式弹窗',order:-8,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',disableIfAppGroupMatch:'青少年模式',rules:[{key:0,matches:['[text*=\"青少年\" || text*=\"未成年\" || text*=\"儿童\"][text*=\"模式\" || text*=\"守护\"][text.length<15][childCount=0][visibleToUser=true]','[text*=\"知道了\" || text*=\"我已知晓\" || text*=\"已满\" || text*=\"不再提醒\"][text.length<8][childCount=0][visibleToUser=true]']}],apps:[{id:'com.tencent.mm',enable:false},{id:'li.songe.gkd',enable:false},{id:'com.eg.android.AlipayGphone',enable:false},{id:'com.tencent.wetype',enable:false},{id:'com.tmri.app.main',enable:false},{id:'com.github.android',enable:false},{id:'org.telegram.messenger',enable:false},{id:'com.twitter.android',enable:false},{id:'com.aistra.hail',enable:false},{id:'com.heyanle.easybangumi4',enable:false},{id:'com.perol.pixez',enable:false},{id:'com.perol.play.pixez',enable:false},{id:'com.magicalstory.videos',enable:false},{id:'com.magicalstory.installer',enable:false},{id:'com.guozhigq.pilipala',enable:false},{id:'com.salt.music',enable:false},{id:'com.xuncorp.qinalt.music',enable:false},{id:'com.github.wgh136.pica_comic',enable:false},{id:'com.yenaly.han1meviewer',enable:false},{id:'ru.zdevs.zarchiver',enable:false},{id:'ru.zdevs.zarchiver.pro',enable:false},{id:'me.zhanghai.android.files',enable:false},{id:'com.xjcheng.musictageditor',enable:false},{id:'com.lalilu.lmusic',enable:false},{id:'com.ktls.fileinfo',enable:false},{id:'idm.internet.download.manager',enable:false},{id:'idm.internet.download.manager.plus',enable:false},{id:'com.mxtech.videoplayer',enable:false},{id:'com.mxtech.videoplayer.pro',enable:false},{id:'com.github.kr328.clash',enable:false},{id:'com.x8bit.bitwarden',enable:false},{id:'org.localsend.localsend_app',enable:false},{id:'moe.shizuku.privileged.api',enable:false},{id:'com.ktls.automation',enable:false},{id:'com.deepl.mobiletranslator',enable:false},{id:'com.accessibilitymanager',enable:false},{id:'me.tasy5kg.cutegif',enable:false},{id:'com.absinthe.libchecker',enable:false},{id:'com.github.metacubex.clash.meta',enable:false},{id:'io.github.jd1378.otphelper',enable:false},{id:'com.valvesoftware.android.steam.community',enable:false},{id:'io.legado.app.release',enable:false},{id:'com.getsurfboard',enable:false},{id:'moe.nb4a',enable:false},{id:'com.v2ray.ang',enable:false},{id:'com.v2ray.v2fly',enable:false},{id:'com.xiaoyv.bangumi',enable:false},{id:'com.funny.translation',enable:false},{id:'com.looker.droidify',enable:false},{id:'app.eleven.com.fastfiletransfer',enable:false},{id:'com.idaodan.clean.master',enable:false},{id:'com.samsung.agc.gcam84',enable:false},{id:'com.wsw.cospa',enable:false},{id:'app.mihon',enable:false},{id:'com.rosan.installer.x',enable:false},{id:'app.rikka.savecopy',enable:false},{id:'com.rosan.dhizuku',enable:false},{id:'com.rosan.accounts',enable:false},{id:'com.dv.adm',enable:false},{id:'com.assistant.ongoingclear',enable:false},{id:'org.koitharu.kotatsu',enable:false},{id:'me.ash.reader',enable:false},{id:'com.huanchengfly.tieba.post',enable:false},{id:'com.example.c001apk',enable:false},{id:'dev.anilbeesetti.nextplayer',enable:false},{id:'org.kde.kdeconnect_tp',enable:false},{id:'xyz.adproqwq.GKDTool',enable:false},{id:'com.alibaba.aliyun',enable:false},{id:'com.alicloud.databox',enable:false},{id:'xyz.nextalone.nagram',enable:false},{id:'com.openai.chatgpt',enable:false},{id:'org.telegram.group',enable:false},{id:'com.android.chrome',enable:false},{id:'com.microsoft.emmx',enable:false},{id:'org.mozilla.firefox',enable:false},{id:'org.mozilla.firefox_beta',enable:false},{id:'org.mozilla.fenix',enable:false},{id:'org.mozilla.focus',enable:false},{id:'com.google.android.youtube',enable:false},{id:'com.xunmeng.pinduoduo',enable:false},{id:'com.byyoung.setting',enable:false},{id:'com.mixplorer',enable:false},{id:'com.xjs.ehviewer',enable:false},{id:'rikka.appops',enable:false},{id:'com.vrem.wifianalyzer',enable:false},{id:'remix.myplayer',enable:false},{id:'com.arn.scrobble',enable:false},{id:'org.videolan.vlc',enable:false},{id:'org.geogebra.android.calculator.suite',enable:false},{id:'com.azure.authenticator',enable:false},{id:'com.microsoft.office.officehub',enable:false},{id:'com.microsoft.office.officehubrow',enable:false},{id:'com.microsoft.office.outlook',enable:false},{id:'com.microsoft.office.onenote',enable:false},{id:'com.sonkins.tguitar',enable:false},{id:'com.eumlab.android.prometronome',enable:false},{id:'cn.edu.buaa.wxwork',enable:false},{id:'io.github.muntashirakon.AppManager',enable:false},{id:'moe.shizuku.redirectstorage',enable:false},{id:'web1n.stopapp',enable:false},{id:'com.shatyuka.zhiliao',enable:false},{id:'com.adobe.reader',enable:false},{id:'org.wikipedia',enable:false},{id:'org.kiwix.kiwixmobile',enable:false},{id:'com.brakefield.painter',enable:false},{id:'me.iacn.biliroaming',enable:false},{id:'com.termux',enable:false},{id:'oss.krtirtho.spotube',enable:false},{id:'com.merxury.blocker',enable:false},{id:'moe.minamigo.miuigms',enable:false},{id:'mufanc.tools.applock',enable:false},{id:'com.gankes.tsbattery',enable:false},{id:'com.oasisfeng.nevo.xposed',enable:false},{id:'com.reddit.frontpage',enable:false},{id:'com.ghostflying.locationreportenabler',enable:false},{id:'com.zyc.zcontrol',enable:false},{id:'org.nobody.multitts',enable:false},{id:'deltazero.amarok',enable:false},{id:'com.quark.browser',enable:false},{id:'bin.mt.plus',enable:false},{id:'com.pikcloud.pikpak',enable:false},{id:'com.deepseek.chat',enable:false},{id:'com.yjllq.kito',enable:false},{id:'com.fuck.android.rimet',enable:false},{id:'cn.tinyhai.ban_uninstall',enable:false},{id:'cc.aoeiuv020.iamnotdisabled.hook',enable:false},{id:'cc.aoeiuv020.iamnotdisabled',enable:false},{id:'io.github.jqssun.gpssetter',enable:false},{id:'me.hoshino.novpndetect',enable:false},{id:'com.xchat',enable:false},{id:'com.kooritea.fcmfix',enable:false},{id:'nep.timeline.re_telegram',enable:false},{id:'com.fankes.tsbattery',enable:false},{id:'top.trangle.mbga',enable:false},{id:'cc.microblock.TGStickerProvider',enable:false},{id:'xyz.xfqlittlefan.notdeveloper',enable:false},{id:'com.zhenxi.hunter',enable:false},{id:'com.reveny.nativecheck',enable:false},{id:'cn.lyric.getter',enable:false},{id:'io.github.vvb2060.keyattestation',enable:false},{id:'com.google.android.hmal',enable:false},{id:'com.adguard.android',enable:false},{id:'com.spotify.music',enable:false},{id:'jp.pxv.android',enable:false},{id:'com.fankes.apperrorstracking',enable:false},{id:'com.fankes.epperrorsdemo',enable:false},{id:'com.fankes.miui.notify',enable:false},{id:'com.simo.ssl.killer',enable:false},{id:'net.afdian.afdian',enable:false},{id:'org.thoughtcrime.securesms',enable:false},{id:'com.example.piliplus',enable:false},{id:'com.mtphotosapp',enable:false},{id:'com.predidit.kazumi',enable:false},{id:'com.github.catfriend1.syncthingandroid',enable:false},{id:'com.github.catfriend1.syncthingfork',enable:false},{id:'org.fcitx.fcitx5.android',enable:false},{id:'org.fcitx.fcitx5.android.plugin.clipboard_filter',enable:false},{id:'org.fcitx.fcitx5.android.plugin.rime',enable:false},{id:'org.fcitx.fcitx5.android.plugin.anthy',enable:false},{id:'org.fdroid.fdroid',enable:false},{id:'org.fdroid.fdroid.privileged',enable:false},{id:'com.digibites.accubattery',enable:false},{id:'com.domosekai.cardreader',enable:false},{id:'com.noctuasoftware.stellarium_free',enable:false},{id:'net.osmand',enable:false},{id:'net.osmand.plus',enable:false},{id:'com.google.android.apps.maps',enable:false},{id:'com.jiaohua_browser',enable:false},{id:'com.picacomic.fregata',enable:false},{id:'com.rosan.installer.x.revived',enable:false},{id:'com.android.gpstest',enable:false},{id:'com.positron_it.zlib',enable:false},{id:'org.sunsetware.phocid',enable:false},{id:'com.twifucker.hachidori',enable:false},{id:'me.neko.fckvip',enable:false},{id:'gr.nikolasspyr.integritycheck',enable:false},{id:'com.luckyzyx.luckytool',enable:false},{id:'ai.x.grok',enable:false},{id:'xyz.malkki.neostumbler.fdroid',enable:false},{id:'org.torproject.torbrowser',enable:false},{id:'proton.android.authenticator',enable:false},{id:'io.safepal.wallet',enable:false},{id:'org.documentfoundation.libreoffice',enable:false},{id:'be.mygod.vpnhotspot_foss',enable:false},{id:'io.nekohasekai.sfa',enable:false},{id:'com.binance.dev',enable:false},{id:'com.superproductivity.superproductivity',enable:false},{id:'com.canghai.haoka',enable:false},{id:'com.xy.td',enable:false},{id:'com.bug.hookvip',enable:false},{id:'one.yufz.hmspush',enable:false},{id:'io.github.huskydg.magisk',enable:false},{id:'xzr.konabess',enable:false},{id:'org.lsposed.manager',enable:false},{id:'org.lsposed.daemon',enable:false},{id:'tw.nekomimi.nekogram',enable:false},{id:'io.github.qauxv',enable:false},{id:'com.rezvorck.tiktokplugin',enable:false},{id:'com.zhiliaoapp.musically',enable:false},{id:'com.github.tianma8023.xposed.smscode',enable:false},{id:'Han.GJZS',enable:false},{id:'org.adblockplus.adblockplussbrowser',enable:false},{id:'com.viewblocker.jrsen',enable:false},{id:'com.tsng.hidemyapplist',enable:false},{id:'com.pittvandewitt.wavelet',enable:false},{id:'one.yufz.onebox',enable:false},{id:'com.Wecrane.Scar.pubg',enable:false},{id:'me.bmax.apatch',enable:false},{id:'com.tubevpn.client',enable:false},{id:'github.tornaco.android.thanos.pro',enable:false},{id:'com.omarea.vtools',enable:false},{id:'com.litebyte.samhelper',enable:false},{id:'com.nurke.perfectone',enable:false},{id:'qlenlen.OneDesign',enable:false},{id:'icu.nullptr.nativetest',enable:false},{id:'icu.nullptr.applistdetector',enable:false},{id:'io.github.vvb2060.mahoshojo',enable:false},{id:'com.samsung.android.memoryguardian',enable:false},{id:'com.music.khkj',enable:false},{id:'Hook.JiuWu.Xp',enable:false},{id:'me.weishu.kernelsu',enable:false},{id:'com.franco.kernel',enable:false},{id:'com.samsung.android.themedesigner',enable:false},{id:'com.samsung.android.game.gamehome',enable:false},{id:'com.tencent.tmgp.sgame',enable:false},{id:'com.yangyanghuzhou.heijuan',enable:false},{id:'com.sec.android.app.sbrowser',enable:false},{id:'com.samsung.android.game.gamelab',enable:false},{id:'com.Twilight.tools',enable:false},{id:'com.miui.securitymanager',enable:false},{id:'com.google.android.documentsui',enable:false},{id:'com.android.settings',enable:false},{id:'com.miui.creation',enable:false},{id:'com.xiaomi.scanner',enable:false},{id:'com.miui.gallery',enable:false},{id:'com.yozo.office',enable:false},{id:'com.miui.video',enable:false},{id:'com.xiaomi.wpslauncher',enable:false},{id:'com.sevtinge.hyperceiler',enable:false},{id:'com.dna.tools',enable:false},{id:'flar2.devcheck',enable:false},{id:'com.github.capntrips.kernelflasher',enable:false},{id:'com.google.android.googlequicksearchbox',enable:false},{id:'qyz.onedesign',enable:false},{id:'com.samsung.android.app.repaircal',enable:false},{id:'com.yhchat.app',enable:false},{id:'com.skyhand.sinahelper',enable:false},{id:'com.rong862.bear',enable:false},{id:'be.mygod.vpnhotspot',enable:false},{id:'com.samsung.android.bixby.agent',enable:false},{id:'com.reveny.vbmetafix.service',enable:false},{id:'com.google.android.gms',enable:false},{id:'com.android.vending',enable:false},{id:'com.android.camera',enable:false},{id:'com.android.traceur',enable:false},{id:'com.android.mms',enable:false},{id:'com.google.android.accessibility.switchaccess',enable:false},{id:'com.miui.voiceassist',enable:false},{id:'com.android.fileexplorer',enable:false},{id:'com.miui.miservice',enable:false},{id:'com.miui.huanji',enable:false},{id:'com.miui.weather2',enable:false},{id:'com.miui.calculator',enable:false},{id:'com.android.soundrecorder',enable:false},{id:'com.android.email',enable:false},{id:'com.miui.screenrecorder',enable:false},{id:'com.android.deskclock',enable:false},{id:'com.miui.newmidrive',enable:false},{id:'cn.wps.moffice_eng.xiaomi.lite',enable:false},{id:'com.miui.mediaeditor',enable:false},{id:'com.miui.notes',enable:false},{id:'com.miui.cleanmaster',enable:false},{id:'com.miui.compass',enable:false},{id:'com.duokan.phone.remotecontroller',enable:false},{id:'com.mfashiongallery.emag',enable:false},{id:'com.miui.thirdappassistant',enable:false},{id:'com.xiaomi.cajlauncher',enable:false},{id:'com.mi.car.padapp',enable:false},{id:'com.android.calendar',enable:false},{id:'com.mi.earphone',enable:false},{id:'com.samsung.android.app.cameraassistant',enable:false},{id:'com.samsung.android.app.galaxyraw',enable:false},{id:'com.samsung.android.appbooster',enable:false},{id:'com.android.samsung.utilityapp',enable:false},{id:'com.samsung.android.goodlock',enable:false},{id:'com.samsung.android.thermalguardian',enable:false},{id:'com.samsung.android.calendar',enable:false},{id:'com.samsung.android.app.notes',enable:false},{id:'com.samsung.android.app.sreminder',enable:false},{id:'com.samsung.android.app.watchmanager',enable:false},{id:'com.samsung.android.app.reminder',enable:false},{id:'com.adguard.android.contentblocker',enable:false},{id:'com.sec.android.app.music',enable:false},{id:'com.sec.android.app.voicenote',enable:false},{id:'com.futuremark.dmandroid.application',enable:false},{id:'com.sec.android.app.clockpackage',enable:false},{id:'mark.via',enable:false},{id:'mark.via.gp',enable:false},{id:'com.mmbox.xbrowser',enable:false},{id:'com.mmbox.xbrowser.pro',enable:false},{id:'com.mycompany.app.soulbrowser',enable:false},{id:'com.google.android.contactkeys',enable:false},{id:'com.google.android.safetycore',enable:false},{id:'xxx.pornhub.fuck',enable:false},{id:'com.netease.cloudmusic',enable:false},{id:'com.zhihu.android',enable:false},{id:'com.luna.music',enable:false},{id:'com.baidu.tieba',enable:false},{id:'com.android.bankabc',enable:false},{id:'com.autonavi.minimap',enable:false},{id:'com.baidu.netdisk',enable:false},{id:'com.jingdong.app.mall',enable:false},{id:'com.max.xiaoheihe',enable:false},{id:'com.MobileTicket',enable:false},{id:'com.sinovatech.unicom.ui',enable:false},{id:'com.sdu.didi.psnger',enable:false},{id:'com.sankuai.meituan',enable:false},{id:'com.taobao.idlefish',enable:false},{id:'com.tencent.mobileqq',enable:false},{id:'com.alibaba.android.rimet',enable:false},{id:'com.taptap',enable:false},{id:'com.coolapk.market',enable:false},{id:'com.xunlei.downloadprovider',enable:false},{id:'com.taobao.taobao',enable:false},{id:'com.xingin.xhs',enable:false},{id:'com.ct.client',enable:false},{id:'me.ele',enable:false},{id:'com.tencent.qqmusic',enable:false}]}],apps:[{id:'com.cto51.student',name:'51CTO',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.foundation.activities.MainActivity',matches:'@[vid=\"iv_close\"] - [vid=\"rl_ad\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b646bfb4-0d23-483e-b03e-f827f1c4b155',snapshotUrls:'https://i.gkd.li/i/18308616'}]}]},{id:'com.fiveplay',name:'5EPlay',groups:[{key:1,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.sihp_homepage.module.main.Main2Activity',matches:'@[vid=\"iv_close\"] - * > [text=\"打开消息推送\"]',exampleUrls:'https://m.gkd.li/57941037/020e18ab-1bf1-4639-b32a-777719881dcb',snapshotUrls:'https://i.gkd.li/i/14680645'}]},{key:2,name:'局部广告-首页右下角浮窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.sihp_homepage.module.main.Main2Activity',matches:'[id=\"com.fiveplay:id/iv_ad_float_close\"]',snapshotUrls:'https://i.gkd.li/i/16825082'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.login.view.dialog.UpdateHintDialog',rules:[{key:0,matches:'[vid=\"cb_ignore_version\"][checked=false][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4833b753-6fcd-4caf-b57a-1a27fdfecd0a',snapshotUrls:'https://i.gkd.li/i/23833318',excludeSnapshotUrls:'https://i.gkd.li/i/23833319'},{preKeys:[0],matches:'[text=\"暂不更新\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23833318'}]}]},{id:'com.attempt.afusekt',name:'AfuseKt',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.attempt.afusekt.MainActivity',matches:'[text=\"下次一定\"]',exampleUrls:'https://e.gkd.li/7c513592-123b-4dde-92cd-54fad5d14dee',snapshotUrls:'https://i.gkd.li/i/16938883'}]}]},{id:'com.apkpure.aegon',name:'APKPure',groups:[{key:1,name:'全屏广告-热门推荐关闭',desc:'关闭应用推广',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.apkpure.aegon.main.activity.MainTabActivity',matches:'@RelativeLayout[clickable=true][visibleToUser=true] - [text=\"精选必备好应用\"] <2 RelativeLayout < LinearLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13466647'}]},{key:2,name:'功能类-更新与已安装界面-点击[查看更多]',fastQuery:true,rules:[{activityIds:['com.apkpure.aegon.main.activity.MainTabActivity','com.apkpure.aegon.main.activity.AppManagerActivity','com.apkpure.aegon.cms.activity.CommonActivity','com.apkpure.aegon.main.activity.AppMoreActivity'],matches:'@ViewGroup[clickable=true] > [text=\"查看更多\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15469126'}]},{key:3,name:'分段广告-更新界面软件推荐',activityIds:['com.apkpure.aegon.main.activity.MainTabActivity','com.apkpure.aegon.main.activity.AppManagerActivity','com.apkpure.aegon.cms.activity.CommonActivity','com.apkpure.aegon.main.activity.AppMoreActivity'],fastQuery:true,rules:[{name:'点击三点图标',key:0,matches:'@ImageView - RelativeLayout >3 [text=\"AD\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13466329'},{name:'点击关闭',preKeys:0,matches:'@LinearLayout[clickable=true] >n [text=\"关闭\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13466610','https://i.gkd.li/i/15542026']}]},{key:4,name:'功能类-添加桌面快捷方式',desc:'下次添加',rules:[{activityIds:'com.apkpure.aegon.main.activity.MainTabActivity',matches:'[id=\"com.apkpure.aegon:id/arg\"][text=\"下次添加\"]',snapshotUrls:'https://i.gkd.li/i/13416401'}]},{key:5,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,activityIds:'.main.activity.MainTabActivity',matches:'ImageView[childCount=0][text=null] < @LinearLayout[clickable=true][visibleToUser=true] < LinearLayout < LinearLayout < LinearLayout < RelativeLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/10d6f26e-cbd1-4159-914b-68c39ff05436',snapshotUrls:'https://i.gkd.li/i/18587607'},{key:1,fastQuery:true,matchTime:10000,activityIds:'.main.activity.AppManagerActivity',matches:'@ImageView[index=0][childCount=0][clickable=true][visibleToUser=true] < ViewGroup[childCount=2] < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/b8201abb-359e-4fc8-82de-0e3784278cd2',snapshotUrls:'https://i.gkd.li/i/18587646'},{key:2,activityIds:'.v2.app.detail.AppDetailV2Activity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] - [text=\"正在下载\" || text=\"正在更新\"]',exampleUrls:'https://e.gkd.li/214effcb-76c5-4cc0-b4c8-40c805331fe8',snapshotUrls:['https://i.gkd.li/i/18587702','https://i.gkd.li/i/18587507']},{key:3,fastQuery:true,activityIds:'.plugin.runtime.PluginDefaultProxyActivity',matches:'@ImageView[clickable=true] <2 RelativeLayout[childCount=2] - FrameLayout >5 [text=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24605359'}]},{key:6,name:'局部广告-悬浮广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.main.activity.MainTabActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] <3 RelativeLayout[childCount=4] < FrameLayout <2 FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/1ba2de53-b533-47dc-87a4-a701d2bcacd7',snapshotUrls:'https://i.gkd.li/i/18587501'}]},{key:7,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,activityIds:'.main.activity.AppManagerActivity',matches:'@[desc=\"closeButton\"][visibleToUser=true] - WebView >3 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/afc307a6-8271-4776-b7d5-60bd999d0fe5',snapshotUrls:'https://i.gkd.li/i/18587514'},{key:1,activityIds:'.main.activity.AppManagerActivity',matches:'[vid=\"anythink_myoffer_banner_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ce6a779c-454d-4a71-9d54-1401e615bbf7',snapshotUrls:'https://i.gkd.li/i/18587745'}]},{key:8,name:'局部广告-电报频道推广横幅',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['.main.activity.MainTabActivity','.main.activity.AppManagerActivity','.v2.app.detail.AppDetailV2Activity'],matches:'@LinearLayout[clickable=true][visibleToUser=true] - LinearLayout >3 [text=\"Join\"]',exampleUrls:'https://e.gkd.li/088ca8e8-5442-4b60-9ce9-0e6dd7d94304',snapshotUrls:['https://i.gkd.li/i/18587504','https://i.gkd.li/i/18587515','https://i.gkd.li/i/18587775']}]}]},{id:'info.muge.appshare',name:'AppShare',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13842826','https://i.gkd.li/i/13939089','https://i.gkd.li/i/14260635']},{key:1,fastQuery:true,matches:'[text*=\"跳过\"][visibleToUser=true][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/14553551'},{key:2,fastQuery:true,position:{left:'width * 0.5',top:'width * 0.6984'},matches:'@ViewGroup > [text=\"跳过\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15269380','https://i.gkd.li/i/15285908','https://i.gkd.li/i/15520277']}],order:-10},{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['info.muge.appshare.view.app.detail.AppDetailActivity','info.muge.appshare.view.app.detail.v4.AppDetailV4Activity','info.muge.appshare.view.search.v4.SearchActivity'],matches:'FrameLayout[childCount=5] > @FrameLayout[childCount=1][visibleToUser=true][width<50 && height<50] > ImageView[childCount=0] <<n [vid=\"adContainer\" || vid=\"adView\" || vid=\"cardAd\"]',snapshotUrls:['https://i.gkd.li/i/14382413','https://i.gkd.li/i/25124086','https://i.gkd.li/i/25124059']}]},{key:2,name:'功能类-自动签到',rules:[{key:0,fastQuery:true,activityIds:'.view.main.MainActivity',matches:'[text=\"签到\"][vid=\"tvSign\"]',snapshotUrls:'https://i.gkd.li/i/13931265',excludeSnapshotUrls:'https://i.gkd.li/i/22319703'},{key:1,activityIds:'.MainActivity',matches:'[desc=\"头像\"] +3 @View[clickable=true] > [text=\"签到\"]',snapshotUrls:'https://i.gkd.li/i/24376300',excludeSnapshotUrls:['https://i.gkd.li/i/22319703','https://i.gkd.li/i/24563260']},{preKeys:[0,1],fastQuery:true,activityIds:['.view.main.MainActivity','.MainActivity'],anyMatches:['[text=\"确定\"]','@[clickable=true] > [childCount=0][text=\"我知道了\"]','[vid=\"tvClose\"][text=\"我知道了\"][clickable=true][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13931279','https://i.gkd.li/i/20259829','https://i.gkd.li/i/24376307','https://i.gkd.li/i/25125005']}]},{key:3,name:'分段广告',desc:'点击关闭-点击不感兴趣',rules:[{key:0,fastQuery:true,activityIds:'info.muge.appshare.view.app.detail.AppDetailActivity',matches:'FrameLayout[childCount=3] >3 [desc^=\"dislike\"] > @View[clickable=true] <<n [id=\"info.muge.appshare:id/adContainer\"]',exampleUrls:'https://m.gkd.li/57941037/3bc12aa2-7673-4261-9e3d-7e1605b22847',snapshotUrls:'https://i.gkd.li/i/13758909'},{key:1,fastQuery:true,activityIds:'info.muge.appshare.view.app.detail.AppDetailActivity',matches:'FrameLayout[childCount=3] >2 WebView >6 @View[visibleToUser=true] > Image <<n [vid=\"adContainer\"]',exampleUrls:'https://m.gkd.li/57941037/fefece63-2ec2-413c-a292-4583d58478fe',snapshotUrls:'https://i.gkd.li/i/14160959'},{key:2,fastQuery:true,activityIds:'.MainActivity',matches:'@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] <n * > FrameLayout >n [text=\"广告\"]',exampleUrls:'https://e.gkd.li/00bf6a60-c461-4970-bb73-b063376cbafd',snapshotUrls:['https://i.gkd.li/i/24541497','https://i.gkd.li/i/24551719','https://i.gkd.li/i/24612011','https://i.gkd.li/i/24612129']},{key:3,activityIds:'.MainActivity',excludeMatches:'[text=\"热门搜索\"][visibleToUser=true]',matches:'ViewFactoryHolder FrameLayout[childCount=5] > FrameLayout[childCount=1] > ImageView[childCount=0][id=null][desc=null][width<60 && height<60]',exampleUrls:'https://e.gkd.li/1dfab1f2-f3d3-4f42-b421-d504083337c0',snapshotUrls:'https://i.gkd.li/i/24541525',excludeSnapshotUrls:'https://i.gkd.li/i/24612044'},{preKeys:[0,1,2,3],fastQuery:true,activityIds:['info.muge.appshare.view.app.detail.AppDetailActivity','.MainActivity'],matches:'@[clickable=true] >(1,2) [text=\"不感兴趣\"]',exampleUrls:'https://m.gkd.li/57941037/27a5eebc-a55a-466e-85f3-7642c23b4b3d',snapshotUrls:['https://i.gkd.li/i/14161009','https://i.gkd.li/i/24612850']}]},{key:4,name:'全屏广告-弹窗广告',desc:'广告展示率低于20%时出现的广告',rules:[{key:0,fastQuery:true,matches:'View[vid=\"v_jump\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/6b1d7b37-edd7-499f-a8b0-ecba24ef2c44',snapshotUrls:'https://i.gkd.li/i/14181146'},{key:1,fastQuery:true,activityIds:'info.muge.appshare.view.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/f89eea71-55f0-4c27-a4b0-79ac5296becd',snapshotUrls:'https://i.gkd.li/i/15209619'},{key:2,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] <n * > @View[childCount=1][index=0 || index=1] > Image[text=\"\"]',exampleUrls:'https://m.gkd.li/57941037/155fdf95-1f5a-4bf3-a8e7-161e6bfe7bbf',snapshotUrls:['https://i.gkd.li/i/15209618','https://i.gkd.li/i/15282994']},{key:3,fastQuery:true,activityIds:'.view.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/b4d9d653-a4ad-4e4f-a8f5-30b1485547b5',snapshotUrls:'https://i.gkd.li/i/15211765'}]},{key:5,name:'通知提示-公告弹窗',desc:'点击[收到]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'info.muge.appshare.view.main.MainActivity',matches:'[vid=\"tvSure\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/8b782da0-1501-4839-a19b-92209b4d2723',snapshotUrls:'https://i.gkd.li/i/14345476'}]},{key:6,name:'功能类-自动点击[使用浏览器打开]',desc:'下载文件页面',rules:[{fastQuery:true,activityIds:'info.muge.appshare.view.browser.DownloadBrowserActivity',matches:'[text=\"浏览器打开\"]',exampleUrls:'https://m.gkd.li/57941037/aae3c59c-8eac-452c-984e-84ee9b97e986',snapshotUrls:'https://i.gkd.li/i/14792822'}]},{key:7,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'info.muge.appshare.view.main.MainActivity',matches:'@[vid=\"tvCancel\"] + [vid=\"tvUpdate\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25123777'}]}]},{id:'com.paget96.batteryguru',name:'Battery Guru',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击[移除广告]',rules:[{fastQuery:true,activityIds:'activities.MainActivity',matches:'[vid=\"remove_ads\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/81d94f93-2308-4401-a151-771e5a94b79a',snapshotUrls:'https://i.gkd.li/i/17538140'}]},{key:2,name:'全屏广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.google.android.gms.ads.AdActivity',matches:'[id=\"ad_container\"] >3 [id=\"video_container\"] >3 Button[clickable=true][childCount=0][id=null][text=\"\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/40c72a7b-3e68-496f-a993-43ab9c759cbd',snapshotUrls:'https://i.gkd.li/i/23417592'},{key:1,activityIds:'.activities.IntroActivity',matches:'@Button[clickable=true][childCount=0][id=null] < View[childCount=1] <3 View - [id=\"app-interstitial-slot\"] >2 [id=\"abgcp\"]',snapshotUrls:'https://i.gkd.li/i/23416244'}]}]},{id:'com.bilibili.app.in',name:'bilibili',groups:[{key:5,name:'评价提示-评论区满意度评价',rules:[{key:1,fastQuery:true,activityIds:'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',matches:'@View[childCount=0][width<180 && height<180] - [childCount=0][text~=\"你.+评论.*氛围.+？\"] <<n [vid=\"compose_view\"]',snapshotUrls:['https://i.gkd.li/i/23125454','https://i.gkd.li/i/23182150']}]},{key:6,name:'评价提示-APP评分',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'tv.danmaku.bili.MainActivityV2',matches:['[text=\"鼓励一下\"]','[text=\"下次再说\"]'],snapshotUrls:'https://i.gkd.li/i/13180746'}]},{key:7,name:'通知提示-订阅感兴趣的通知',desc:'点击\"暂不开启\"',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bilibili.bplus.im.communication.HomeCommunicationActivity',matches:['[text=\"订阅感兴趣的通知\"]','[text=\"暂不开启\"]'],exampleUrls:'https://e.gkd.li/283c2be2-80d7-43ab-976c-0896e678fc49',snapshotUrls:'https://i.gkd.li/i/18392097'}]},{key:8,name:'权限提示-通知权限',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'tv.danmaku.bili.MainActivityV2',matches:['[text=\"打开推送通知\"]','[text=\"暂不\"]'],exampleUrls:'https://e.gkd.li/e67d6d21-f09b-44b0-bf91-8b9fa0670e27',snapshotUrls:'https://i.gkd.li/i/15907493'},{key:1,activityIds:'com.bilibili.vip.web.VipWebActivity',matches:'@Image < View + [id=\"subscribeContainer\"] > [text=\"权益更新时推送通知\"]',snapshotUrls:'https://i.gkd.li/i/23714120'}]},{key:9,name:'功能类-自动领取会员经验',rules:[{fastQuery:true,activityIds:'com.bilibili.vip.web.VipWebActivity',matches:'[text^=\"专属等级加速包\"] +n @TextView[childCount=0][text=\"领取\"] <<n [vid=\"webview\"]'}],snapshotUrls:['https://i.gkd.li/i/22886723','https://i.gkd.li/i/22886739']},{key:10,name:'功能类-自动关闭故事模式',desc:'播放视频时退出竖屏模式',matchTime:10000,actionMaximum:1,rules:[{fastQuery:true,activityIds:'com.bilibili.video.story.StoryVideoActivity',matches:'[vid=\"story_ctrl_router\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4bfd6131-d4be-46be-affb-73338b01f49c',snapshotUrls:'https://i.gkd.li/i/18164075'}]}]},{id:'bitcoin.minning.com',name:'Bitcoin Mining',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.vungle.ads.internal.ui.VungleActivity',matches:'@Button[text=\"Close button\"][clickable=true][childCount=0][visibleToUser=true] <5 View[id*=\"ad\"] < View < WebView < WebView < RelativeLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/99958310-8a0e-47df-b017-b2eea86cd60e',snapshotUrls:'https://i.gkd.li/i/22361347'},{key:1,fastQuery:true,activityIds:'com.applovin.adview.AppLovinFullscreenActivity',matches:'View[childCount=0] < @FrameLayout[clickable=true][childCount=1][visibleToUser=true] - RelativeLayout[getChild(0).getChild(0).getChild(0).getChild(0).id=\"adFrame\"] < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/aff580b7-2e95-4145-b50c-07a59d1db617',snapshotUrls:'https://i.gkd.li/i/22337133'}]}]},{id:'com.soft.blued',name:'Blued',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:['com.blued.android.core.ui.TerminalActivity','com.soft.blued.ui.home.HomeActivity'],matches:'[id=\"com.soft.blued:id/fl_main\"] [id=\"com.soft.blued:id/img_close\"]',snapshotUrls:['https://i.gkd.li/i/12777097','https://i.gkd.li/i/13694950','https://i.gkd.li/i/13699455']},{key:1,fastQuery:true,activityIds:'com.soft.blued.ui.home.HomeActivity',matches:'[id=\"com.soft.blued:id/ad_option\"]',exampleUrls:'https://m.gkd.li/57941037/65ee5632-c54b-4ef6-95e9-e57582ff7017',snapshotUrls:'https://i.gkd.li/i/14149470'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'com.blued.android.core.ui.TerminalActivity',matches:'[id=\"com.soft.blued:id/iv_close\"]',exampleUrls:'https://m.gkd.li/57941037/37ea59cf-9606-4cd6-a74a-84f353f07975',snapshotUrls:'https://i.gkd.li/i/14157519'},{key:1,activityIds:'.ui.home.HomeActivity',matches:'[vid=\"nearby_common_guide_close_iv\"]',exampleUrls:'https://e.gkd.li/04e78fd8-9d78-48d7-b1f0-eddde80f5c52',snapshotUrls:'https://i.gkd.li/i/17172243'}]},{key:3,name:'全屏广告-会员活动弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.blued.android.core.ui.TransparentActivity',matches:'[vid=\"blued_ad_layout\"] + [vid=\"img_close\"]',snapshotUrls:'https://i.gkd.li/i/14310618'}]}]},{id:'com.hichip.campro',name:'CamHipro',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'main.MainActivity',matches:'[vid=\"iv_close_ad\"]',snapshotUrls:'https://i.gkd.li/i/15847732'}]}]},{id:'make.more.r2d2.cellular_z',name:'Cellular-Z',groups:[{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MonitorActivity',matches:['[text=\"发现新版本\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13608563'}]}]},{id:'com.lxt.cfmoto',name:'CFMOTO',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,name:'首页弹窗广告',fastQuery:true,activityIds:'com.cfmoto.oilmoto.ui.MainCfActivity',matches:'[id=\"com.lxt.cfmoto:id/closeClick\"]',snapshotUrls:'https://i.gkd.li/i/13401967'}]}]},{id:'com.openai.chatgpt',name:'ChatGPT',groups:[{key:1,name:'通知提示-套餐限额提示',rules:[{key:0,activityIds:'.MainActivity',matches:'[text*=\"套餐限额\"] + @View[clickable=true] > [desc=\"关闭\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24996012'}]}]},{id:'com.android.chrome',name:'Chrome',groups:[{key:1,name:'功能类-文件可能有害-点击[仍然下载]',desc:'警告⚠️：会跳过有害文件警告，请谨慎开启',rules:[{fastQuery:true,activityIds:'org.chromium.chrome.browser.ChromeTabbedActivity',matches:['[text=\"文件可能有害\"][visibleToUser=true]','[text=\"仍然下载\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/7fd28568-a614-4dea-8928-56a20c5780b6',snapshotUrls:'https://i.gkd.li/i/24863365'}]}]},{id:'com.cimoc.haleydu',name:'Cimoc',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.haleydu.cimoc.ui.activity.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/bc2e0453-1da8-43db-ad18-ec69d72e3c75',snapshotUrls:['https://i.gkd.li/i/14318224','https://i.gkd.li/i/14318235','https://i.gkd.li/i/14318236']}]}]},{id:'com.github.metacubex.clash.meta',name:'Clash Meta for Android',groups:[{key:1,name:'功能类-代理页面自动点击延迟测试',matchTime:10000,actionMaximum:1,rules:[{fastQuery:true,activityIds:'com.github.kr328.clash.ProxyActivity',matches:'[vid=\"url_test_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/490f4572-a1af-4345-8f6e-3b0081929628',snapshotUrls:'https://i.gkd.li/i/20926416',excludeSnapshotUrls:'https://i.gkd.li/i/20926355'}]}]},{id:'com.example.robortx.clousx6F',name:'Clousx6',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'@[vid=\"iv_close\"] + * >2 [text=\"上一条\"]',exampleUrls:'https://m.gkd.li/57941037/a59e4c30-29e3-4d7e-9c05-f7e844ff6ac3',snapshotUrls:'https://i.gkd.li/i/14571096'}]}]},{id:'com.panaceasoft.pswallpaper',name:'ClrvAI',groups:[{key:1,name:'通知提示-公告弹窗',fastQuery:true,matchTime:10000,resetMatch:'app',actionMaximum:1,activityIds:'.xiao.MainActivity',rules:[{key:0,matches:'[vid=\"cb_ignore\"][checked=false]',exampleUrls:'https://e.gkd.li/b92e4e94-fafc-47b1-9774-3126cfaed981',snapshotUrls:'https://i.gkd.li/i/14141561'},{preKeys:[0],key:1,matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b92e4e94-fafc-47b1-9774-3126cfaed981',snapshotUrls:'https://i.gkd.li/i/14141561'}]}]},{id:'net.csdn.csdnplus',name:'CSDN',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.activity.MainActivity','.activity.SetActivity'],matches:'[id=\"net.csdn.csdnplus:id/update\"] -2 [id=\"net.csdn.csdnplus:id/cancel\"]',snapshotUrls:['https://i.gkd.li/i/12673693','https://i.gkd.li/i/12673654']}]},{key:2,name:'分段广告-信息流广告',fastQuery:true,activityIds:'net.csdn.csdnplus.activity.MainActivity',rules:[{key:1,matches:'[text=\"广告\"] + [id=\"net.csdn.csdnplus:id/iv_more\"]',snapshotUrls:['https://i.gkd.li/i/12673738','https://i.gkd.li/i/13224538']},{preKeys:[1],key:2,matches:'@[clickable=true] > [id=\"net.csdn.csdnplus:id/img_feedback_title\"][text=\"重复推荐该广告\"]',snapshotUrls:['https://i.gkd.li/i/12673787','https://i.gkd.li/i/13224551']}]},{key:3,name:'评价提示-软件好评弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MainActivity',matches:'[id=\"net.csdn.csdnplus:id/tv_cancel\"][text=\"残忍拒绝\"]',snapshotUrls:'https://i.gkd.li/i/13251085'}]},{key:4,name:'全屏广告-弹窗广告',desc:'点击【x】',rules:[{fastQuery:true,activityIds:'net.csdn.csdnplus.activity.MainActivity',matches:'LinearLayout[childCount=2] > [vid=\"img_cancel\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25171470',exampleUrls:'https://e.gkd.li/3debb965-7773-4160-b172-15dc052ac6c9'}]},{key:10,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MainActivity',matches:['[text=\"开启推送通知\"]','[id=\"net.csdn.csdnplus:id/iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/12673638'}]},{key:11,name:'分段广告-底部广告',desc:'点击关闭-点击不感兴趣',fastQuery:true,rules:[{key:0,activityIds:'net.csdn.csdnplus.mvvm.ui.activity.BlogDetailActivity',matches:'ViewGroup > ViewGroup[childCount=2] > @ImageView[index=1][clickable=true][childCount=0][visibleToUser=true] <<n [vid=\"fl_template_container\" || vid=\"fl_bottom_ad_container\"]',snapshotUrls:['https://i.gkd.li/i/13830821','https://i.gkd.li/i/14312501']},{preKeys:[0],key:1,activityIds:'net.csdn.csdnplus.mvvm.ui.activity.BlogDetailActivity',matches:'@LinearLayout[clickable=true] >(1,2) [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/13830858','https://i.gkd.li/i/14312349','https://i.gkd.li/i/24376480']}]}]},{id:'com.ctm',name:'CTM Buddy',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.home.page.MainActivity',matches:'[id=\"com.ctm:id/iv_close\"]',exampleUrls:'https://e.gkd.li/fbaa53c3-109d-47b3-b85c-373d93e420d9',snapshotUrls:'https://i.gkd.li/i/13350575'}]},{key:2,name:'局部广告-底部横幅广告',rules:[{fastQuery:true,activityIds:'com.ctm.home.page.MainActivity',matches:'[id=\"com.ctm:id/iv_bottom_adv\"] + [id=\"com.ctm:id/btn_close\"]',snapshotUrls:'https://i.gkd.li/i/13350612'}]}]},{id:'com.spotware.ct',name:'cTrader',groups:[{key:1,name:'功能类-询问是否是美国居民弹窗',desc:'点击[我不是美国居民]-点击[确认]',fastQuery:true,activityIds:'mobile.droid.ctrader.views.main.MainActivity',rules:[{key:0,name:'点击[我不是美国居民]',matches:'[text=\"我不是美国居民\"]',exampleUrls:'https://m.gkd.li/57941037/959b6c00-0d43-46d4-83eb-056326f036a5',snapshotUrls:'https://i.gkd.li/i/14495502'},{key:1,preKeys:[0],name:'点击[确认]',matches:'[text=\"确认\"]',exampleUrls:'https://m.gkd.li/57941037/8adae91e-019d-44eb-8820-b3d560a2b66d',snapshotUrls:'https://i.gkd.li/i/14495496'}]}]},{id:'pro.cubox.androidapp',name:'Cubox',groups:[{key:1,name:'全屏广告-会员广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ui.pro.ProAccountActivity',matches:'@View[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)] - [text*=\"支付\"] <5 View[childCount=6] < [vid=\"newCV\"]',exampleUrls:'https://e.gkd.li/a51b01f3-d690-4bdf-9db1-f40e05212b11',snapshotUrls:'https://i.gkd.li/i/20708841'}]}]},{id:'com.deepseek.chat',name:'DeepSeek',groups:[{key:1,name:'功能类-自动折叠思考过程',rules:[{activityIds:'com.deepseek.chat.MainActivity',matches:'@[clickable=true] > [text=\"正在思考\" || text^=\"已思考\"] + View[desc=\"折叠\"]',snapshotUrls:['https://i.gkd.li/i/23982641','https://i.gkd.li/i/23982613','https://i.gkd.li/i/23982615']}]}]},{id:'com.eco.global.app',name:'ECOVACS HOME',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'ImageView[id=\"com.eco.global.app:id/adview_jump\"]',snapshotUrls:'https://i.gkd.li/i/13538616'}],order:-10}]},{id:'com.microsoft.emmx',name:'Edge',groups:[{key:3,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'org.chromium.chrome.browser.ChromeTabbedActivity',matches:'[text=\"允许通知\"] + [text=\"不，谢谢\"]',snapshotUrls:'https://i.gkd.li/i/13646187'}]},{key:4,name:'功能类-[关闭所有标签？]弹窗',desc:'点击[确定]',rules:[{fastQuery:true,activityIds:'org.chromium.chrome.browser.ChromeTabbedActivity',matches:'[text=\"关闭所有标签页?\"] + * > [text=\"确定\"]',exampleUrls:'https://m.gkd.li/57941037/487f4236-676c-4fb3-bcac-17b4644edd46',snapshotUrls:'https://i.gkd.li/i/14325653'}]},{key:5,name:'功能类-关闭标签页',rules:[{fastQuery:true,activityIds:'org.chromium.chrome.browser.ChromeTabbedActivity',matches:'[text=\"关闭标签页\"]',exampleUrls:'https://m.gkd.li/57941037/81f9a737-a111-4630-898b-4f2b5de0623b',snapshotUrls:'https://i.gkd.li/i/14614992'}]},{key:6,name:'功能类-[前往CSDN APP阅读全文]弹窗',desc:'点击[继续]',rules:[{activityIds:'org.chromium.chrome.browser.ChromeTabbedActivity',matches:'[text=\"前往CSDN APP阅读全文\"] < * > [desc=\"继续\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/fea75b5a-010d-4f67-8998-6cf794eda975',snapshotUrls:'https://i.gkd.li/i/14610025'}]}]},{id:'com.closeli.ipc',name:'Eyeplus',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.arcsoft.closeli.dhmain2.main.NewMainActivity',matches:'@[vid=\"iv_close\"] - [vid=\"iv_ads\"]',exampleUrls:'https://e.gkd.li/2f4b9b69-06bb-4d7e-9607-4e1ebb57322b',snapshotUrls:'https://i.gkd.li/i/18070447'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.arcsoft.closeli.dhmain2.main.NewMainActivity',matches:'FrameLayout[childCount=2] > FrameLayout[childCount=3] > FrameLayout[index=2][childCount=1] > @ImageView[childCount=0][visibleToUser=true] <<n [vid=\"cv_empty_container\"]',exampleUrls:'https://e.gkd.li/798ebfdd-7966-437c-9d29-ce34749113d8',snapshotUrls:'https://i.gkd.li/i/18070476'}]}]},{id:'com.facebook.katana',name:'Facebook',groups:[{key:1,name:'功能类-自动点击[查看翻译]',activityIds:['.immersiveactivity.ImmersiveActivity','.activity.FbMainTabActivity'],rules:[{key:0,fastQuery:true,matches:'@ViewGroup[clickable=true] > [visibleToUser=true][text=\"查看翻译\"] <<n [id=\"android:id/list\"]',exampleUrls:'https://e.gkd.li/8801f1f5-ddcb-45b2-9f19-c82e9d1271f1',snapshotUrls:'https://i.gkd.li/i/21955231'},{key:1,matchRoot:true,actionCd:300,matches:'[text=\"查看翻译\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a111f9dc-8604-45f5-ba0c-22606890c338',snapshotUrls:['https://i.gkd.li/i/24712867','https://i.gkd.li/i/24717051']}]}]},{id:'com.ca.fantuan.customer',name:'Fantuan Delivery',groups:[{key:1,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:['.app.mainv2.view.MainActivity','.app.orderdetail.view.OrderDetailActivity','.app.p_address.city.view.SelectCityActivity','.app.payresult_v2.view.OrderPaySuccessActivity','.app.main.view.MainActivityV2'],matches:['[text*=\"开启消息通知\" || text*=\"开启系统通知\"][visibleToUser=true]','[vid=\"tv_cancel\" || vid=\"iv_close\" || vid=\"iv_notification_close\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/8dd09677-8a02-4496-8611-c37b70e981d7',snapshotUrls:['https://i.gkd.li/i/19442163','https://i.gkd.li/i/19460300','https://i.gkd.li/i/19442191','https://i.gkd.li/i/19624918','https://i.gkd.li/i/19676244','https://i.gkd.li/i/20633831','https://i.gkd.li/i/22441592']}]},{key:2,name:'评价提示',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.app.mainv2.view.MainActivity',matches:['[text=\"写评价\" || text=\"您对饭团外卖的评价如何\"][visibleToUser=true]','[vid=\"close_iv\" || vid=\"iv_dialog_close\"][visibleToUser=true]'],exampleUrls:['https://e.gkd.li/8bd038b0-c555-4ac5-b1c0-c31c351cd788','https://e.gkd.li/43231b54-3fd3-4c1d-9217-8721f86153ba'],snapshotUrls:['https://i.gkd.li/i/19442188','https://i.gkd.li/i/20598853']}]},{key:3,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.app.mainv2.view.MainActivity',matches:['[vid=\"home_bottom_float_view\"][visibleToUser=true]','[vid=\"iv_close\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/a61401ed-245c-4942-9245-bae8fbb15abd',snapshotUrls:'https://i.gkd.li/i/19459880'}]}]},{id:'com.fengeek.f002',name:'fiil+',groups:[{key:2,name:'功能类-自动连接耳机',desc:'点击连接耳机按钮,点击扫描到的第一个设备',activityIds:'com.fengeek.f002.MainActivity',rules:[{key:0,name:'点击连接耳机按钮',fastQuery:true,action:'clickCenter',matches:'[id=\"com.fengeek.f002:id/av_elc\"]',snapshotUrls:'https://i.gkd.li/i/13161277'},{preKeys:[0],key:1,name:'点击扫描到的设备',fastQuery:true,matches:'[id=\"com.fengeek.f002:id/device_container\"]',snapshotUrls:'https://i.gkd.li/i/13161365'}]}]},{id:'com.overlook.android.fing',name:'Fing',groups:[{key:0,name:'其他-教程弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.main.SplashActivity',matches:'[text=\"關閉\"]',snapshotUrls:'https://i.gkd.li/i/15521827'}]}]},{id:'com.fewwind.flowmark',name:'FlowMark',groups:[{key:1,name:'更新提示',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:['[text^=\"发现新版本\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ab46d163-83f6-4c50-a6f4-e37186928fba',snapshotUrls:'https://i.gkd.li/i/20737817'}]}]},{id:'com.google.android.gm',name:'Gmail',groups:[{key:2,name:'分段广告-信息流广告',fastQuery:true,rules:[{key:0,matches:'[id=\"com.google.android.gm:id/basic_ad_teaser_info_icon\" || id=\"com.google.android.gm:id/button_chip_ad_teaser_info_icon\"]',snapshotUrls:['https://i.gkd.li/i/13255698','https://i.gkd.li/i/13255698']},{preKeys:[0],key:1,matches:'Button[visibleToUser=true][text=\"屏蔽此广告\" || text^=\"Block\" || desc=\"屏蔽\"] <<n [vid=\"my_ad_center_dialog\"]',snapshotUrls:['https://i.gkd.li/i/13255700','https://i.gkd.li/i/13724271','https://i.gkd.li/i/20585351']},{preKeys:[1],key:2,matches:'Button[visibleToUser=true][text=\"继续\" || text=\"Continue\"] <<n [id=\"com.google.android.gm:id/my_ad_center_dialog\"]',snapshotUrls:['https://i.gkd.li/i/13255701','https://i.gkd.li/i/13724287']},{preKeys:[2],key:3,matches:'[id=\"com.google.android.gm:id/my_ad_center_close_icon\"]',snapshotUrls:'https://i.gkd.li/i/13263279'}]}]},{id:'com.gspace.android',name:'Gspace',groups:[{key:1,name:'局部广告-主页面上方广告',activityIds:['com.gspace.android.ui.activity.main.MainActivity'],rules:[{key:0,matches:'[id=\"com.gspace.android:id/hiad_banner_close_button\"]',snapshotUrls:'https://i.gkd.li/i/12705339'},{key:1,matches:'@Image < View -2 View > View > View TextView[text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12910419','https://i.gkd.li/i/12910935']},{preKeys:1,matches:'[id=\"com.byted.pangle:id/tt_item_tv\" && text= \"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12910420'}]},{key:2,name:'全屏广告-Youtube播放视频跳过广告',rules:'[id=\"com.google.android.youtube:id/skip_ad_button\"]',snapshotUrls:'https://i.gkd.li/i/12709006'}]},{id:'com.huawei.hwid',name:'HMS Core',groups:[{key:0,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:['com.huawei.openalliance.ad.ppskit.activity.InnerPPSInterstitialAdActivity','com.huawei.openalliance.ad.ppskit.activity.InterstitialAdActivity'],matches:'@[id*=\"interstitial_close\"][clickable=true] +n * >n [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12709068','https://i.gkd.li/i/24675884','https://i.gkd.li/i/24979139']}]}]},{id:'com.codium.hydrocoach',name:'Hydro Coach',groups:[{key:1,name:'全屏广告-订阅推荐',desc:'关闭每次开启时的订阅推荐',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ui.pro.subscription.SubscribeActivity',matches:['[text^=\"解鎖所有功能\"]','[vid=\"close_button\"]'],exampleUrls:'https://e.gkd.li/7092a375-a9f0-4aca-b5b4-3386c71a0820',snapshotUrls:'https://i.gkd.li/i/15806266'}]}]},{id:'io.hyperate.hyperateandroid',name:'HypeRate',groups:[{key:1,name:'全屏广告',rules:[{activityIds:'.MainActivity',matches:'@Image[childCount=0][text.length>0] < View[childCount=1] - View[childCount=1] > [text=\"Customize Now\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a9ee995f-1a7e-4663-86aa-b56a71e2ed5a',snapshotUrls:'https://i.gkd.li/i/23598900'}]}]},{id:'tw.com.icash.a.icashpay',name:'icash Pay',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'tw.com.icash.icashpay.framework.home.HomeNavigationActivity',matches:'[vid=\"img_activity_ad_close\"]',exampleUrls:'https://e.gkd.li/8fefb936-558b-44d2-a6e0-457f7e59772d',snapshotUrls:'https://i.gkd.li/i/17640327'}]}]},{id:'com.igpsport.igpsportandroid',name:'iGPSPORT',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.igpsport.globalapp.main.MainActivity',matches:'@[visibleToUser=true][text=\"忽略本次\"] <<n [vid=\"updateComposeView\"]',exampleUrls:'https://e.gkd.li/57341233-2547-4469-869c-e05fdebb20fc',snapshotUrls:'https://i.gkd.li/i/13797203'}]}]},{id:'com.instagram.android',name:'Instagram',groups:[{key:1,name:'分段广告-信息流广告',desc:'但是步骤较多, 影响app使用',fastQuery:true,activityIds:'com.instagram.mainactivity.InstagramMainActivity',rules:[{key:0,name:'点击\"更多\"按钮',actionCd:4000,matches:'[text=\"赞助内容\"] + [id=\"com.instagram.android:id/feed_more_button_stub\"]',snapshotUrls:'https://i.gkd.li/i/12798562'},{key:1,name:'点击\"隐藏广告\"按钮',matches:'@ViewGroup >n [text=\"隐藏广告\"]',snapshotUrls:['https://i.gkd.li/i/12798571','https://i.gkd.li/i/12829448']},{key:2,name:'点击\"广告不相关\"按钮',matches:'@ViewGroup > [text=\"广告不相关\"]',snapshotUrls:['https://i.gkd.li/i/12798590','https://i.gkd.li/i/12829464']},{key:3,name:'关闭[你不会再看到这条广告]',action:'back',matches:'[text=\"你不会再看到这条广告\"]',snapshotUrls:'https://i.gkd.li/i/12829492'}]},{key:2,name:'功能类-自动点击[查看翻译]',fastQuery:true,activityIds:'com.instagram.mainactivity.InstagramMainActivity',rules:[{key:0,matches:'[text=\"查看翻译\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/e92702d8-8349-4718-aa4d-664bf3d2f6e5',snapshotUrls:'https://i.gkd.li/i/14093211'},{key:1,excludeMatches:'[text=\"查看翻译\"][clickable=true]',matches:'[text$=\"查看翻译\"][clickable=false][desc!=null][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/7d6da15b-1c3f-4160-a2d3-d8223bc55132',snapshotUrls:['https://i.gkd.li/i/14784095','https://i.gkd.li/i/16776676']}]}]},{id:'xxx.pornhub.fuck',name:'JavDB',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击[知道了]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@Button[desc=\"知道了\"][visibleToUser=true] <3 View < View < View < View < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/ae1792dd-210b-4ac2-bfce-c2081ed03498',snapshotUrls:'https://i.gkd.li/i/14559882'}]}]},{id:'com.jiaohua_browser',name:'JMComic2',groups:[{key:1,name:'全屏广告',desc:'关闭选择路线后的全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'ViewGroup[childCount=2] > @ViewGroup[clickable=true][visibleToUser=true] > [text=\"\"]',exampleUrls:'https://e.gkd.li/447bea41-2771-4a57-8436-82da37d0b3b2',snapshotUrls:'https://i.gkd.li/i/20709992',excludeSnapshotUrls:'https://i.gkd.li/i/20718812'}]},{key:2,name:'局部广告-底部横幅广告',desc:'关闭底部横幅广告',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'ViewGroup[getChild(0).getChild(0).getChild(0).getChild(0).getChild(1).text=\"AD\"] + @ViewGroup[clickable=false] > [text=\"\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/002589d0-660e-4658-8e20-42c1ac8710fc',snapshotUrls:'https://i.gkd.li/i/20713583',excludeSnapshotUrls:'https://i.gkd.li/i/20709992'}]},{key:3,name:'功能类-路线选择',desc:'选择路线，优先顺畅>普通>缓慢',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',anyMatches:['@ViewGroup[clickable=true][visibleToUser=true] > [text=\"顺畅\" || text=\"順暢\"]','@ViewGroup[clickable=true][visibleToUser=true] > [text=\"普通\"]','@ViewGroup[clickable=true][visibleToUser=true] > [text=\"缓慢\"]'],exampleUrls:['https://e.gkd.li/68004e70-6b78-41f2-b329-ff600038db94','https://e.gkd.li/66403e39-475b-447d-a708-db10be74eba8','https://e.gkd.li/930e1df4-5f1d-4a4d-bf78-6f1d8c5715de'],snapshotUrls:['https://i.gkd.li/i/20711163','https://i.gkd.li/i/20713674','https://i.gkd.li/i/20713715','https://i.gkd.li/i/20718557']}]},{key:4,name:'功能类-点击[我保证我已满18岁]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@ViewGroup[childCount=1][clickable=true][visibleToUser=true] > [text^=\"我保证我已满18岁\" || text^=\"我保證我已滿18歲\"]',exampleUrls:'https://e.gkd.li/f890ac7e-8626-4fc3-85c1-83d6776cb3f4',snapshotUrls:['https://i.gkd.li/i/20711995','https://i.gkd.li/i/20718577'],excludeSnapshotUrls:'https://i.gkd.li/i/20713533'}]}]},{id:'com.example.app',name:'JMComic3',groups:[{key:1,name:'全屏广告',desc:'关闭选择线路后的全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'clickCenter',activityIds:'.MainActivity',matches:'@Button[clickable=true] - [text^=\"看完等待\"]',exampleUrls:'https://e.gkd.li/df4c585e-acd7-49b5-af76-e53175ffb42c',snapshotUrls:'https://i.gkd.li/i/21399047'}]}]},{id:'com.vgjump.jump',name:'Jump',groups:[{key:1,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:2,resetMatch:'app',rules:[{fastQuery:true,activityIds:['.ui.my.favorite.FavoriteActivity','.ui.game.detail.GameDetailActivity','.ui.content.msg.MsgIndexActivity'],matches:['[text=\"开启推送通知\"][visibleToUser=true]','[vid=\"ivClose\" || vid=\"tvClose\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ce574950-4233-477e-b0cc-a4b0d18df249',snapshotUrls:['https://i.gkd.li/i/17828834','https://i.gkd.li/i/17949205','https://i.gkd.li/i/18022146']}]},{key:2,name:'局部广告-信息流广告/卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['.ui.game.detail.GameDetailActivity','.ui.content.detail.ContentDetailActivity','.ui.main.MainActivity'],matches:'[vid=\"ivSDKClose\"][visibleToUser=true]',exampleUrls:['https://e.gkd.li/388a915b-5b91-4a4a-8bd3-330b346b2864','https://e.gkd.li/d68c487b-ce63-4d9f-afc3-cc94b3490a33'],snapshotUrls:['https://i.gkd.li/i/17949888','https://i.gkd.li/i/17949885','https://i.gkd.li/i/18004837']}]}]},{id:'com.gotokeep.keep',name:'Keep',groups:[{key:2,name:'全屏广告-首页弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.gotokeep.keep.refactor.business.main.activity.MainActivity',matches:'[id=\"com.gotokeep.keep:id/imgCloseHomePageDialog\"]',snapshotUrls:'https://i.gkd.li/i/13761641'}]},{key:3,name:'局部广告-首页信息流广告',activityIds:'com.gotokeep.keep.refactor.business.main.activity.MainActivity',rules:'[id=\"com.gotokeep.keep:id/textAdTag\"] + [id=\"com.gotokeep.keep:id/imgClose\"]',snapshotUrls:'https://i.gkd.li/i/12706115'},{key:4,name:'全屏广告-运动购页面-弹窗广告',rules:[{key:0,activityIds:'com.gotokeep.keep.refactor.business.main.activity.MainActivity',matches:'ImageView + LinearLayout > ImageView[id=null][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12706111'},{key:1,activityIds:'com.gotokeep.keep.refactor.business.main.activity.MainActivity',matches:'[id=\"com.gotokeep.keep:id/contentContainer\"] + [id=\"com.gotokeep.keep:id/closeImageView\"]',snapshotUrls:'https://i.gkd.li/i/13766358'}]},{key:5,name:'全屏广告-请求开启通知权限弹窗',actionMaximum:1,resetMatch:'app',fastQuery:true,rules:'@[text=\"暂不开启\"] +2 [text=\"开启通知权限\"]',snapshotUrls:'https://i.gkd.li/i/13761671'},{key:6,name:'更新提示',desc:'点击\"暂不升级\"',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.gotokeep.keep:id/text_secondary_action\"]',exampleUrls:'https://m.gkd.li/57941037/6b0091e9-1bf1-49bd-be5c-e6997bc9accb',snapshotUrls:'https://i.gkd.li/i/14126005'}]}]},{id:'com.kmb.app1933',name:'KMB . LWB',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,activityIds:'com.google.android.gms.ads.AdActivity',matches:'[desc=\"Interstitial close button\"]',exampleUrls:'https://e.gkd.li/3b5d7bcd-4629-44af-8ee9-5c8a1001ebad',snapshotUrls:'https://i.gkd.li/i/16620586'},{key:1,activityIds:'com.google.android.gms.ads.AdActivity',matches:'[desc=\"打开\"] - View > [text=\"关闭\"]',exampleUrls:'https://e.gkd.li/14158b1c-88f3-4e5c-bbc1-193186e77b07',snapshotUrls:'https://i.gkd.li/i/16620123'},{key:2,activityIds:'com.google.android.gms.ads.AdActivity',matches:'WebView >2 View[childCount=3] >2 View[childCount=2] > View[childCount=2] > View[childCount=1] > Button[clickable=true]',exampleUrls:'https://e.gkd.li/0be64275-23d1-4b13-b444-6e0c67fdd8fc',snapshotUrls:'https://i.gkd.li/i/16621030'}],order:-10}]},{id:'lab.vie.two',name:'LIBVIO',groups:[{key:1,name:'其他-账号注册说明弹窗',desc:'每次打开app的弹窗提示，自动点击\"我知道了\"',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"账号注册说明\"] +2 [desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13379070'}]}]},{id:'com.lofter.android',name:'LOFTER',groups:[{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.lofter.android.global.home.TabHomeActivity',matches:'[vid=\"global_ad_layout\"] > [vid=\"close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0559eada-7899-4c8a-8634-ef3f55227492',snapshotUrls:'https://i.gkd.li/i/16494241'}]}]},{id:'com.m.mfood',name:'mFood',groups:[{key:1,name:'局部广告-浮窗广告',rules:[{fastQuery:true,activityIds:'com.zdyl.mfood.ui.home.MainActivity',matches:'[id=\"com.m.mfood:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13350787'}]}]},{id:'com.qjy.youqulife.io',name:'MINO 4K',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,name:'快手广告',fastQuery:true,activityIds:'com.qjy.youqulife.io.MainActivity',matches:['[text=\"广告\"] ','[text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13378653'}]}]},{id:'com.vlending.apps.mubeat',name:'Mubeat',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.activity.LauncherActivity',matches:'@[desc=\"Close Ad\"][visibleToUser=true] > [text*=\"Ad\"]',exampleUrls:'https://e.gkd.li/86c7a56e-190d-4063-9b38-e8cfd71381e2',snapshotUrls:'https://i.gkd.li/i/18053470'}]}]},{id:'com.qc.mycomic',name:'MyComic',groups:[{key:0,name:'开屏广告',fastQuery:true,priorityTime:10000,rules:[{matches:'@[clickable=true] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15443225'}],order:-10}]},{id:'tw.nekomimi.nekogram',name:'Nekogram',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'org.telegram.ui.LaunchActivity',matches:'@Button[desc$=\"稍后提醒我\"] - [desc=\"立即下载\"] <3 FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/14229236','https://i.gkd.li/i/14372061']}]}]},{id:'com.banshenghuo.mobile.ofdm',name:'OmoFun',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.anythink.basead.ui.ATPortraitTranslucentActivity',matches:'[vid=\"anythink_myoffer_btn_close_id\"]',snapshotUrls:'https://i.gkd.li/i/15443189'},{key:1,fastQuery:true,activityIds:'com.banshenghuo.mobile.ofdm.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/15444005'},{key:2,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -n @View[index=0] > Image',snapshotUrls:'https://i.gkd.li/i/15444017'},{key:3,fastQuery:true,activityIds:'com.banshenghuo.mobile.ofdm.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[clickable=true] < ViewGroup + ViewGroup > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/8bbf31e8-598b-4021-9136-8de189fc7cf9',snapshotUrls:'https://i.gkd.li/i/16548166'}]},{key:2,name:'通知提示-公告弹窗',desc:'点击[我知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.anythink.basead.ui.ATPortraitTranslucentActivity',matches:'[desc=\"我知道了\"]',exampleUrls:'https://e.gkd.li/327ea04c-acda-4913-a0a9-fdda9cd83dd7',snapshotUrls:'https://i.gkd.li/i/16548158'}]}]},{id:'com.cyl.musiccy.ou',name:'OMOFUN',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<=10]',snapshotUrls:['https://i.gkd.li/i/12775918','https://i.gkd.li/i/12775926','https://i.gkd.li/i/13063151','https://i.gkd.li/i/13063246','https://i.gkd.li/i/13071599']},{key:1,matches:'[id=\"com.cyl.musiccy.ou:id/ksad_splash_root_container\"] [childCount=3] > @ImageView[clickable=true] - [text=\"|\"]',snapshotUrls:'https://i.gkd.li/i/12775919'}],order:-10},{key:1,name:'通知提示-公告弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13063206'}]},{key:2,name:'全屏广告-弹窗广告',actionDelay:300,rules:[{key:0,fastQuery:true,activityIds:['com.cyl.musiccy.ou.MainActivity','com.ksf.yyx.MainActivity'],name:'快手广告-1',matches:'[id$=\"ksad_container\"] >n @ViewGroup[clickable=true] > [text=\"跳过\"]',snapshotUrls:['https://i.gkd.li/i/12775922','https://i.gkd.li/i/13063222']},{key:1,name:'快手广告-2',fastQuery:true,activityIds:['com.ksf.yyx.MainActivity','com.cyl.musiccy.ou.MainActivity'],matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12775923','https://i.gkd.li/i/13800051']},{key:2,name:'Sigmob广告',activityIds:['com.cyl.musiccy.ou.MainActivity','com.sigmob.sdk.base.common.TransparentAdActivity'],matches:'[id=\"ad_area\"] [id=\"close_btn\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12775925','https://i.gkd.li/i/12775924','https://i.gkd.li/i/13759345']},{key:3,name:'腾讯广告-1',fastQuery:true,activityIds:['com.ksf.yyx.MainActivity','com.android.internal.app.ResolverActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12775921','https://i.gkd.li/i/12776903','https://i.gkd.li/i/12789928','https://i.gkd.li/i/13215476','https://i.gkd.li/i/13071595','https://i.gkd.li/i/13063249']},{key:5,name:'腾讯广告-2',fastQuery:true,activityIds:'com.cyl.musiccy.ou.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13422363'}]}]},{id:'com.ksf.yyx',name:'OMOFUN',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[id=\"com.ksf.yyx:id/ksad_splash_circle_skip_view\"]',snapshotUrls:'https://i.gkd.li/i/12775918'},{key:1,matches:'[id=\"com.ksf.yyx:id/ksad_splash_root_container\"] [childCount=3] > @ImageView[clickable=true] - [text=\"|\"]',snapshotUrls:'https://i.gkd.li/i/12775919'},{key:2,matches:'[text^=\"跳过 \"][text.length<=4][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12775926'}],order:-10},{key:1,name:'通知提示-公告弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[desc=\"了解更多\"] - [desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/12775920'}]},{key:2,name:'全屏广告-插屏广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'[id=\"com.ksf.yyx:id/ksad_container\"] [text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/12775922'},{key:2,fastQuery:true,activityIds:'.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12775923'},{key:3,activityIds:'com.sigmob.sdk.base.common.TransparentAdActivity',matches:'[id=\"ad_area\"] [id=\"close_btn\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12775925','https://i.gkd.li/i/12775924']},{key:4,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12775921','https://i.gkd.li/i/12776903']}]}]},{id:'com.xifeng.fun',name:'OmoFun',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'com.xifeng.fun.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/14050836','https://i.gkd.li/i/14235476','https://i.gkd.li/i/14235479']},{key:1,activityIds:'com.xifeng.fun.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/14235478'}]},{key:2,name:'通知提示-公告弹窗',desc:'点击\"我知道了\"',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[desc=\"我知道了\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/971c3631-a9cc-4aec-992e-6cf1166eea1b',snapshotUrls:'https://i.gkd.li/i/14235411'}]}]},{id:'com.maertsno.m',name:'OnStream',groups:[{key:1,name:'全屏广告',rules:[{fastQuery:true,activityIds:'co.notix.interstitial.InterstitialActivity',matches:'[vid=\"tv_button\"]',snapshotUrls:'https://i.gkd.li/i/13842558'}]}]},{id:'com.weilaishanhai.oopz',name:'Oopz',groups:[{key:1,name:'开屏广告',desc:'该软件部分开屏广告存在虚假跳过按钮，若点击会误触广告，因此该规则无法适配所有情况',matchTime:10000,actionMaximum:2,resetMatch:'app',priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[name!$=\"RelativeLayout\"] > [text*=\"跳过\"][index=0][text.length<10][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fbb3e3c2-74d7-4b1b-8daa-48bab63189a4',snapshotUrls:['https://i.gkd.li/i/21202366','https://i.gkd.li/i/21202363','https://i.gkd.li/i/21202366','https://i.gkd.li/i/21503107'],excludeSnapshotUrls:'https://i.gkd.li/i/21202513'},{preKeys:[0],fastQuery:true,matches:'@ImageView[id=\"com.wangmai.allmodules:id/wm_image_clear\"] <2 RelativeLayout[childCount=2] < FrameLayout < [vid=\"wm_reward_main\"]',exampleUrls:'https://e.gkd.li/c1299341-66bf-4702-885c-3fbe5d648675',snapshotUrls:'https://i.gkd.li/i/21202940'},{key:1,fastQuery:true,activityIds:'cn.jy.ad.sdk.activity.AdDetailActivity',matches:'@View[clickable=true][childCount=0][width<120 && height<120] < RelativeLayout[childCount=1] <2 RelativeLayout[childCount=2] < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/cd81effe-cd18-4e17-92e1-599ea4400126',snapshotUrls:'https://i.gkd.li/i/21502302'}],order:-10}]},{id:'tw.net.pic.m.openpoint',name:'OPENPOINT',groups:[{key:1,name:'全屏广告-每日弹窗广告',desc:'勾选[今日不再顯示]-点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'.activity.MainActivity',matches:'[vid=\"iv_check_box\"][checked=false]',exampleUrls:'https://e.gkd.li/ec0eea76-8689-498d-8329-75bdb06c1e30',snapshotUrls:'https://i.gkd.li/i/15806622'},{preKeys:[0],key:1,fastQuery:true,activityIds:'.activity.MainActivity',matches:'[vid=\"ivClose\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ec0eea76-8689-498d-8329-75bdb06c1e30',snapshotUrls:'https://i.gkd.li/i/15806622'}]},{key:2,name:'通知提示-i珍食公告弹窗',desc:'勾选[我已了解]-点击[確認]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'.activity_ibon.IMapActivity',matches:'@[visibleToUser=true][text=\"atom-button-control-check-box-btn-check-box-n@3x\"][checked=false] <<n [vid=\"web_view\"]',exampleUrls:'https://e.gkd.li/a36088c2-79a7-4167-bb77-7bd9be05696b',snapshotUrls:'https://i.gkd.li/i/15806673'},{preKeys:[0],key:1,fastQuery:true,activityIds:'.activity_ibon.IMapActivity',matches:'@[visibleToUser=true][text=\"確認\"] <<n [vid=\"web_view\"]',exampleUrls:'https://e.gkd.li/a36088c2-79a7-4167-bb77-7bd9be05696b',snapshotUrls:'https://i.gkd.li/i/15806673'}]}]},{id:'com.excean.gspace',name:'OurPlay',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,ignoreGlobalGroupMatch:true,rules:[{fastQuery:true,matches:'@View[clickable=true][childCount=0] +2 LinearLayout >3 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8bad82e1-d00c-4d39-978c-513980b94962',snapshotUrls:'https://i.gkd.li/i/24539921'}],order:-10},{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',forcedTime:10000,rules:[{key:0,fastQuery:true,activityIds:'com.excelliance.kxqp.splash.SplashActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13302890'},{key:1,fastQuery:true,activityIds:'com.excelliance.kxqp.splash.SplashActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13447122'},{key:2,fastQuery:true,activityIds:['com.excelliance.kxqp.gs.main.MainActivity','com.smartdigimkt.sdk.basead.ui.ATPortraitTranslucentActivity','com.anythink.core.common.inner.ui.ATPortraitTranslucentActivity'],matches:'[vid=\"close_render_ad\" || vid=\"sdm_myoffer_btn_close_id\" || vid=\"anythink_myoffer_btn_close_id\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/15284762','https://i.gkd.li/i/24611979','https://i.gkd.li/i/25187840']},{key:3,fastQuery:true,activityIds:'com.excelliance.kxqp.gs.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/bcba68e4-31a9-4693-b348-3f7b62fe8d3a',snapshotUrls:'https://i.gkd.li/i/14862348'},{key:4,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<60 && height<60] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/48247609-a895-494d-9e3a-4575e809fe55',snapshotUrls:'https://i.gkd.li/i/24464957'},{key:6,activityIds:'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',matches:'@TextView[text=\"\"][width<90 && height<90] < View[childCount=1] - View > [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25202925'}]}]},{id:'com.picacomic.fregata',name:'PicACG',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.picacomic.fregata:id/imageButton_popup_close\"]',exampleUrls:'https://m.gkd.li/83610194/2a9a1179-3a50-4317-900a-42c8197517ed',snapshotUrls:'https://i.gkd.li/i/13422624'}],order:-10},{key:2,name:'通知提示-公告弹窗',desc:'点击主页面的公告和广告',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{matches:'[id=\"com.picacomic.fregata:id/button_dialog_announcement_positive\"]',exampleUrls:'https://m.gkd.li/83610194/a5cbd7ce-79b4-49da-ba01-2b7db907d1f1',snapshotUrls:'https://i.gkd.li/i/13422767'}]},{key:3,name:'局部广告-漫画详情页广告',desc:'点击卡片广告',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'com.picacomic.fregata.activities.MainActivity',matches:'[id=\"com.picacomic.fregata:id/imageButton_banner_close\"]',exampleUrls:'https://m.gkd.li/83610194/92feb979-d75a-4ee5-a880-da2e4250d1e3',snapshotUrls:'https://i.gkd.li/i/13423009'}]},{key:4,name:'功能类-自动签到',desc:'切换到个人页面时自动签到，并确定',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.picacomic.fregata.activities.MainActivity',rules:[{key:0,matches:'[id=\"com.picacomic.fregata:id/textView_profile_punch_in\"][text=\"打嗶卡\"]',exampleUrls:'https://m.gkd.li/83610194/d53cc0cb-2a3e-4398-a415-3b8083edd328',snapshotUrls:'https://i.gkd.li/i/13422844'},{preKeys:[0],key:1,matches:'[id=\"com.picacomic.fregata:id/button_dialog_custom_positive\"][text=\"確定\"]',exampleUrls:'https://m.gkd.li/83610194/90048fce-fe89-4ac7-9ae6-fe3d7b99aeaf',snapshotUrls:'https://i.gkd.li/i/13422874'}]},{key:5,name:'功能类-流量提醒弹窗',desc:'弹出流量提醒弹窗时自动点击“确定”',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'com.picacomic.fregata.activities.ComicViewerActivity',matches:'RelativeLayout > Button[text=\"確定\"][id=\"com.picacomic.fregata:id/button_dialog_custom_positive\"]',snapshotUrls:'https://i.gkd.li/i/13466492'}]}]},{id:'com.picovr.assistantphone',name:'PICO',groups:[{key:1,name:'更新提示',matchRoot:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ui.MainActivity',matches:'[vid=\"update_check_cancel_btn\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b63e9ce4-e333-4702-abd5-d2355f83da1f',snapshotUrls:'https://i.gkd.li/i/20852432'}]}]},{id:'com.mi.poketrade',name:'PokeHub',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@[desc=\"Cancel\"][visibleToUser=true] + [desc=\"Update\"]',exampleUrls:'https://e.gkd.li/b0a0c338-16b1-4892-9cd6-92b4f485fda8',snapshotUrls:'https://i.gkd.li/i/19624988'}]},{key:2,name:'全屏广告-订阅广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true] <2 View[getChild(5).desc=\"Subscribe\"] < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/19371ab4-5b1a-4efb-925a-883252fd50d0',snapshotUrls:'https://i.gkd.li/i/19643520'},{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'@View[desc=\"Back\"][visibleToUser=true] < ImageView[desc*=\"VIP\"] < View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/a7e15182-89fc-4b38-9acc-fdbbe81908f0',snapshotUrls:'https://i.gkd.li/i/19825695',excludeSnapshotUrls:'https://i.gkd.li/i/20598704'}]}]},{id:'com.qcymall.earphonesetup',name:'QCY',groups:[{key:1,name:'局部广告-我的-卡片广告',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.qcymall.earphonesetup.v2ui.activity.V2MainActivity',matches:'[vid=\"close_img_banner\"]',snapshotUrls:'https://i.gkd.li/i/13874219'}]}]},{id:'com.tencent.mobileqq',name:'QQ',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{excludeActivityIds:['.activity.ChatActivity','.search.activity.UniteSearchActivity'],excludeMatches:'[vid=\"root\"]',matches:'TextView[text^=\"跳过\"][text.length<=10][!(vid=\"title\")]',snapshotUrls:['https://i.gkd.li/i/13093155','https://i.gkd.li/i/13207731'],excludeSnapshotUrls:['https://i.gkd.li/i/13217807','https://i.gkd.li/i/13856647','https://i.gkd.li/i/13868177','https://i.gkd.li/i/14341023','https://i.gkd.li/i/15334565']}],order:-10},{key:1,name:'局部广告',desc:'点击关闭',rules:[{key:0,name:'好友动态详情页广告',fastQuery:true,activityIds:['com.qzone.reborn.base.QZoneTransparentShellActivity','com.qzone.reborn.base.QZoneShellActivity'],matches:'@[desc=\"关闭广告\"][visibleToUser=true] <4 RelativeLayout <2 LinearLayout <2 LinearLayout < FrameLayout <n RecyclerView < FrameLayout - FrameLayout >2 [text=\"详情\"]',exampleUrls:'https://e.gkd.li/b78a3e44-3bd9-445d-9199-e989269c2be3',snapshotUrls:['https://i.gkd.li/i/17009847','https://i.gkd.li/i/17815694','https://i.gkd.li/i/17827969']},{key:1,name:'推荐你试试这些玩法',activityIds:'com.qzone.reborn.feedx.activity.QZoneFriendFeedXActivity',fastQuery:true,matches:'@[desc=\"关闭\"] - [text=\"推荐你试试这些玩法\"]',exampleUrls:'https://e.gkd.li/6cf71a22-0e21-4877-86a7-69d84353ad5a',snapshotUrls:'https://i.gkd.li/i/18236745'},{key:2,fastQuery:true,activityIds:'.activity.SplashActivity',matches:'@ImageView[desc=\"关闭\"][clickable=true][childCount=0] -2 [text$=\"试用超级会员\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23837678'},{key:3,activityIds:'com.tencent.mobileqq.activity.SplashActivity',matches:'@ImageView[desc=\"关闭\"][clickable=true] <n RelativeLayout - RelativeLayout >3 ImageView[desc=\"快捷入口\"]',snapshotUrls:'https://i.gkd.li/i/24230528'},{key:4,activityIds:'com.tencent.mobileqq.activity.SplashActivity',matches:'@ImageView[width<100 && height<100][clickable=true] - TextView[text!=null] <n * + * >3 ImageView[desc=\"快捷入口\"]',snapshotUrls:'https://i.gkd.li/i/25235782'}]},{key:2,name:'分段广告',fastQuery:true,rules:[{key:0,activityIds:['com.qzone.reborn.feedpro.activity.QzoneFriendFeedProActivity','.guild.base.QPublicFragmentActivityForMainWebActivity'],matches:'@[clickable=true] > [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/21947672','https://i.gkd.li/i/24404962']},{key:1,activityIds:'.activity.SplashActivity',matches:'@[desc=\"更多\"][clickable=true] - [desc=\"广告\"][visibleToUser=true] - LinearLayout > [text=\"今天\"]',snapshotUrls:'https://i.gkd.li/i/24381585'},{preKeys:[0,1],activityIds:['com.qzone.reborn.feedpro.activity.QzoneFriendFeedProActivity','.activity.SplashActivity','.guild.base.QPublicFragmentActivityForMainWebActivity'],matches:'@[clickable=true] >(1,2) [text=\"关闭此条广告\"]',snapshotUrls:['https://i.gkd.li/i/21947698','https://i.gkd.li/i/24381598','https://i.gkd.li/i/24406932']}]},{key:7,name:'功能类-登录授权',desc:'自动点击登录',rules:[{key:1,fastQuery:true,matchRoot:true,actionMaximum:3,actionCd:500,activityIds:['com.tencent.biz.qrcode.activity.QRLoginAuthActivity','com.tencent.open.agent.PublicFragmentActivityForOpenSDK','com.tencent.open.agent.QuickLoginAuthorityActivity'],matches:['[text=\"登录确认\" || text$=\"申请使用\"][visibleToUser=true]','Button[text=\"登录\" || text=\"同意\" || text=\"确认\"][clickable=true][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/20737721','https://i.gkd.li/i/20737651','https://i.gkd.li/i/20737675','https://i.gkd.li/i/20737673','https://i.gkd.li/i/22631619']}]},{key:10,name:'功能类-自动勾选原图',desc:'发送图片时自动勾选原图，可手动取消勾选',actionMaximum:1,rules:[{fastQuery:true,activityIds:['.activity.SplashActivity','com.tencent.qqnt.qbasealbum.WinkHomeActivity','.activity.photo.album.NewPhotoListActivity'],matches:'@CheckBox[checked=false] + [text=\"原图\"]',snapshotUrls:['https://i.gkd.li/i/12705556','https://i.gkd.li/i/12705559','https://i.gkd.li/i/13295142','https://i.gkd.li/i/13476247']}]},{key:11,name:'功能类-自动点击查看原图',desc:'查看图片时自动点击原图',rules:[{fastQuery:true,activityIds:'com.tencent.richframework.gallery.QQGalleryActivity',anyMatches:['[text^=\"查看原图\"][clickable=true][visibleToUser=true]','@[clickable=true] > [text^=\"查看原图\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/14757735','https://i.gkd.li/i/24489364']}]},{key:13,name:'开屏广告-QQ小程序开屏广告',desc:'点击右下角跳过',fastQuery:true,actionMaximum:1,priorityTime:10000,rules:[{activityIds:['.mini.appbrand.ui.AppBrandUI','.activity.miniaio.MiniChatActivity'],matches:['[text=\"广告\"][visibleToUser=true]','[text=\"跳过\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/12877215','https://i.gkd.li/i/12919195','https://i.gkd.li/i/15130235']}],order:-10},{key:17,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,activityIds:['.activity.SplashActivity','.upgrade.ui.dialog.UpgradeActivity','.upgrade.activity.UpgradeActivity'],matches:'@[desc=\"关闭\"] <2 * >2 Button[text^=\"立即\" || text=\"马上升级\"][text.length=4]',snapshotUrls:['https://i.gkd.li/i/13386719','https://i.gkd.li/i/13526551','https://i.gkd.li/i/22455760','https://i.gkd.li/i/23393647']},{key:1,activityIds:'.upgrade.activity.UpgradeActivity',matches:['[text=\"立即升级\"]','[text=\"稍后处理\"]'],snapshotUrls:'https://i.gkd.li/i/14724108'}]},{key:18,name:'更新提示-消息页面-顶部',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.activity.SplashActivity',matches:'@ImageView[clickable=true][text=null][visibleToUser=true] - [text*=\"版本更新\" || text=\"点击下载\" || text=\"立即安装\" || text=\"点击更新\"][text.length<15]',snapshotUrls:['https://i.gkd.li/i/13255493','https://i.gkd.li/i/13843140','https://i.gkd.li/i/14138340','https://i.gkd.li/i/13931212','https://i.gkd.li/i/16323755','https://i.gkd.li/i/17529150'],excludeSnapshotUrls:'https://i.gkd.li/i/17920550'}]},{key:24,name:'局部广告-聊天页面广告',rules:[{key:1,name:'关键词广告',fastQuery:true,activityIds:['.profilecard.activity.FriendProfileCardActivity','.activity.ChatActivity','.activity.SplashActivity'],matches:'FrameLayout[childCount=2] >2 FrameLayout[childCount=2] >3 FrameLayout[childCount=2] > [text=\"跳过\" || text=\"关闭\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/4cf5bc02-d2c3-4ca4-833e-522a194e3131',snapshotUrls:['https://i.gkd.li/i/14183188','https://i.gkd.li/i/16549500','https://i.gkd.li/i/16555184']}]},{key:27,name:'功能类-自动领取群聊红包',desc:'自己发的红包、专属红包、口令红包、私聊红包不领',rules:[{key:0,fastQuery:true,activityIds:'.activity.SplashActivity',matches:'ImageView[childCount=0] <<(1,2) RelativeLayout < FrameLayout +2 LinearLayout >3 @ViewGroup[clickable=true][!(getChild(childCount.minus(1)).text^=\"已\")] + TextView[text=\"拼手气红包\"]',exampleUrls:'https://m.gkd.li/57941037/7a933a7f-dc5a-4eb7-8a6f-fe3cc4e8fb5e',snapshotUrls:['https://i.gkd.li/i/14221309','https://i.gkd.li/i/18574530','https://i.gkd.li/i/18725007','https://i.gkd.li/i/24551887']},{preKeys:[0],key:1,fastQuery:true,activityIds:['cooperation.qwallet.plugin.QWalletToolFragmentActivity','com.tencent.biz.TenpayActivity'],anyMatches:['@[desc=\"关闭\"][clickable=true] < RelativeLayout -2 ViewGroup >4 [text^=\"来晚一步\"][visibleToUser=true]','[desc=\"拆红包\"][visibleToUser=true]'],exampleUrls:'https://m.gkd.li/57941037/61006833-9806-45b2-b3a1-55b9b248958f',snapshotUrls:['https://i.gkd.li/i/14221242','https://i.gkd.li/i/18724880','https://i.gkd.li/i/24551748']},{preKeys:[1],key:2,fastQuery:true,activityIds:['cooperation.qwallet.plugin.QWalletToolFragmentActivity','com.tencent.biz.TenpayActivity'],matches:'@[desc=\"返回\"] +n [text=\"红包记录\"]',exampleUrls:'https://m.gkd.li/57941037/b90e6a69-ac57-41a5-bd2c-c500b92a58ba',snapshotUrls:['https://i.gkd.li/i/14221279','https://i.gkd.li/i/24551886']}]},{key:29,name:'功能类-申请入群后自动点击右上角关闭',actionMaximum:1,rules:[{fastQuery:true,activityIds:'.activity.QQBrowserActivity',matches:['TextView[text=\"入群申请中\"][visibleToUser=true]','TextView[text=\"关闭\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/14235163'}]},{key:31,name:'功能类-授权登录时关闭获取QQ好友关系',rules:[{fastQuery:true,activityIds:'com.tencent.open.agent.PublicFragmentActivityForOpenSDK',matches:'@CompoundButton[checked=true] - RelativeLayout > [text=\"你的QQ好友关系\"]',exampleUrls:'https://e.gkd.li/4d69a243-6a57-47ca-bc25-0a5353d80179',snapshotUrls:'https://i.gkd.li/i/16929347'}]},{key:32,name:'其他-联系人页面-顶部可能认识的人推荐',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.activity.SplashActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] -2 [text=\"开启推荐，发现可能认识的人。\"]',exampleUrls:'https://e.gkd.li/7922ab73-cc99-4559-b18c-5ab54dd9633a',snapshotUrls:'https://i.gkd.li/i/18237415'}]},{key:33,name:'功能类-自动解锁 Windows QQ',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'com.tencent.biz.qrcode.activity.UnlockPCQuickVerifyActivity',matches:'[text=\"解锁\"]',snapshotUrls:'https://i.gkd.li/i/15360265'}]},{key:34,name:'功能类-关闭体验模式提醒',desc:'点击[我知道了]',rules:[{fastQuery:true,activityIds:'.activity.QPublicFragmentActivity',matches:['[text^=\"当前处于\"][text*=\"体验模式\"][visibleToUser=true]','[text=\"我知道了\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/24561058'}]},{key:35,name:'功能类-自动跳转第三方应用',desc:'点击[允许]',rules:[{fastQuery:true,activityIds:'.activity.QQBrowserActivity',matches:['[text$=\"打开其他应用\"]','[text=\"允许\"][clickable=true][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/25142977'}]}]},{id:'com.rhmsoft.edit',name:'QuickEdit',groups:[{key:1,name:'功能类-自动点击完成',desc:'保存成功后点击完成',rules:[{fastQuery:true,activityIds:'.activity.MainActivity',matches:'@[text=\"完成\"][clickable=true] - * > [text^=\"保存成功\"]',snapshotUrls:'https://i.gkd.li/i/24842648'}]}]},{id:'com.rarlab.rar',name:'RAR',groups:[{key:10,name:'全屏广告-订购 RAR 弹窗',desc:'点击[放弃]',rules:[{fastQuery:true,activityIds:'com.rarlab.rar.MainActivity',matches:'[text=\"订购\" || text=\"訂閱\"] + [text=\"放弃\" || text=\"解除\"]',snapshotUrls:['https://i.gkd.li/i/12781596','https://i.gkd.li/i/15801328']}]}]},{id:'com.example.raylink_flutter',name:'RayLink',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"立即升级\"] + [desc=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13659530'}]},{key:2,name:'功能类-退出软件时点击\"退出程序\"',rules:[{key:0,fastQuery:true,activityIds:'com.remote.cn.MainActivity',matches:'[text=\"退出程序\"]',snapshotUrls:'https://i.gkd.li/i/14047538'},{key:1,fastQuery:true,activityIds:'com.remote.cn.MainActivity',matches:'@Button[desc=\"退出程序\"] <4 View < View < View < View < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/24852663'}]},{key:4,name:'通知提示-首页反诈骗提示',rules:[{activityIds:'com.remote.cn.MainActivity',matches:'[desc=\"允许远程本设备\"] +2 View[childCount=1][index=parent.childCount.minus(1)] > ImageView[clickable=true][width<80 && height<80]',snapshotUrls:['https://i.gkd.li/i/24853050','https://i.gkd.li/i/24995320']}]}]},{id:'org.readera',name:'ReadEra',groups:[{key:1,name:'评价提示-分享提示',desc:'点击右上角的x',rules:[{fastQuery:true,activityIds:'.MainActivity',action:'back',matches:'[text*=\"通过社交网络分享这款应用\"]',snapshotUrls:'https://i.gkd.li/i/22950138'}]},{key:2,name:'全屏广告',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@[desc=\"关闭\"][clickable=true] < * +n * >4 [text^=\"高级版\"]',snapshotUrls:'https://i.gkd.li/i/24335645'}]},{key:3,name:'全屏广告-高级版',desc:'注意：此规则会关闭手动打开的高级版开通界面，但该界面有时会自动弹出',rules:[{fastQuery:true,activityIds:'org.readera.MainActivity',matches:'@[desc=\"关闭\"][clickable=true] < * + * >5 [text=\"ReadEra Premium\"]',snapshotUrls:'https://i.gkd.li/i/24981838'}]}]},{id:'com.reddit.frontpage',name:'Reddit',groups:[{key:3,name:'其他-关闭订阅社区消息提示',desc:'自动点击[Not Now]',fastQuery:true,rules:[{activityIds:'com.reddit.launch.main.MainActivity',matches:'[vid=\"sheet_container\"] > [vid=\"cancel_button\"][text=\"Not Now\"][clickable=true]',exampleUrls:'https://e.gkd.li/b640f2c9-4564-420f-8a2f-20f461032f3d',snapshotUrls:['https://i.gkd.li/i/13649914','https://i.gkd.li/i/17269009']}]},{key:4,name:'其他-NSFW 内容提示',desc:'自动点击 continue',fastQuery:true,rules:[{activityIds:'com.reddit.launch.main.MainActivity',matches:'Button[text=\"Cancel\"] + Button[text=\"Continue\"]',snapshotUrls:'https://i.gkd.li/i/13649992'}]},{key:5,name:'功能类-自动点击翻译',rules:[{fastQuery:true,activityIds:'com.reddit.launch.main.MainActivity',matches:'@[id=\"translation_banner_action\"][clickable=true] > [visibleToUser=true][text=\"翻译\"] <<n [vid=\"fragment_pager\"]',exampleUrls:'https://e.gkd.li/8fcef25c-ff16-4456-8174-cac27aa7fc66',snapshotUrls:'https://i.gkd.li/i/22451437',excludeSnapshotUrls:'https://i.gkd.li/i/22451467'}]}]},{id:'com.zhiwei.rjm',name:'RJmao',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.zhiwei.rjm.MainActivity',matches:'ImageView < @ViewGroup[clickable=true] < * +2 ViewGroup > [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/a68b2a70-9bd3-4ba4-9802-f0b60052d4c2',snapshotUrls:'https://i.gkd.li/i/14430564'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,name:'视频播放页卡片广告',fastQuery:true,activityIds:'com.zhiwei.rjm.MainActivity',matches:'@TextView[clickable=true] <2 View + View > [visibleToUser=true][text=\"广告\"] <<n [vid=\"ksad_container\"]',exampleUrls:'https://m.gkd.li/57941037/7bfe06a0-d91a-40cf-879e-1c03beac7a35',snapshotUrls:'https://i.gkd.li/i/14430539'}]}]},{id:'com.pranavpandey.rotation',name:'Rotation',groups:[{key:1,name:'全屏广告',rules:[{activityIds:'com.google.android.gms.ads.AdActivity',matches:'[desc=\"Interstitial close button\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/23497601'}]}]},{id:'cn.runningquotient.rq',name:'RQrun',groups:[{key:1,name:'功能类-自动签到',desc:'点击右侧[签到福利]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'cn.runningquotient.rq.page.common_page.MainActivity',matches:'[vid=\"iv_main_checkin_entry\"]',snapshotUrls:'https://i.gkd.li/i/16105502'},{preKeys:[0],key:1,activityIds:'cn.runningquotient.rq.page.common_page.CommonContainerActivity',matches:'@[visibleToUser=true][text=\"我知道了\"] <<n [vid=\"common_h5_container\"]',snapshotUrls:'https://i.gkd.li/i/16105938'},{preKeys:[1],key:2,activityIds:'cn.runningquotient.rq.page.common_page.CommonContainerActivity',matches:'[vid=\"iv_setting_header_view_left\"]',snapshotUrls:'https://i.gkd.li/i/16105942'}]}]},{id:'com.sec.android.app.music',name:'Samsung Music',groups:[{key:1,name:'功能类-[优化电池使用量]弹窗',desc:'点击[取消]',rules:[{fastQuery:true,activityIds:'com.sec.android.app.music.common.activity.MusicMainActivity',matches:['[text=\"是否为三星音乐关闭优化电池使用量？\"]','[text=\"取消\"]'],exampleUrls:'https://m.gkd.li/57941037/884ae3c4-5b94-4213-939c-9da783dd0be9',snapshotUrls:'https://i.gkd.li/i/15144792'}]}]},{id:'com.sankakucomplex.channel.black',name:'Sankaku Black',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.sc.channel.MainActivity',matches:'ImageView[childCount=0] < ViewGroup[childCount=1] < @ViewGroup[clickable=true] +4 ViewGroup > [text*=\"UPGRADE NOW\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5ff482ad-639e-42a0-86db-19df81689e2e',snapshotUrls:'https://i.gkd.li/i/23687159'}]}]},{id:'com.realme.securitycheck',name:'SecurityAnalysis',groups:[{key:1,name:'局部广告-安全监测通过后的广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.realme.securitycheck.SecurityCheckActivity',matches:'[vid=\"ad_contain\"] >5 [vid=\"close\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/c4a9acc9-3108-4364-8586-906b200e1171',snapshotUrls:'https://i.gkd.li/i/14476628'}]},{key:2,name:'功能类-关闭安装应用后的安全检测',rules:[{fastQuery:true,activityIds:'.SecurityCheckActivity',matches:'[vid=\"finish\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f8a626f2-36dd-4e3a-9ceb-70877c27330c',snapshotUrls:'https://i.gkd.li/i/20592226'}]}]},{id:'com.allinone.callerid',name:'Showcaller',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'[id=\"mys-content\"] > View > View > Button[clickable=true]',snapshotUrls:'https://i.gkd.li/i/13696207'},{key:1,matches:'[id=\"close-button\"] > View > View > Image',snapshotUrls:'https://i.gkd.li/i/13696205'}]}]},{id:'cn.soulapp.android',name:'Soul',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/20139575'},{key:1,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/20139739'}],order:-10},{key:2,name:'局部广告-广场页卡片广告',rules:[{fastQuery:true,activityIds:'cn.soulapp.android.component.startup.main.MainActivity',matches:'[id=\"cn.soulapp.android:id/sl_ad_root\"] >n [id=\"cn.soulapp.android:id/fl_tag_container\"]',snapshotUrls:'https://i.gkd.li/i/12838000'}]},{key:3,name:'评价提示-app评分',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.component.chat.ConversationActivity','.component.startup.main.MainActivity'],matches:['[vid=\"score_message\"][visibleToUser=true]','[vid=\"cancel\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/4f67640e-836c-4b17-9870-5bb8b8547462',snapshotUrls:['https://i.gkd.li/i/13425057','https://i.gkd.li/i/18423888']}]},{key:4,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,activityIds:['.component.startup.main.MainActivity','.component.chat.ConversationActivity'],rules:[{key:0,matches:'@[id=\"cn.soulapp.android:id/img_close\"] -2 RelativeLayout > [text=\"升级到最新版本\"]',exampleUrls:'https://e.gkd.li/b8aedb39-1ef1-4b41-80da-0948614d9c7f',snapshotUrls:['https://i.gkd.li/i/13693361','https://i.gkd.li/i/18096443']},{key:1,matches:'[text=\"升级体验\"] - [text=\"关闭\"]',exampleUrls:'https://e.gkd.li/8980a9a6-5ea3-4d61-afdb-e22ffbf1cbde',snapshotUrls:'https://i.gkd.li/i/15034131'}]},{key:5,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.component.startup.main.MainActivity',matches:'[text=\"消息通知显示消息内容\"] +3 [vid=\"img_close\"]',snapshotUrls:'https://i.gkd.li/i/14332334'}]},{key:6,name:'局部广告-帖子详情页卡片广告',fastQuery:true,rules:[{key:0,activityIds:'cn.soulapp.android.component.square.post.base.detail.PostDetailActivity',matches:'@ImageView[visibleToUser=true] <2 * < [vid=\"tvAdClose\"]',snapshotUrls:'https://i.gkd.li/i/14332294'},{key:1,activityIds:'cn.soulapp.android.component.square.post.base.detail.PostDetailActivity',matches:'@[clickable=true][visibleToUser=true] >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/14359616'}]},{key:7,name:'全屏广告-送礼开聊会话',desc:'自动点击先不聊了',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'.component.chat.ConversationActivity',matches:'[vid=\"cl_gift_normal\"] > TextView[vid=\"tv_btn_close\"]',snapshotUrls:'https://i.gkd.li/i/19448971'}]},{key:8,name:'全屏广告-推荐页领金币',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'.component.startup.main.MainActivity',matches:'[vid=\"tslAdLayout\"] [vid=\"tv_cancel\"]',exampleUrls:'https://e.gkd.li/f721ac73-f66c-45ca-8660-0c3e57845fd9',snapshotUrls:'https://i.gkd.li/i/21900487'}]}]},{id:'org.zwanoo.android.speedtest',name:'SpeedTest',groups:[{key:1,name:'局部广告-测速后广告',rules:[{key:1,fastQuery:true,activityIds:'com.ookla.mobile4.screens.main.MainViewActivity',matches:'[id=\"org.zwanoo.android.speedtest:id/suite_completed_close_ad_button\"]',snapshotUrls:'https://i.gkd.li/i/12893175'}]}]},{id:'com.spotify.music',name:'Spotify',groups:[{key:1,name:'局部广告-卡片广告',fastQuery:true,rules:[{activityIds:'.SpotifyMainActivity',matches:'[vid=\"ad_tag\"] + [vid=\"close_button\"][clickable=true]',exampleUrls:'https://e.gkd.li/539c0135-9b5b-44c2-baec-4eb9953f8e69',snapshotUrls:'https://i.gkd.li/i/24270410'}]}]},{id:'com.steampy.app',name:'SteamPY',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.common.MainActivity',matches:'@[id=\"com.steampy.app:id/imgClose\"] - RelativeLayout [id=\"com.steampy.app:id/tv_update\"]',snapshotUrls:'https://i.gkd.li/i/13695519'}]},{key:2,name:'功能类-首页优惠券弹窗自动点击领取/使用',fastQuery:true,matchTime:10000,rules:[{activityIds:'.activity.common.MainActivity',matches:'[vid=\"coupon_right\"]',exampleUrls:['https://e.gkd.li/2e87decb-54ba-4f8b-9330-f037c220d2d9','https://e.gkd.li/b2e256c2-c606-430c-afa9-3cd02f4d56c2'],snapshotUrls:['https://i.gkd.li/i/16860018','https://i.gkd.li/i/16860017']}]}]},{id:'com.taptap',name:'TapTap',groups:[{key:2,name:'分段广告-游戏浏览页面推荐广告',desc:'点击[]对此内容不感兴趣]',fastQuery:true,rules:[{key:0,activityIds:'com.taptap.other.basic.impl.TapMainActivity',matches:'[id=\"com.taptap.app.middle:id/decision_layout_mask\"] + @[id=\"com.taptap.app.game:id/app_menu\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12840903','https://i.gkd.li/i/12842279','https://i.gkd.li/i/12864810']},{key:1,activityIds:['com.taptap.game.discovery.impl.findgame.allgame.dialog.FindGameMenuDialog','com.taptap.other.basic.impl.TapMainActivity'],matches:'@LinearLayout > [text=\"对此内容不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/12840904','https://i.gkd.li/i/13258679']}]},{key:3,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.upgrade.library.dialog.UpgradeDialogAct',matches:'@[vid=\"btn_dismiss\"] -2 * >2 [text=\"发现新版本\"]',snapshotUrls:['https://i.gkd.li/i/13387479','https://i.gkd.li/i/13488702','https://i.gkd.li/i/14209268']}]},{key:4,name:'青少年模式-首页顶部横幅提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text*=\"青少年模式\"] + [vid=\"iv_close\"]',snapshotUrls:'https://i.gkd.li/i/14209309'}]}]},{id:'org.telegram.messenger',name:'Telegram',groups:[{key:1,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',fastQuery:true,activityIds:'org.telegram.ui.LaunchActivity',matches:'[text=\"打开通知\"] + [text*=\"打开 Telegram 的通知\"]',snapshotUrls:'https://i.gkd.li/i/22850638'}]},{key:2,name:'其他-添加生日提示',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'org.telegram.ui.LaunchActivity',matches:'@ImageView[clickable=true] - * >2 [text^=\"添加您的生日\"]',snapshotUrls:'https://i.gkd.li/i/22971075'}]},{key:3,name:'局部广告-拍卖提示',rules:[{fastQuery:true,activityIds:'org.telegram.ui.LaunchActivity',matches:'@ImageView[clickable=true][width<140 && height<140] - * >2 [text$=\"Auction is live!\"]',snapshotUrls:'https://i.gkd.li/i/23725025'}]},{key:4,name:'其他-首页公告栏',desc:'此规则覆盖生日提示、拍卖提示以及部分广告',rules:[{activityIds:'org.telegram.ui.LaunchActivity',matches:'@ImageView[desc=null][clickable=true][width<140 && height<140][left>540] - LinearLayout[!(getChild(0).getChild(0).text=null)] < FrameLayout -2 FrameLayout >2 [text=\"Telegram\"]',snapshotUrls:'https://i.gkd.li/i/24560612',excludeSnapshotUrls:'https://i.gkd.li/i/25030822'}]}]},{id:'org.telegram.messenger.web',name:'Telegram',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:['[text=\"更新 Telegram\"]','@View[clickable=true] + [text=\"请稍后提醒我\"]'],snapshotUrls:'https://i.gkd.li/i/13847837'}]}]},{id:'com.dubox.drive',name:'TeraBox',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'TextView[id=\"com.dubox.drive:id/tv_skip\"]',snapshotUrls:'https://i.gkd.li/i/13200574'},{key:1,matches:'@[id=\"com.dubox.drive:id/ivClose\"] - * >2 [id=\"inmobi-ad\"]',snapshotUrls:'https://i.gkd.li/i/13688384'}],order:-10},{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dubox.drive.ui.MainActivity',matches:'ImageView[id=\"com.dubox.drive:id/ivClose\"]',snapshotUrls:'https://i.gkd.li/i/13200577'}]},{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.permission.view.PermissionDialogActivity',matches:'[text=\"Authorize\"] - [id=\"com.dubox.drive:id/dialog_button_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13688406'}]}]},{id:'com.enflick.android.TextNow',name:'TextNow',groups:[{key:1,name:'其他-设为默认应用提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activities.MainActivity',rules:[{key:0,matches:'[id=\"com.enflick.android.TextNow:id/btn_dismiss\"][text=\"Not Now\"]',snapshotUrls:'https://i.gkd.li/i/13630460'},{preKeys:[0],matches:'[id=\"android:id/button2\"][text=\"SKIP\"]',snapshotUrls:'https://i.gkd.li/i/13630463'}]},{key:2,name:'权限提示-通知/链接蓝牙附件设备',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.enflick.android.TextNow.activities.MainActivity',matches:'@ImageView[clickable=true] <2 [id=\"com.enflick.android.TextNow:id/calling_banner\"]',snapshotUrls:['https://i.gkd.li/i/13657279','https://i.gkd.li/i/13657280']}]}]},{id:'com.zhiliaoapp.musically',name:'TikTok',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'RelativeLayout[childCount=2] > @ImageView[index=1][clickable=true] <<n [id=\"android:id/custom\"]',snapshotUrls:'https://i.gkd.li/i/15144780'},{key:1,activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'@UIView[clickable=true] -3 FlattenUIText[text=\"Get products\"]',snapshotUrls:'https://i.gkd.li/i/16190364'}]},{key:2,name:'权限提示-通知权限',desc:'点击[暂时不要/稍后再说]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:['[text*=\"通知\"][visibleToUser=true]','[text=\"暂时不要\" || text=\"稍后再说\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/15944175','https://i.gkd.li/i/17963945']}]},{key:3,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'FrameLayout[childCount=1] >3 FrameLayout[childCount=3] > ImageView[clickable=true][childCount=0]',snapshotUrls:'https://i.gkd.li/i/16188665'}]},{key:4,name:'全屏广告-好友推荐弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'@ImageView[clickable=true] - [text=\"关注你的好友\"]',exampleUrls:'https://e.gkd.li/32069d2d-032c-4278-9ead-a48a464ecdd0',snapshotUrls:'https://i.gkd.li/i/16247893'}]}]},{id:'com.tencent.tim',name:'TIM',groups:[{key:1,name:'功能类-自动点击查看原图',rules:[{fastQuery:true,activityIds:['com.tencent.mobileqq.richmediabrowser.AIOGalleryActivity','com.tencent.richframework.gallery.QQGalleryActivity'],matches:'[text^=\"查看原图\"]',exampleUrls:'https://m.gkd.li/57941037/894c5e7b-aab1-452c-a2a7-67a605506c89',snapshotUrls:['https://i.gkd.li/i/15197486','https://i.gkd.li/i/17987327']}]},{key:2,name:'功能类-发送图片时自动勾选[原图]',actionMaximum:1,rules:[{fastQuery:true,activityIds:['com.tencent.mobileqq.activity.SplashActivity','com.tencent.qqnt.qbasealbum.WinkHomeActivity'],matches:'@[checked=false] + [text=\"原图\"]',exampleUrls:'https://m.gkd.li/57941037/57b4e39f-ba48-4e57-a5de-3a461a583e60',snapshotUrls:['https://i.gkd.li/i/15209768','https://i.gkd.li/i/17987325']}]}]},{id:'youqu.android.todesk',name:'ToDesk',groups:[{key:1,name:'局部广告-卡片广告',desc:'关闭卡片广告',rules:[{key:0,fastQuery:true,activityIds:['youqu.android.todesk.activity.WelcomeActivity','youqu.android.todesk.activity.MainActivity'],matches:'[id=\"youqu.android.todesk:id/ivAdClose\" || id=\"youqu.android.todesk:id/llClose\"]',exampleUrls:'https://m.gkd.li/57941037/7535a849-b4a7-4dd5-a6c1-4d3def042d70',snapshotUrls:['https://i.gkd.li/i/14175556','https://i.gkd.li/i/13228546']}]}]},{id:'com.tradingview.tradingviewapp',name:'TradingView',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.root.view.RootActivity',matches:'@[clickable=true][text=\"关闭广告\"] <<n [vid=\"chart_wbv\"]',exampleUrls:'https://e.gkd.li/3798ab1b-2cd3-471e-8303-b8124746e9d8',snapshotUrls:'https://i.gkd.li/i/16725697'}]},{key:2,name:'全屏广告',rules:[{fastQuery:true,activityIds:'.root.view.RootActivity',matches:'[vid=\"friday_fl_layout\"] > [vid=\"friday_iv_close\"]',exampleUrls:'https://e.gkd.li/9cc35e84-1b27-4aa5-a74b-ace7cf42d943',snapshotUrls:'https://i.gkd.li/i/18222211'}]}]},{id:'downloadtwittervideo.twitterdownloader.twittervideodownloader.twittersaver',name:'TwiTake',groups:[{key:3,name:'评价提示-评分弹窗',desc:'点击 LATER ',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'downloadtwittervideo.twitterdownloader.twittervideodownloader.twittersaver',matches:['[text=\"Love it\"][visibleToUser=true]','[text=\"LATER\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/13748858'}]}]},{id:'com.vmos.pro',name:'VMOS Pro',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.vmos.pro.activities.main.MainActivity',matches:'[text=\"不再显示本活动\"]',snapshotUrls:'https://i.gkd.li/i/13536416'}]}]},{id:'com.google.android.apps.googlevoice',name:'Voice',groups:[{key:10,name:'功能类-跳过实体号码链接',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['com.google.android.apps.voice.promo.PromoActivity','com.google.android.apps.voice.verification.procedure.VerificationActivity'],rules:[{matches:['[id=\"com.google.android.apps.googlevoice:id/title_view\"][text=\"Link this device to Google Voice\" || text=\"将此设备与 Google Voice 关联\" || text=\"將這個裝置連結到 Google Voice\"]','[id=\"com.google.android.apps.googlevoice:id/skip_button\"]'],snapshotUrls:['https://i.gkd.li/i/13314255','https://i.gkd.li/i/13437190','https://i.gkd.li/i/23205177']}]}]},{id:'com.DL.war.planes.inc.online.bomber.fighter.aircraft.ww2',name:'Warplane Inc. Online',groups:[{key:1,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:'com.yandex.mobile.ads.common.AdActivity',matches:'@ImageView[index=parent.childCount.minus(1)][clickable=true][visibleToUser=true] < ViewGroup <3 ViewGroup <2 ViewGroup +5 [text=\"Learn more\"]',snapshotUrls:'https://i.gkd.li/i/25241260'},{key:1,fastQuery:true,activityIds:'com.yandex.mobile.ads.common.AdActivity',matches:'@ImageView - ViewGroup >2 [text=\"AD\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25241244'},{key:2,fastQuery:true,activityIds:'com.applovin.adview.AppLovinFullscreenActivity',matches:'View[childCount=0] < @FrameLayout[clickable=true][childCount=1] <2 FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/25241191'}]}]},{id:'com.sflep.course',name:'WE Learn',groups:[{key:1,name:'功能类-离开考试页面弹窗',desc:'点击确定',rules:[{fastQuery:true,activityIds:'.activity.ClassActivity',matchTime:10000,actionMaximum:1,resetMatch:'app',matches:'@[text=\"确认\"][clickable=true] < * - [text^=\"系统检查到你离开了考试页面\"] <n Dialog <n * <<3 [vid=\"pp_about_content\"]',snapshotUrls:'https://i.gkd.li/i/23150673'}]},{key:2,name:'更新提示',rules:[{fastQuery:true,matches:['[text^=\"最新版本\"]','[text=\"以后再说\"]'],snapshotUrls:['https://i.gkd.li/i/23452864','https://i.gkd.li/i/23452891']}]},{key:3,name:'功能类-中断考试弹窗',desc:'点击确定',rules:[{activityIds:'com.sflep.course.activity.ClassActivity',matches:'@[text=\"确认\"][clickable=true] <n * - [text=\"系统将自动保存已答题记录，确认中断本次考试？\"] <<n Dialog',snapshotUrls:'https://i.gkd.li/i/23923998'}]}]},{id:'com.sina.weibocare',name:'WeiboBig',groups:[{key:1,name:'功能类-流量继续播放视频',desc:'点击[播放]',rules:[{fastQuery:true,activityIds:'com.weico.international.activity.MainFragmentActivity',matches:'[id=\"com.sina.weibocare:id/ed_btn_positive\"][text=\"播放\"]',snapshotUrls:'https://i.gkd.li/i/13253223'}]}]},{id:'cn.wps.moffice_eng',name:'WPS',groups:[{key:1,name:'分段广告-首页文档列表广告',fastQuery:true,activityIds:['cn.wps.moffice.main.StartPublicActivity','cn.wps.moffice.documentmanager.PreStartActivity','cn.wps.moffice.main.local.HomeRootActivity'],rules:[{key:0,matches:'[id=\"com.mopub.ad.xiaomi:id/nativeclose\"]',snapshotUrls:['https://i.gkd.li/i/12505350','https://i.gkd.li/i/12505286']},{preKeys:[0],key:99,matches:'[text=\"不喜欢此广告\"]',snapshotUrls:['https://i.gkd.li/i/12505365','https://i.gkd.li/i/13259090']}]},{key:2,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:['cn.wps.moffice.main.AfterLoginActivity','com.android.packageinstaller.permission.ui.GrantPermissionsActivity'],matches:'[id=\"cn.wps.moffice_eng:id/afterlogin_cancel\"]',snapshotUrls:['https://i.gkd.li/i/13259097','https://i.gkd.li/i/12882712']},{key:1,fastQuery:true,activityIds:'cn.wps.moffice.main.local.HomeRootActivity',matches:'View[childCount=3] > Image[text!=null] +2 @TextView[clickable=true] <<n [vid=\"push_tips_ptr_super_webview\"]',snapshotUrls:'https://i.gkd.li/i/13945835'},{key:2,fastQuery:true,activityIds:'cn.wps.moffice.plugin.cloudPage.newpage.NewCloudSettingNewActivity',matches:'[vid=\"cloud_popup_close_view\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/23786698'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"cn.wps.moffice_eng:id/close_new_func_guide_dialog_imageView\"]',snapshotUrls:'https://i.gkd.li/i/12882371'}]},{key:4,name:'功能类-关闭[开启WPS云服务]弹窗',desc:'自动点击不开启',fastQuery:true,activityIds:['cn.wps.moffice.main.cloud.roaming.login.core.QingLoginActivity','com.tencent.mm.plugin.webview.ui.tools.SDKOAuthUI','com.tencent.mm.ui.base.w'],rules:[{key:1,matches:'[id=\"cn.wps.moffice_eng:id/cloud_protocol_dialog_not_start_btn\"]',snapshotUrls:['https://i.gkd.li/i/12882536','https://i.gkd.li/i/12882610','https://i.gkd.li/i/12882678']},{key:2,matches:'[id=\"cn.wps.moffice_eng:id/dialog_button_positive\"]',snapshotUrls:'https://i.gkd.li/i/12882554'}]},{key:5,name:'分段广告-文档末尾广告',fastQuery:true,activityIds:'cn.wps.moffice.writer.multiactivity.Writer',rules:[{key:1,matches:'[id=\"cn.wps.moffice_eng:id/doc_end_ad_container_main\"] >2 [id=\"cn.wps.moffice_eng:id/btn_close\"]',snapshotUrls:'https://i.gkd.li/i/13513911'},{preKeys:[1],key:2,matches:'[text=\"关闭当前广告\"]',snapshotUrls:'https://i.gkd.li/i/13513914'}]},{key:6,name:'局部广告',rules:[{key:1,fastQuery:true,activityIds:'cn.wps.moffice.main.local.HomeRootActivity',matches:'[id=\"cn.wps.moffice_eng:id/home_banner_ad_spread_close\" || vid=\"phone_message_close_button\" || vid=\"close_home_ad_banner_iv\" || vid=\"iv_item_close\" || vid=\"iv_cloud_sync_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13804525','https://i.gkd.li/i/17893252','https://i.gkd.li/i/18047731','https://i.gkd.li/i/23577590','https://i.gkd.li/i/23786789']}]},{key:9,name:'功能类-自动签到',fastQuery:true,activityIds:'cn.wps.moffice.main.push.explore.PushTipsWebActivity',rules:[{key:0,matches:'@[visibleToUser=true][text=\"签到\"] <<n [vid=\"push_tips_ptr_super_webview\"]',exampleUrls:'https://e.gkd.li/c83fe3b0-74f2-45af-9f8d-6b70c622b424',snapshotUrls:'https://i.gkd.li/i/16382069'},{preKeys:[0],key:1,matches:'[text=\"签到成功\"] -2 View[childCount=1] > @Image[text!=null][childCount=0] <<n [vid=\"push_tips_ptr_super_webview\"]',exampleUrls:'https://e.gkd.li/c8c2f3cb-9bde-4a01-8eb6-145cf668993f',snapshotUrls:'https://i.gkd.li/i/16382075'}]},{key:10,name:'评价提示',rules:[{fastQuery:true,activityIds:'cn.wps.moffice.main.local.HomeRootActivity',matches:['[text=\"喜欢WPS Office吗？\"]','[text=\"以后再说\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23714159'}]}]},{id:'cn.wps.moffice_i18n',name:'WPS Office Lite',groups:[{key:1,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:'cn.wps.moffice.func.pdf.OverseaPayActivity',matches:'@ImageView[clickable=true][width<90 && height<90] < LinearLayout + [text=\"确定退出吗？\"]',snapshotUrls:'https://i.gkd.li/i/23577702'},{key:1,fastQuery:true,activityIds:'cn.wps.moffice.main.local.HomeRootActivity',matches:'@ImageView[clickable=true][width<90 && height<90] <n [childCount=2] <n [childCount=2] < [vid=\"TANGRAM_VIEW_CONTAINER_ID\"]',snapshotUrls:'https://i.gkd.li/i/23578206'}]},{key:2,name:'权限提示-通知权限',rules:[{fastQuery:true,activityIds:'cn.wps.moffice.main.local.HomeRootActivity',matches:['[text^=\"开启通知权限\"]','@[clickable=true] >2 [text=\"别再烦我\"]'],snapshotUrls:'https://i.gkd.li/i/23577888'}]}]},{id:'com.xfinity.digitalhome',name:'Xfinity',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.features.overview.activities.MainActivity',matches:'@[clickable=true][visibleToUser=true] > [desc=\"close\"] <<n [vid=\"details_modal_compose_body\"]',exampleUrls:'https://e.gkd.li/23c04f23-efb1-4562-a376-151ee4749e8d',snapshotUrls:'https://i.gkd.li/i/18563031'}]}]},{id:'app.revanced.android.youtube',name:'YouTube',groups:[{key:1,name:'全屏广告-会员广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'@Button[desc=\"Close\"][clickable=true][visibleToUser=true][width<150 && height<150] <<n [vid=\"custom\"]',exampleUrls:'https://e.gkd.li/3c45eae4-383d-489b-ae58-f58d70ea4478',snapshotUrls:'https://i.gkd.li/i/20856330'}]}]},{id:'by.green.tuber',name:'YouTube',groups:[{key:1,name:'功能类-关闭底部播放横条',rules:[{activityIds:'.MainActivity',matches:'ImageButton[desc=\"预览缩略图\"] +2 LinearLayout > ImageButton + ImageButton[visibleToUser=true][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24590682'}]}]},{id:'com.google.android.youtube',name:'youtube',groups:[{key:0,name:'全屏广告-视频播放-跳过广告',rules:[{fastQuery:true,key:0,activityIds:['com.google.android.apps.youtube.app.watchwhile.WatchWhileActivity','com.google.android.apps.youtube.app.watchwhile.MainActivity','com.google.android.youtube'],matches:'[vid=\"skip_ad_button\" || id=\"com.google.android.youtube:id/modern_skip_ad_text\"]',snapshotUrls:['https://i.gkd.li/i/13797491','https://i.gkd.li/i/12565261','https://i.gkd.li/i/13705106']}]},{key:1,name:'全屏广告-视频播放-赞助商广告',fastQuery:true,activityIds:['com.google.android.apps.youtube.app.watchwhile.WatchWhileActivity','com.google.android.apps.youtube.app.watchwhile.MainActivity'],rules:[{matches:'@[desc=\"关闭广告面板\" || desc=\"Close ad panel\"] <<n [vid=\"panel_header\"]',snapshotUrls:['https://i.gkd.li/i/13797491','https://i.gkd.li/i/13705106','https://i.gkd.li/i/14784199']}]},{key:3,name:'全屏广告-会员广告',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'[!(getChild(0).getChild(0).desc=\"Image attachment\")] + @[desc=\"不用了，谢谢\" || desc=\"关闭\" || desc=\"Close\" || desc=\"No thanks\"][visibleToUser=true] <<n [vid=\"bottom_ui_container\" || vid=\"custom\"]',snapshotUrls:['https://i.gkd.li/i/13797512','https://i.gkd.li/i/18017075','https://i.gkd.li/i/18549944','https://i.gkd.li/i/19578085'],excludeSnapshotUrls:'https://i.gkd.li/i/21978683'}]},{key:4,name:'权限提示-通知权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:['[text=\"开启通知\"]','[text=\"不用了\"]'],snapshotUrls:'https://i.gkd.li/i/14194155'}]},{key:5,name:'功能类-自动翻译评论',desc:'评论区自动点击[翻译成中文]',rules:[{fastQuery:true,actionCd:500,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'@Button[desc^=\"翻译成中文\"][clickable=true][visibleToUser=true] <<n [vid=\"results\" || vid=\"section_list\"]',exampleUrls:'https://e.gkd.li/e9d6eaa8-9fbf-4b16-8f0c-50239597c687',snapshotUrls:['https://i.gkd.li/i/17068544','https://i.gkd.li/i/17068647','https://i.gkd.li/i/17501400']}]},{key:6,name:'其他-关闭播放器辅助功能弹窗',desc:'点击[Dismiss]',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'[text=\"Dismiss\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/aa8f2617-fd6d-43a8-951d-1bd6efc504d3',snapshotUrls:'https://i.gkd.li/i/19930694'}]},{key:7,name:'功能类-关闭视频播放结束后的推荐视频',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',anyMatches:['@[vid=\"close_button\"] - LinearLayout >2 [text=\"Suggested video\" || text=\"推荐视频\"][visibleToUser=true]','[vid=\"engagement_close_button\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/22757392','https://i.gkd.li/i/22762876','https://i.gkd.li/i/22757397']}]},{key:8,name:'局部广告',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'@ImageView[clickable=true][width<100 && height<100] <<n [vid=\"panel_header\"]',snapshotUrls:'https://i.gkd.li/i/23787178'}]},{key:9,name:'分段广告-播放页广告',rules:[{key:1,fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'@[vid=\"overflow_button\"][clickable=true] <<n [vid=\"collapsible_ad_cta_overlay_container\"]',snapshotUrls:'https://i.gkd.li/i/23790199'},{key:2,preKeys:[1],fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'@[clickable=true] > [text=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/23772979'}]}]},{id:'app.revanced.android.apps.youtube.music',name:'YouTube Music',groups:[{key:1,name:'全屏广告-会员广告',rules:[{key:0,fastQuery:true,anyMatches:['@Button[desc=\"No thanks\"][visibleToUser=true] <<n [vid=\"custom\"]','[text=\"No thanks\"][visibleToUser=true]'],exampleUrls:['https://e.gkd.li/f07c01d7-9db2-43dd-9a89-ccb3d2a6200e','https://e.gkd.li/d1fbcb9c-bcc8-466e-9e94-63c4c7a22fd2'],snapshotUrls:['https://i.gkd.li/i/20448377','https://i.gkd.li/i/20598829']},{key:1,fastQuery:true,activityIds:'com.google.android.apps.youtube.music.activities.MusicActivity',matches:'@Button[desc=\"Close\"][clickable=true][visibleToUser=true][width<150&&height<150] <<n [vid=\"custom\"]',exampleUrls:'https://e.gkd.li/2048d5b5-514f-46fa-9970-d442b1656fb0',snapshotUrls:['https://i.gkd.li/i/20648224','https://i.gkd.li/i/20856350']}]}]},{id:'com.google.android.apps.youtube.music',name:'YouTube Music',groups:[{key:1,name:'局部广告-播放界面广告',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.music.activities.MusicActivity',matches:'[id=\"com.google.android.apps.youtube.music:id/skip_ad_button\"]',snapshotUrls:'https://i.gkd.li/i/13196056'}]},{key:2,name:'全屏广告-会员广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.activities.MusicActivity',matches:'@[desc=\"Close\" || desc=\"No thanks\"][visibleToUser=true] <<n [vid=\"custom\"]',exampleUrls:'https://e.gkd.li/42b2cb6d-b1e2-4cb1-84d8-399939263711',snapshotUrls:['https://i.gkd.li/i/18542111','https://i.gkd.li/i/18727504']},{key:1,fastQuery:true,activityIds:'.activities.MusicActivity',matches:'[text=\"No thanks\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/eb519d7d-8d6c-4196-bf23-ea8c0511cfa9',snapshotUrls:'https://i.gkd.li/i/19442247'}]},{key:3,name:'通知提示-隐私提醒',desc:'点击[OK]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.activities.MusicActivity',matches:['[text=\"Privacy check-up\"][visibleToUser=true]','[text=\"Ok\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/bffc2f66-8538-4970-9b7b-9da2e4a397ab',snapshotUrls:'https://i.gkd.li/i/18546896'}]}]},{id:'anddea.youtube',name:'YouTube RVX',groups:[{key:1,name:'功能类-评论区自动点击[翻译成中文]',rules:[{fastQuery:true,activityIds:'com.google.android.apps.youtube.app.watchwhile.MainActivity',matches:'@Button[desc^=\"翻译成中文\"][visibleToUser=true] <<n [vid=\"results\"]',exampleUrls:'https://e.gkd.li/c16f1e91-7c74-46d4-bcb2-dc15e9b6812d',snapshotUrls:'https://i.gkd.li/i/18287650'}]}]},{id:'com.myzaker.ZAKER_Phone',name:'ZAKER',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0c69945f-ac0e-44a8-a0a3-95544e53849f',snapshotUrls:'https://i.gkd.li/i/20689993'},{key:1,position:{left:'width * 0.9009',top:'width * 0.075'},matches:'[id=\"com.myzaker.ZAKER_Phone:id/cover_pic\"]',exampleUrls:'https://m.gkd.li/57941037/c140267a-a48a-45a9-9303-7507aa2008e4',snapshotUrls:'https://i.gkd.li/i/13694552'}],order:-10}]},{id:'com.xiaomi.hm.health',name:'Zepp Life',groups:[{key:1,name:'局部广告-首页-底部广告',rules:[{fastQuery:true,activityIds:'com.xiaomi.hm.health.activity.ChannelMainTabActivity',matches:'ImageView[id=\"com.xiaomi.hm.health:id/close_icon\"]',snapshotUrls:'https://i.gkd.li/i/13695424'}]}]},{id:'org.daimhim.zzzfun',name:'ZzzFun',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{activityIds:'org.daimhim.zzzfun.ui.home.video.VideoDetailsActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13402608'}]}]},{id:'dxwt.questionnaire.ui',name:'10000社区',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@View[desc^=\"关闭\"][visibleToUser=true] <3 FrameLayout < FrameLayout < FrameLayout < [id=\"dxwt.questionnaire.ui:id/container\"]',snapshotUrls:'https://i.gkd.li/i/13255491',excludeSnapshotUrls:'https://i.gkd.li/i/13259475'}],order:-10}]},{id:'com.ylmf.androidclient',name:'115生活',groups:[{key:1,name:'功能类-自动签到',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:['com.ylmf.androidclient.UI.MainBossActivity','com.main.world.equity.activity.SignInActivity','com.main.world.equity.activity.SignInRewardActivity'],rules:[{key:0,name:'点击[签到]-1',matches:'@[clickable=true] >2 [text=\"签到\"]',snapshotUrls:['https://i.gkd.li/i/14738911','https://i.gkd.li/i/14738906']},{preKeys:[0],key:3,name:'点击[签到]-2',matches:'[vid=\"iv_sign_in_btn\"]',snapshotUrls:'https://i.gkd.li/i/15510753'},{preKeys:[0,3],key:1,name:'点击[我知道了]',matches:'[text=\"我知道了\"]',snapshotUrls:['https://i.gkd.li/i/14738909','https://i.gkd.li/i/15510873']},{preKeys:[1],key:2,name:'返回',action:'back',matches:'[text=\"签到规则\"]',snapshotUrls:['https://i.gkd.li/i/14738907','https://i.gkd.li/i/15509322']}]},{key:2,name:'更新提示',desc:'点击[返回]关闭页面',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ylmf.androidclient.UI.UpdateVersionActivity',matches:'@[desc=\"转到上一层级\"] + [text=\"更新版本\"]',exampleUrls:'https://m.gkd.li/57941037/43d4fa0c-789c-4cf7-aa12-7232e9d23e6d',snapshotUrls:'https://i.gkd.li/i/14738944'}]}]},{id:'com.mfcloudcalculate.networkdisk',name:'123云盘',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:['com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity','com.mfcloudcalculate.networkdisk.activity.AdFreeActivity','.activity.LauncherActivity','com.adgain.sdk.base.activity.AdActivity'],matches:'[vid=\"tv_ad_free_close\" || vid=\"tv_ad_free_colse\" || vid=\"adgain_interstitial_skip_ll\" || vid=\"adgain_interstitial_close_ll\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/4cafd5fd-b5ed-4df1-b9f2-f443f53a7166',snapshotUrls:['https://i.gkd.li/i/13546173','https://i.gkd.li/i/14696860','https://i.gkd.li/i/18121213','https://i.gkd.li/i/24675097','https://i.gkd.li/i/24927790']},{key:1,fastQuery:true,activityIds:'com.mfcloudcalculate.networkdisk.activity.EmptyActivity',matches:'ImageView < @ViewGroup[clickable=true] < ViewGroup <7 ViewGroup + ViewGroup [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/cf43eaec-45f8-4e1a-bd3b-6a88fd055d29',snapshotUrls:'https://i.gkd.li/i/16154340'},{key:2,activityIds:'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',matches:'[text=\"反馈\"] -4 View[childCount=1] > Image[childCount=0][text=\"\"]',exampleUrls:'https://e.gkd.li/2ec6e71f-93b4-4ac4-a464-26d2a859445f',snapshotUrls:'https://i.gkd.li/i/17247801'},{key:3,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/49cef679-3efb-4719-9af9-8f3a4c311191',snapshotUrls:['https://i.gkd.li/i/17306992','https://i.gkd.li/i/24472832']},{key:4,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true] - [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/af430910-56e0-4b19-b23f-b120ce19fdc0',snapshotUrls:'https://i.gkd.li/i/17456625'},{key:5,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/069fb571-ab57-42a7-a360-79b44efc2790',snapshotUrls:'https://i.gkd.li/i/18032004'},{key:6,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:['[text=\"反馈\"][visibleToUser=true]','[text=\"跳过\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/1326c88b-81e0-4f78-b301-778d29e10433',snapshotUrls:'https://i.gkd.li/i/18121205'},{key:7,fastQuery:true,activityIds:'com.meishu.sdk.activity.SdkInterstitialActivity',matches:'[vid=\"ms_activity_sdk_interstitial_cacel\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e2e7b175-20f6-4e12-a24a-504364a8b765',snapshotUrls:'https://i.gkd.li/i/18095705'},{key:8,fastQuery:true,action:'back',activityIds:'.MainActivity',matches:'[desc=\"开通前请阅读\"] -8 @ImageView[clickable=true][childCount=0][visibleToUser=true] < View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/21820334'},{key:9,fastQuery:true,activityIds:'.MainActivity',matches:'@[id=\"cj.mobile.wm.allmodules:id/wm_pop_pic_close\"] +n * > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/23253580'},{key:10,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<60 && height<60] < View[childCount=1] < View[childCount=1] < View[childCount=1] < View[childCount=1] + View >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/34c7741f-0f03-4b0d-b8d2-917ed297e304',snapshotUrls:'https://i.gkd.li/i/24119772'},{key:11,fastQuery:true,action:'back',activityIds:'.MainActivity',matches:'[desc=\"开通前请阅读\"] -n @ImageView[childCount=0][width>800] <(1,2) View < View < View < View < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/ee504d60-ca93-40de-bb0f-292ef1df8c70',snapshotUrls:['https://i.gkd.li/i/24119773','https://i.gkd.li/i/25128678']},{key:12,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[vid=\"channel_insert_close_iv\"][clickable=true] - ImageView[vid=\"iv_ad_icon\"]',exampleUrls:'https://e.gkd.li/fa0391fe-54d4-4db0-930d-2cb9002b3786',snapshotUrls:'https://i.gkd.li/i/24325263'},{key:13,fastQuery:true,activityIds:'.MainActivity',matches:'@TextView[clickable=true][childCount=0] <2 FrameLayout[childCount=2] - LinearLayout >4 [text$=\"第三方应用\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e6486e20-e908-48da-b84a-f3ea5519346b',snapshotUrls:'https://i.gkd.li/i/24404354'},{key:14,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<60 && height<60] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24473530'},{key:15,activityIds:'com.byazt.sr.Stub_Standard_Portrait_Activity',matches:'View[childCount=5] > [text^=\"svg\"][index=0][childCount=0]',snapshotUrls:'https://i.gkd.li/i/25128382'},{key:16,activityIds:'.MainActivity',matches:'View[childCount=0] < FrameLayout[childCount=2] - LinearLayout >4 [text$=\"第三方应用\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25128313'},{key:17,activityIds:'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',matches:'[id=\"ad_area\"] > [id=\"close_btn\"]',snapshotUrls:'https://i.gkd.li/i/25128394'}]},{key:3,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@View[clickable=true] - [desc=\"立即更新\"]',exampleUrls:'https://e.gkd.li/02cf5d37-8808-4abb-abf9-81f7ba8a8375',snapshotUrls:'https://i.gkd.li/i/17456852'}]},{key:4,name:'功能类-扫码自动确认登录',fastQuery:true,actionMaximum:1,activityIds:'.MainActivity',rules:[{key:0,matches:'[desc=\"我已阅读并同意\"] - @View[clickable=true][text=null][visibleToUser=true][width<100 && height<100] <7 View[childCount=11] < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/b84f0579-952b-4c6c-9706-dc300eb4a555',snapshotUrls:'https://i.gkd.li/i/20521452'},{preKeys:[0],matches:'@View[desc=\"确认登录\"][visibleToUser=true] <5 View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/b84f0579-952b-4c6c-9706-dc300eb4a555',snapshotUrls:'https://i.gkd.li/i/20521452'}]},{key:5,name:'全屏广告-相册自动备份弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true][width<100 && height<100] +2 [desc=\"开启相册自动备份\"]',exampleUrls:'https://e.gkd.li/e86a59e7-9329-4931-9bdd-5f6b4f896294',snapshotUrls:'https://i.gkd.li/i/21326468'}]},{key:6,name:'分段广告',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'@TextView[clickable=true][childCount=0] <2 FrameLayout[childCount=2] < FrameLayout <2 LinearLayout + LinearLayout > [text=\"了解详情\"]',exampleUrls:'https://e.gkd.li/64fcf71b-b7a8-4d1e-8fd4-8be4ea4692a2',snapshotUrls:'https://i.gkd.li/i/24404389'},{key:1,activityIds:'.MainActivity',matches:'@Image[childCount=0][width<60 && height<60][visibleToUser=true] < View[childCount=1] -(1,2,3) View >(2,3) [text=\"广告\"]',exampleUrls:'https://e.gkd.li/e6fc2756-928f-48d4-af51-3b6ce9aa557b',snapshotUrls:['https://i.gkd.li/i/24404390','https://i.gkd.li/i/24979310','https://i.gkd.li/i/25128397']},{key:2,fastQuery:true,activityIds:'.MainActivity',matches:'@View[clickable=true][childCount=0][visibleToUser=true] < [desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/54463724-d3c0-42b4-8fac-adf47b31799d',snapshotUrls:'https://i.gkd.li/i/24404391'},{key:3,fastQuery:true,activityIds:'.MainActivity',matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] < ViewGroup[childCount=1] < ViewGroup[childCount=1] -2 ViewGroup >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/24589944'},{key:4,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[clickable=true][id=null][childCount=0] - [text=\"投诉\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24979308'},{key:5,fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"ptgImgClose\" || vid=\"sdm_myoffer_banner_close\" || vid=\"ksad_banner_item_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24979282','https://i.gkd.li/i/25128395','https://i.gkd.li/i/25128396']},{key:6,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][clickable=true] - [text^=\"立即\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25128309'},{preKeys:[0,1,2,3,4,5,6],fastQuery:true,activityIds:'.MainActivity',matches:'@[clickable=true] >2 [text=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24590419'}]},{key:7,name:'局部广告',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[clickable=true][childCount=0] <2 FrameLayout +n LinearLayout > [text^=\"立即\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a49e21d0-7259-4f6a-93e2-add166738a5b',snapshotUrls:['https://i.gkd.li/i/24675412','https://i.gkd.li/i/24675589']}]}]},{id:'com.canghai.haoka',name:'172号卡',groups:[{key:1,name:'通知提示-[公安部提示]弹窗',desc:'点击[我已知晓，并承诺本人使用]',rules:[{activityIds:'io.dcloud.PandoraEntryActivity',matches:'[text=\"我已知晓，并承诺本人使用\"]',exampleUrls:'https://m.gkd.li/57941037/a2d6a74c-829c-4436-af5b-0893b6269886',snapshotUrls:'https://i.gkd.li/i/15144791'}]}]},{id:'com.nineteenlou.nineteenlou',name:'19楼',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:['[vid=\"adv_layout\"][visibleToUser=true]','[vid=\"jump\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/3c41a2ae-a470-4dc5-974b-4157c77b6efb',snapshotUrls:'https://i.gkd.li/i/20438918'}],order:-10}]},{id:'com.thestore.main',name:'1号会员店',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'关闭弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.thestore.main.app.home.HomeActivity',matches:'@TextView[clickable=true][childCount=0] <2 RelativeLayout[childCount=2] < FrameLayout < [parent=null]',snapshotUrls:'https://i.gkd.li/i/13163686'}]}]},{id:'com.tianqi2345',name:'2345天气王',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.biz2345.shell.activity.holder.CloudInterstitialActivity',matches:'@TextView[id=\"com.biz2345.adware:id/cloud_interstitial_close_tv\"][clickable=true][childCount=0] < RelativeLayout[childCount=2] < RelativeLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/1535a559-f2cd-49c5-8c19-b2bc16709f55',snapshotUrls:'https://i.gkd.li/i/14391796'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.tianqi2345.activity.NewMainActivity',matches:'@[id=\"com.biz2345.adware:id/native_express_close_iv\"] + LinearLayout > [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/a2ce856a-78e8-4b81-bc1f-64a5db81913f',snapshotUrls:'https://i.gkd.li/i/14391799'}]}]},{id:'com.qihoo.srouter.n300',name:'360家庭防火墙',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ifenglian.superapp.ui.firewall.SAMainActivity',matches:'[vid=\"app_update_later_button\"]',snapshotUrls:'https://i.gkd.li/i/13800011'}]}]},{id:'com.qihoo.browser',name:'360浏览器',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{activityIds:'.browser.download.ui.DownloadDetailActivity',matches:'LinearLayout[childCount=3] > TextView[text!=null] + @FrameLayout[id!=null][clickable=true][childCount=1] > ImageView[childCount=0][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4e3c5950-6471-42bf-9785-dab271aa0a55',snapshotUrls:'https://i.gkd.li/i/20218587'}]}]},{id:'com.qihoo.camera',name:'360摄像机',groups:[{key:6,name:'局部广告-卡片广告',rules:[{name:'云收藏弹窗广告',actionMaximum:1,activityIds:'com.qihoo.jia.playpage.RecordPlayActivity',matches:'@ImageView[clickable=true] +4 TextView[text=\"去开通\"]',snapshotUrls:'https://i.gkd.li/i/13630755'}]},{key:7,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.qihoo.jia.ui.activity.TabMainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/c88cdec7-e6da-4bbf-821c-76459d0daff9',snapshotUrls:'https://i.gkd.li/i/17656326'}]}]},{id:'com.qihoo.smart',name:'360智慧生活',groups:[{key:1,name:'局部广告-云录像会员广告',desc:'点击关闭',rules:[{position:{left:'width * 0.9402',top:'width * 0.0590'},activityIds:'com.qihoo.main.flutter.SmartHomeFlutterActivity',matches:'@View[id=\"root\"][visibleToUser=true] > View > [text^=\"服务时间\"] +6 [desc=\"支付宝\"]',exampleUrls:'https://e.gkd.li/1106858a-bb22-4583-b238-fe270733b5fe',snapshotUrls:'https://i.gkd.li/i/18354637'}]},{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.qihoo.main.flutter.SmartHomeFlutterActivity',matches:'[vid=\"sh_app_upgrade_dialog_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/19a460f5-5fe0-41b1-8def-65e23804a8fd',snapshotUrls:'https://i.gkd.li/i/19499314'}]}]},{id:'cn.net.shizheng.study',name:'365时政',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.dingwei.cloud_classroom.MainActivity',matches:'View[childCount=2] > ImageView[id=\"\"] + Button[id=\"\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12708731'}]}]},{id:'com.m4399.gamecenter',name:'4399游戏盒',groups:[{key:1,name:'局部广告-悬浮广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,name:'首页右侧悬浮广告',fastQuery:true,activityIds:'com.m4399.gamecenter.plugin.main.controllers.ApplicationActivity',matches:'@[id=\"com.m4399.gamecenter:id/close\"] + [id=\"com.m4399.gamecenter:id/image\"]',snapshotUrls:'https://i.gkd.li/i/13297466'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'[id=\"com.m4399.gamecenter:id/image\"] + [id=\"com.m4399.gamecenter:id/close\"]',exampleUrls:'https://e.gkd.li/28dafb84-2474-4a09-9885-9810089bad00',snapshotUrls:'https://i.gkd.li/i/13297551'}]}]},{id:'com.changyou.app.qi',name:'777影视',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.changyou.app.qi.MainActivity',matches:'[vid=\"ksad_auto_close_btn\"]',exampleUrls:'https://m.gkd.li/57941037/687f8201-8b15-491e-9c51-f3af0dc00260',snapshotUrls:'https://i.gkd.li/i/14228685'},{key:1,activityIds:'com.changyou.app.qi.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://m.gkd.li/57941037/c65e146e-4f2a-42f0-b233-4e04152d851d',snapshotUrls:['https://i.gkd.li/i/14296913','https://i.gkd.li/i/14480073']}]}]},{id:'com.daysko.safp',name:'7天澳門統考',groups:[{key:1,name:'全屏广告-谷歌广告',activityIds:'com.google.android.gms.ads.AdActivity',rules:[{key:1,matches:'View > [text=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/12642909','https://i.gkd.li/i/12643316']},{key:2,matches:'[id=\"adchoiceWrap\"] + [id=\"mv_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/12643032'},{key:3,name:'右上角白色圆形背景黑色x关闭按钮',matches:'View[clickable=false][childCount=2] > TextView[clickable=true] + View[clickable=true][childCount=1] > Button[clickable=true]',snapshotUrls:['https://i.gkd.li/i/12643039','https://i.gkd.li/i/12643246']}]},{key:2,name:'全屏广告-视频广告',desc:'点击跳过视频-点击关闭按钮',activityIds:['com.google.android.gms.ads.AdActivity'],rules:[{key:1,matches:'[id=null][text=\"跳过视频\"] < View +(2) @View > Button[clickable=true]',snapshotUrls:['https://i.gkd.li/i/12668269','https://i.gkd.li/i/12642913','https://i.gkd.li/i/12642932']},{key:3,matches:['Button[id=null][clickable=true] < @View - * < View - View >(n) View[desc=\"安装\"]'],snapshotUrls:['https://i.gkd.li/i/12642952','https://i.gkd.li/i/12668298']},{key:4,actionCd:2500,matches:['[desc=\"了解详情\"] - View > [text=\"关闭\"]'],snapshotUrls:['https://i.gkd.li/i/12642983']}]},{key:3,name:'局部广告-页面底部广告',activityIds:'com.daysko.safp.MainActivity',rules:[{matches:'[!(id=\"why_this_ad_btn\")] -2 View[id=\"mys-wrapper\"] + View >2 Button[clickable=true]',snapshotUrls:['https://i.gkd.li/i/12642993','https://i.gkd.li/i/12643229']},{matches:'View[desc=\"Advertisement\"] + View >(2) Button',snapshotUrls:['https://i.gkd.li/i/12643001']}]}]},{id:'com.excean.na',name:'99手游加速器',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.excelliance.kxqp.ui.activity.GameLaunchActivity',matches:'[id=\"com.excean.na:id/iv_close_ad\"]',snapshotUrls:'https://i.gkd.li/i/13931051'}]},{key:2,name:'全屏广告-首页弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.excelliance.kxqp.ui.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13930990','https://i.gkd.li/i/14001254']},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'Image < @View +5 * > [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/14855686'}]}]},{id:'com.alibaba.wireless',name:'阿里巴巴',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,activityIds:['.launch.home.V5HomeActivity','.workbench.myali.MyAliSettingActivity'],matches:'[id=\"com.alibaba.wireless:id/update_button_cancel\"]',snapshotUrls:['https://i.gkd.li/i/12684422','https://i.gkd.li/i/12684426']},{key:1,activityIds:'.launch.home.V5HomeActivity',matches:'[vid=\"update_pop_cancel_btn\"]',snapshotUrls:'https://i.gkd.li/i/15004486'}]},{key:2,name:'全屏广告-首页弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'com.alibaba.wireless.launch.home.V5HomeActivity',matches:'@Image[text*=\"FXa-124-124\"][visibleToUser=true] <<n [id=\"com.alibaba.wireless:id/v_yacht_float_cell\"]',snapshotUrls:['https://i.gkd.li/i/13683509','https://i.gkd.li/i/13683510']}]}]},{id:'com.alibaba.aliyun',name:'阿里云',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.biz.home.mine.activity.KFeeCenterActivity',matches:'[text^=\"打开手机消息通知\"] + * >2 [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13446162'}]}]},{id:'com.alicloud.databox',name:'阿里云盘',groups:[{key:0,name:'功能类-自动签到',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['.MainActivity','.navigation.NavigationFragmentContainerActivity'],rules:[{key:0,matches:'[text=\"领取\"][clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15573070','https://i.gkd.li/i/15573233']},{preKeys:[0],key:1,action:'back',matches:'[vid=\"ivCardBackBackground\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15144565'}]},{key:1,name:'全屏广告-活动弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@TextView[clickable=true][visibleToUser=true] - Image[text!=null] < View < View < View < WebView < WebView < [vid=\"webContainer\"]',snapshotUrls:'https://i.gkd.li/i/14235204'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[text^=\"立即了解\"] -3 @View[clickable=true] <<n [vid=\"webContainer\"]',snapshotUrls:'https://i.gkd.li/i/13806865'}]},{key:4,name:'功能类-[开启相册自动备份功能]弹窗',desc:'关闭弹窗',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@TextView[childCount=0][clickable=true][visibleToUser=true] <4 View[childCount=4] < View < View < WebView < WebView < [vid=\"webContainer\"]',snapshotUrls:'https://i.gkd.li/i/14414446'}]},{key:5,name:'功能类-扫描二维码登录时自动点击登录',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.taobao.login4android.scan.QrScanActivity',matches:'[text=\"确认并登录\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14414503'}]},{key:6,name:'全屏广告-[容量使用超限]提示',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.alicloud.databox.MainActivity',matches:['[text=\"容量使用超限\"]','[vid=\"layout_close\"]'],exampleUrls:'https://m.gkd.li/57941037/a219a480-c0a3-4064-832d-533f66995fed',snapshotUrls:'https://i.gkd.li/i/15158788'}]},{key:7,name:'局部广告-卡片广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.alicloud.databox.transferpage.TransferListActivity',matches:'[vid=\"close\"]',snapshotUrls:'https://i.gkd.li/i/15433289'}]}]},{id:'com.taitedi.hdd.ayi',name:'爱其意',groups:[{key:1,name:'通知提示-首页通知弹窗',desc:'点击[我知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"我知道了\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/12550205-943e-4e8b-b26a-ebd6ce3f006a',snapshotUrls:'https://i.gkd.li/i/18261037'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/8ea7b6ad-8e5b-4b96-bbac-ec5b7196ddbb',snapshotUrls:'https://i.gkd.li/i/18285341'}]}]},{id:'com.qiyi.video',name:'爱奇艺',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@[clickable=true] >(1,2) [text=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/13160866','https://i.gkd.li/i/13379565','https://i.gkd.li/i/18135566']}],order:-10},{key:2,name:'局部广告-顶部卡片广告',fastQuery:true,rules:[{activityIds:['org.qiyi.android.video.MainActivity','org.qiyi.video.PhoneCloudRecordActivity','.qysplashscreen.hotlaunch.HotSplashScreenActivity'],anyMatches:['@[vid=\"unused_res_a\"][clickable=true] > [vid=\"close\"][visibleToUser=true]','@[vid=\"unused_res_a\"][clickable=true] - [text=\"广告\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/69dd60a4-3038-4a8c-8501-33a2d36b3283',snapshotUrls:['https://i.gkd.li/i/12495050','https://i.gkd.li/i/16301287','https://i.gkd.li/i/24312658','https://i.gkd.li/i/24314237','https://i.gkd.li/i/24364968'],excludeSnapshotUrls:'https://i.gkd.li/i/24324750'}]},{key:3,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'org.qiyi.android.video.MainActivity',matches:'[id=\"com.qiyi.video:id/cancel_btn\"][text=\"暂时不要\"]',snapshotUrls:'https://i.gkd.li/i/12838152'}]},{key:4,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['org.qiyi.android.video.MainActivity','org.qiyi.android.search.view.PhoneSearchActivity','.qysplashscreen.hotlaunch.HotSplashScreenActivity'],matches:'[text=\"暂不升级\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12838158','https://i.gkd.li/i/13684912','https://i.gkd.li/i/19049372']}]},{key:5,name:'全屏广告-播放页-插入广告',desc:'视频播放前或播放中途插入的广告',rules:[{key:1,fastQuery:true,activityIds:'org.iqiyi.video.activity.PlayerActivity',matches:'@[clickable=true] > [text^=\"关闭广告\"]',exampleUrls:'https://e.gkd.li/04622996-5a6d-4577-a1cb-adcae37f62b6',snapshotUrls:'https://i.gkd.li/i/18134230'},{key:2,fastQuery:true,activityIds:'org.iqiyi.video.activity.PlayerActivity',matches:'[vid=\"btn_ads_img_pause_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2cc7688b-f802-4ebe-9eb6-6b9bc6ed5633',snapshotUrls:'https://i.gkd.li/i/18135562'}]}]},{id:'com.qiyi.video.lite',name:'爱奇艺极速版',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@[clickable=true] >2 [text=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13797162'}],order:-10}]},{id:'com.ssports.mobile.video',name:'爱奇艺体育',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"tv_jump_start_ad\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6a6a6c4f-4a16-4a10-bb5c-2ce53ebe5e81',snapshotUrls:'https://i.gkd.li/i/17901123'}],order:-10}]},{id:'com.qiyi.video.pad',name:'爱奇艺PAD',groups:[{key:0,name:'开屏广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@[clickable=true] >2 [text=\"关闭\"]',exampleUrls:['https://e.gkd.li/e731c9e7-b93e-4d3f-ae6c-887554b27d5a','https://e.gkd.li/7a74687a-f576-4820-9ef8-3e10ddb67562'],snapshotUrls:['https://i.gkd.li/i/23381997','https://i.gkd.li/i/23382047']}],order:-10},{key:1,name:'全屏广告-暂停播放后出现的广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'org.iqiyi.video.activity.PlayerActivity',matches:'@[clickable=true] > [text^=\"关闭广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/471a67f0-5926-4caa-a070-2b4635b5052a',snapshotUrls:'https://i.gkd.li/i/23837894'}]}]},{id:'com.baidu.xin.aiqicha',name:'爱企查',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baidu.newbridge.fast.MainFastActivity',matches:'[id=\"com.baidu.xin.aiqicha:id/update_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12755738'}]},{key:10,name:'权限提示-通知权限',desc:'自动点击\"不允许\"/关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'点击不允许',activityIds:'com.baidu.newbridge.fast.MainFastActivity',matches:'[id=\"com.baidu.xin.aiqicha:id/notice_dialog_cancel_iv\"]',exampleUrls:'https://m.gkd.li/57941037/9c26bb3a-d770-429a-b211-46b97a47f5f0',snapshotUrls:'https://i.gkd.li/i/12755733'},{key:1,name:'点击关闭',activityIds:'com.baidu.newbridge.fast.MainFastActivity',matches:'@[id=\"com.baidu.xin.aiqicha:id/close\"] +2 [text=\"打开消息通知\"]',exampleUrls:'https://m.gkd.li/57941037/92a1bd1b-91c5-42a8-830b-9b721815d9a4',snapshotUrls:'https://i.gkd.li/i/12755756'}]}]},{id:'com.hanweb.android.sdzwfw.activity',name:'爱山东',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text*=\"关闭\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/13407227'}],order:-10}]},{id:'com.byyoung.setting',name:'爱玩机工具箱',groups:[{key:1,name:'功能类-忽略授权提示',activityIds:'com.byyoung.setting.Welcome.PermissionActivity',rules:[{matches:'[id=\"com.byyoung.setting:id/tv_name\"][text*=\"忽略授权\"]',snapshotUrls:'https://i.gkd.li/i/12829909'}]}]},{id:'com.aiwu.market',name:'爱吾游戏宝盒',groups:[{key:1,name:'青少年模式',desc:'点击[我知道了]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.NewHomeActivity',matches:'[vid=\"hintTextView2\"] + [vid=\"confirmView\"]',snapshotUrls:'https://i.gkd.li/i/14032203'}]}]},{id:'com.shanghaionstar',name:'安吉星',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.shanghaionstar:id/jump_view\"]',snapshotUrls:'https://i.gkd.li/i/13071523'}],order:-10}]},{id:'com.miui.securitycenter',name:'安全服务/小米手机管家',groups:[{key:10,name:'功能类-USB安装应用,自动点击[继续安装]',rules:[{fastQuery:true,activityIds:'com.miui.permcenter.install.AdbInstallActivity',matches:'[text=\"继续安装\"]',snapshotUrls:'https://i.gkd.li/i/13269875'}]},{key:11,name:'功能类-禁止获取定位',desc:'关闭\"允许联网及定位\"后，每次打开手机管家都会出现',rules:[{fastQuery:true,activityIds:['com.miui.securityscan.MainActivity','com.miui.permcenter.permissions.SystemAppPermissionDialogActivity'],matches:['[id=\"com.miui.securitycenter:id/title\"][text=\"获取位置信息\"]','[text=\"不同意\"]'],snapshotUrls:['https://i.gkd.li/i/13474517','https://i.gkd.li/i/13476592']}]},{key:12,name:'功能类-使用返回退出时直接点击[退出]',desc:'退出时忽略[体检优化分数]/忽略[存储空间预警]',rules:[{fastQuery:true,activityIds:'com.miui.securityscan.MainActivity',matches:['[text=\"体检优化\" || text=\"存储空间预警\"][visibleToUser=true]','[text=\"退出\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13474504','https://i.gkd.li/i/13476770','https://i.gkd.li/i/15137908'],excludeSnapshotUrls:'https://i.gkd.li/i/18126157'}]},{key:13,name:'功能类-电量已低于20%',desc:'点击[知道了]',rules:[{fastQuery:true,matches:'@[text=\"知道了\"] + [text=\"省电模式\"]',snapshotUrls:'https://i.gkd.li/i/14468423'}]},{key:14,name:'功能类-高敏感权限自动确定',desc:'勾选[我已知晓可能存在的风险]-10s后点击[确定]',fastQuery:true,activityIds:['com.miui.permcenter.privacymanager.SpecialPermissionInterceptActivity','com.miui.permcenter.privacymanager.DeviceManagerApplyActivity'],rules:[{key:0,matches:['[text=\"我已知晓可能存在的风险，并自愿承担可能导致的后果\"]','@[vid=\"check_box\"][checked=false]'],exampleUrls:'https://m.gkd.li/57941037/e9672ccd-8dd1-4060-bdbe-52bb355d404f',snapshotUrls:['https://i.gkd.li/i/14965657','https://i.gkd.li/i/15242826']},{preKeys:[0],key:1,matches:'[text=\"确定\"]',exampleUrls:'https://m.gkd.li/57941037/1f2a118a-db2a-448d-a95d-f10d746b72e3',snapshotUrls:['https://i.gkd.li/i/14965656','https://i.gkd.li/i/15242825']}]},{key:15,name:'功能类-应用信息页-自启动提示',desc:'点击[知道了]/[关闭]',fastQuery:true,activityIds:'com.miui.appmanager.ApplicationsDetailsActivity',rules:[{key:0,action:'back',matches:'[text^=\"开启自启动\"]',snapshotUrls:'https://i.gkd.li/i/15524706'},{key:1,matches:['[text^=\"关闭自启动后将导致\"]','[text=\"关闭\"]'],snapshotUrls:'https://i.gkd.li/i/15531343'}]},{key:16,name:'功能类-自动允许分享文件',desc:'允许应用通过分享获取手机文件',rules:[{fastQuery:true,activityIds:'com.miui.wakepath.ui.ConfirmStartActivity',matches:['[text=\"分享文件\"]','[text=\"允许\"]'],exampleUrls:'https://e.gkd.li/02c752e7-3dd9-47dc-819b-e8246de29b6a',snapshotUrls:'https://i.gkd.li/i/17174152'}]},{key:17,name:'功能类-自动关闭SIM卡安全保护验证提示',desc:'点击[确定]',rules:[{fastQuery:true,activityIds:['com.miui.simlock.activity.SuccessDialogActivity','com.miui.simlock.activity.SuccessDialogNormalActivity'],matches:['[text=\"SIM卡安全保护验证成功\"]','[text=\"确定\"]'],exampleUrls:'https://e.gkd.li/2274c673-a2a9-43ad-a5ab-74598787ec0f',snapshotUrls:['https://i.gkd.li/i/17276599','https://i.gkd.li/i/17276586']}]},{key:18,name:'功能类-禁止后台运行弹窗',desc:'点击确定',rules:[{fastQuery:true,activityIds:'com.miui.powercenter.legacypowerrank.PowerDetailActivity',matches:['[text=\"应用在后台被终止运行，可能会影响应用正常使用。\"]','[text=\"确定\"]'],snapshotUrls:'https://i.gkd.li/i/23096094'}]},{key:19,name:'功能类-风险提示-仍然支付',rules:[{fastQuery:true,activityIds:'com.nantian.iBank.ui.activity.container.ProgramSingleWindowActivity',matches:'[text=\"仍然支付\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24717617'}]}]},{id:'com.antutu.ABenchMark',name:'安兔兔评测',groups:[{key:1,name:'局部广告-卡片广告',rules:[{fastQuery:true,activityIds:'com.android.module.app.ui.test.activity.ActivityTestResult',matches:'[text=\"广告\"] +2 View > @TextView[childCount=0][index=1][clickable=true][visibleToUser=true] <<n [id=\"com.antutu.ABenchMark:id/ksad_container\"]',snapshotUrls:'https://i.gkd.li/i/13234012'}]}]},{id:'com.julanling.app',name:'安心记加班',groups:[{key:5,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.julanling.dgq.main.view.MainFragmentActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13523567'}]}]},{id:'com.at.a552360580763717',name:'安心加速器',groups:[{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{activityIds:'com.ft.movie.project_speed.MainActivity',matches:'View[childCount=29 || childCount=30] > View[childCount=2] > ImageView[clickable=true][visibleToUser=true][index=0]',exampleUrls:'https://e.gkd.li/089c780e-e37a-4c25-a375-ba7f67b5ae9b',snapshotUrls:['https://i.gkd.li/i/16784443','https://i.gkd.li/i/16797995']}]}]},{id:'com.giraffe',name:'安易加速器',groups:[{key:1,name:'更新提示',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.speed.shadowsocks.ui.main.MainActivity',matches:'[id=\"com.giraffe:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/14000409'}]}]},{id:'com.mem.MacaoLife',name:'澳覓',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.mem.life.ui.launch.LaunchActivity',matches:'[id=\"com.mem.MacaoLife:id/cancel\"]',snapshotUrls:'https://i.gkd.li/i/13350665'}]},{key:2,name:'局部广告-浮窗广告',rules:[{fastQuery:true,activityIds:'com.mem.life.ui.home.HomeActivity',matches:'[id=\"com.mem.MacaoLife:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13350685'}]}]},{id:'tw.com.gamer.android.activecenter',name:'巴哈姆特',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@ImageButton[desc=\"Interstitial close button\"][visibleToUser=true] < FrameLayout <2 RelativeLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/14292691'}],order:-10}]},{id:'com.generalcomp.batian',name:'霸天安云',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.zasko.modulemain.mvpdisplay.activity.X35MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/5b7e260d-6896-4e9d-bbbf-062f5ec02b86',snapshotUrls:'https://i.gkd.li/i/17742964'},{key:1,fastQuery:true,activityIds:'com.zasko.modulemain.mvpdisplay.activity.X35CommonDisplayActivity',matches:'@ImageView[visibleToUser=true][id=null][width<100 && height<100] <2 FrameLayout[childCount=3] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/9b44f7b6-fe7e-4c9d-ac5f-6a41a7b507b3',snapshotUrls:'https://i.gkd.li/i/17735543'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.zasko.modulemain.mvpdisplay.activity.X35CommonDisplayActivity',matches:'ImageView[childCount=0] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] <2 ViewGroup[childCount=2] <2 ViewGroup[childCount=2] <2 ViewGroup[childCount=2] - ViewGroup[childCount=2] >3 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/8f24af69-0022-47c9-88a6-d5b949b377f8',snapshotUrls:'https://i.gkd.li/i/17735536'},{key:1,fastQuery:true,activityIds:'com.zasko.modulemain.mvpdisplay.activity.X35MainActivity',matches:'@Image[childCount=0][visibleToUser=true] < View[childCount=1] -3 View[childCount=2] >2 [visibleToUser=true][text=\"广告\"] <<n [vid=\"native_ad_container\"]',exampleUrls:'https://e.gkd.li/42c397f9-4fc5-4a87-950d-cd6a86783c24',snapshotUrls:'https://i.gkd.li/i/17735537'}]}]},{id:'com.uzero.baimiao',name:'白描',groups:[{key:1,name:'功能类-自动点击截取全屏',rules:[{fastQuery:true,activityIds:'.ui.screen.ScreenCaptureActivity',matches:'[text=\"截取全屏\"]',snapshotUrls:'https://i.gkd.li/i/23054772'}]}]},{id:'com.jiongji.andriod.card',name:'百词斩',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,excludeActivityIds:'com.baicizhan.client.business.webview.ui.BczWebActivity',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8612bbae-7a50-4730-8071-1c47e35c27ca',snapshotUrls:'https://i.gkd.li/i/21705324',excludeSnapshotUrls:'https://i.gkd.li/i/21705338'}],order:-10},{key:1,name:'全屏广告-活动弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baicizhan.main.activity.MainTabActivity',matches:'@ImageView[clickable=true][visibleToUser=true] -2 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13415075'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baicizhan.main.activity.MainTabActivity',matches:'[text=\"抢先体验\"] - [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13488652'}]},{key:4,name:'通知提示-关闭顶栏提醒',rules:[{activityIds:'com.baicizhan.main.activity.MainTabActivity',matches:'[desc=\"word_plan_tab\"] > FrameLayout[index=2] >2 TextView[text!=null] + ImageView[clickable=true][childCount=0][index=parent.childCount.minus(1)]',snapshotUrls:['https://i.gkd.li/i/24887224','https://i.gkd.li/i/24983406']}]}]},{id:'com.baidu.searchbox',name:'百度',groups:[{key:1,name:'全屏广告-红包弹窗',desc:'点击关闭',fastQuery:true,rules:[{activityIds:'com.baidu.searchbox.MainActivity',matches:'@View[vid=\"obfuscated\"][clickable=true][visibleToUser=false] +3 [text=\"看视频，领现金\"]',snapshotUrls:'https://i.gkd.li/i/13806848'},{activityIds:'com.baidu.searchbox.MainActivity',matches:'@ImageView[vid=\"obfuscated\"][text=null][childCount=0][clickable=true][visibleToUser=true][index=1] <2 LinearLayout[childCount=2] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13988536'},{activityIds:'com.baidu.searchbox.MainActivity',matches:'@ImageView[vid=\"obfuscated\"][text=null][childCount=0][clickable=true][visibleToUser=true] +4 [text^=\"继续看视频\"]',snapshotUrls:'https://i.gkd.li/i/14034223'}]},{key:2,name:'更新提示',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.update.UpdateDialogActivity',matches:'@ImageView[desc=\"关闭\"] <2 RelativeLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/f2712b2e-7327-4068-bcff-92646b3400bd',snapshotUrls:'https://i.gkd.li/i/14730100'}]}]},{id:'com.baidu.baike',name:'百度百科',groups:[{key:10,name:'权限提示-通知权限',desc:'自动点击\"不允许\"',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.component.push.NotificationEnableDialog',matches:'[text^=\"打开推送通知\"] +2 [text=\"不允许\"]',snapshotUrls:'https://i.gkd.li/i/12755717'}]}]},{id:'com.baidu.BaiduMap',name:'百度地图',groups:[{key:-1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f03b3648-757a-48e3-bd3b-098f8293edbf',snapshotUrls:'https://i.gkd.li/i/16556555'},{key:1,matches:'[vid=\"ms_skipView\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/cd89ffb7-6cd3-4978-b3d6-ef5ece2769d0',snapshotUrls:'https://i.gkd.li/i/23742641'}],order:-10},{key:5,name:'权限提示-定位权限',fastQuery:true,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,activityIds:['com.baidu.mapframework.widget.BMBaseDialog','com.baidu.baidumaps.MapsActivity'],rules:[{key:0,matches:'[text^=\"开启位置服务\"] + RelativeLayout > [id=\"com.baidu.BaiduMap:id/tv_notip_btn\"]',snapshotUrls:'https://i.gkd.li/i/12660884'},{key:1,matches:'[text=\"需开启系统定位服务开关\"] +2 [id=\"com.baidu.BaiduMap:id/ll_dialog_btn\"] > [id=\"com.baidu.BaiduMap:id/tv_dialog_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12660883'},{key:2,matches:'ImageView[id=\"com.baidu.BaiduMap:id/location_dialog_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/12909299'}]},{key:7,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baidu.baidumaps.MapsActivity',matches:'ImageView[id=\"com.baidu.BaiduMap:id/cancel_update\"]',snapshotUrls:'https://i.gkd.li/i/12909385'}]},{key:8,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baidu.baidumaps.MapsActivity',matches:'[vid=\"push_close\"]',snapshotUrls:'https://i.gkd.li/i/15284736'}]},{key:9,name:'功能类-通勤卡添加至桌面',desc:'点击取消',fastQuery:true,actionMaximum:1,rules:[{activityIds:'com.baidu.baidumaps.MapsActivity',matches:['[text=\"添加至桌面\"]','[text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/13439258','https://i.gkd.li/i/16920986']}]},{key:10,name:'全屏广告',rules:[{fastQuery:true,activityIds:'com.baidu.baidumaps.MapsActivity',matches:'[vid=\"img_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22616256'}]},{key:11,name:'局部广告',rules:[{key:0,fastQuery:true,activityIds:'com.baidu.baidumaps.MapsActivity',matches:'[vid=\"banner_ad_close_icon\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22656085'},{key:1,fastQuery:true,activityIds:'com.baidu.baidumaps.MapsActivity',matches:'ImageView[childCount=0] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] + ViewGroup > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/22616267'},{key:2,fastQuery:true,activityIds:'com.baidu.baidumaps.MapsActivity',matches:'ImageView[id=\"com.baidu.BaiduMap:id/yellow_banner_close\"]',snapshotUrls:'https://i.gkd.li/i/24633179'}]}]},{id:'com.baidu.input',name:'百度输入法',groups:[{key:1,name:'全屏广告-创作祝福弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,resetMatch:'app',actionMaximum:1,rules:[{activityIds:'.ImeAppMainActivity',matches:'[id=\"android:id/content\"] >2 [vid=\"button_close\"]',snapshotUrls:'https://i.gkd.li/i/14179064'}]},{key:2,name:'局部广告-底部会员悬浮卡片',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,position:{left:'width * 0.9269',top:'width * 0.113'},activityIds:'com.baidu.input.layout.store.subshop.activity.SkinShopActivity',matches:'@[desc=\"开会员，全部皮肤免费用\"] <<n [vid=\"shop_content_container\"]',snapshotUrls:'https://i.gkd.li/i/15320905'},{key:1,activityIds:'com.baidu.input.ImeAppMainActivity',matches:'[vid=\"close_btn\"]',snapshotUrls:'https://i.gkd.li/i/15320990'}]}]},{id:'com.baidu.tieba',name:'百度贴吧',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'TextView[text^=\"跳过\"][text.length<=10]',snapshotUrls:['https://i.gkd.li/i/12775906','https://i.gkd.li/i/12566191','https://i.gkd.li/i/12870916','https://i.gkd.li/i/13233500']},{key:1,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/13322227'},{key:2,matches:'TextView[text=\"广告\"] - @LinearLayout[clickable=true] > [text=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13168386'}],order:-10},{key:1,name:'权限提示-通知权限',actionMaximum:1,rules:[{key:0,activityIds:'.pb.pb.main.PbActivity',matches:'@ImageView[clickable=true] -2 LinearLayout > [text^=\"打开通知\"]',snapshotUrls:'https://i.gkd.li/i/13536170'},{key:1,activityIds:'.immessagecenter.mention.reply.ReplyMeActivity',matches:'TextView[text=\"开启消息推送\"] +2 TextView[text=\"不开启\"]',snapshotUrls:'https://i.gkd.li/i/13675694'},{key:2,activityIds:'com.baidu.tbadk.browser.TBWebContainerActivity',matches:'[text=\"开启通知\"] <n * > [text=\"暂不开启\"]',snapshotUrls:['https://i.gkd.li/i/13804455','https://i.gkd.li/i/20918198']}]},{key:2,name:'分段广告-信息流广告',desc:'关闭广告、直播推广',fastQuery:true,rules:[{key:0,activityIds:['.tblauncher.MainTabActivity','.forum.ForumActivity'],matches:'@ImageView[clickable=true][visibleToUser=true] <(1,2) LinearLayout <4 RelativeLayout +2 RelativeLayout >2 [text=\"直播中\"]',exampleUrls:'https://e.gkd.li/94be671a-4709-4aa5-b114-d4cfabe0ed9c',snapshotUrls:['https://i.gkd.li/i/16595137','https://i.gkd.li/i/16596473']},{key:1,activityIds:['.forum.ForumActivity','.pb.pb.main.PbActivity','.tblauncher.MainTabActivity'],matches:'@FrameLayout[clickable=true][visibleToUser=true] < LinearLayout < RelativeLayout <3 LinearLayout < RelativeLayout + LinearLayout >2 [text$=\"广告\"]',exampleUrls:'https://e.gkd.li/3b2f0906-f620-4fda-a59f-334a9548836e',snapshotUrls:['https://i.gkd.li/i/16595127','https://i.gkd.li/i/16595515','https://i.gkd.li/i/16596130']},{key:2,activityIds:'.pb.pb.main.PbActivity',matches:'@FrameLayout[clickable=true][visibleToUser=true] < LinearLayout < FrameLayout -(1,2) [text$=\"广告\"]',exampleUrls:'https://e.gkd.li/683d8e48-909e-4c06-9686-9a9778456e78',snapshotUrls:['https://i.gkd.li/i/16595120','https://i.gkd.li/i/16595133']},{key:3,activityIds:'.pb.pb.main.PbActivity',matches:'@ImageView[clickable=true][visibleToUser=true] -3 [text=\"直播中\"]',exampleUrls:'https://e.gkd.li/ad2f214b-0e2a-400e-9511-d35d7f14c004',snapshotUrls:'https://i.gkd.li/i/16596210'},{key:4,activityIds:['.tblauncher.MainTabActivity','.pb.pb.main.PbActivity'],matches:'ImageView[childCount=0] < @FrameLayout[clickable=true][childCount=1][visibleToUser=true] <(3,4) RelativeLayout + FrameLayout >9 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/0ac82700-02f3-40c6-bf45-b21e365ac84c',snapshotUrls:['https://i.gkd.li/i/21524232','https://i.gkd.li/i/21529443','https://i.gkd.li/i/21556758','https://i.gkd.li/i/24520138']},{key:5,activityIds:'.pb.pb.main.PbActivity',matches:'ImageView[childCount=0] < @FrameLayout[clickable=true][childCount=1][visibleToUser=true] <2 RelativeLayout + RelativeLayout >3 [text=\"广告\"] ',exampleUrls:'https://e.gkd.li/0d5fea40-44ac-4b47-8b3c-e8388640e37d',snapshotUrls:'https://i.gkd.li/i/24541094'},{preKeys:[0,1,2,3,4,5],activityIds:['.tblauncher.MainTabActivity','.pb.pb.main.PbActivity','.forum.ForumActivity'],matches:'@View[clickable=true][visibleToUser=true] - [text^=\"选择不喜欢\"]',exampleUrls:'https://e.gkd.li/67a159e7-59ea-45f6-909c-7a681c4d3838',snapshotUrls:['https://i.gkd.li/i/16595134','https://i.gkd.li/i/16595511','https://i.gkd.li/i/16595113']}]},{key:3,name:'局部广告-首页、推荐列表顶部卡片广告',matchTime:10000,actionMaximum:1,activityIds:['.tblauncher.MainTabActivity','.frs.FrsActivity'],rules:[{key:1,matches:'RelativeLayout[childCount=2] > @RelativeLayout[childCount=1][clickable=true] > ImageView',snapshotUrls:'https://i.gkd.li/i/13060892'}]},{key:7,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{activityIds:'.UpdateDialog',matches:'[text=\"稍后再说\"]',snapshotUrls:'https://i.gkd.li/i/16908501'}]},{key:9,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,rules:[{key:1,name:'点击正下方x关闭',activityIds:['.frs.FrsActivity','.tblauncher.MainTabActivity','.LogoActivity'],matches:'@TextView[id=\"com.baidu.tieba:id/obfuscated\"][clickable=true][childCount=0][visibleToUser=true] - FrameLayout[childCount=2][getChild(1).text=\"广告\"] < RelativeLayout[childCount=2] < [parent=null]',snapshotUrls:['https://i.gkd.li/i/13168383','https://i.gkd.li/i/13322120','https://i.gkd.li/i/13328246']},{key:2,activityIds:['.tblauncher.MainTabActivity','com.baidu.tbadk.browser.TBWebContainerActivity'],matches:'WebView[text!=null] > View[childCount=1] > View[childCount=3] > @[visibleToUser=true][index=2]',exampleUrls:'https://e.gkd.li/ac3d88b7-31a2-441f-a4c8-8a73eaec24b9',snapshotUrls:['https://i.gkd.li/i/13060891','https://i.gkd.li/i/16703244']}]},{key:10,name:'局部广告-悬浮小广告',matchDelay:500,matchTime:10000,actionMaximum:1,rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,activityIds:['.tblauncher.MainTabActivity','.pb.pb.main.PbActivity'],matches:'@ImageView[clickable=true][visibleToUser=true][vid=\"obfuscated\"] - [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/16622395','https://i.gkd.li/i/16632851'],excludeSnapshotUrls:'https://i.gkd.li/i/13327933'},{key:1,name:'首页右侧悬浮广告-2',activityIds:'.tblauncher.MainTabActivity',matches:'RelativeLayout >2 RelativeLayout[childCount=1] > ImageView[childCount=0][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14291964'},{key:2,name:'评论区左侧悬浮广告',activityIds:'.pb.pb.main.PbActivity',matches:'FrameLayout[getChild(1).getChild(1).text!=null] + @FrameLayout[clickable=true] > LinearLayout[childCount=2] > ImageView + [text=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13296280',excludeSnapshotUrls:'https://i.gkd.li/i/20361318'},{key:3,activityIds:['.pb.pb.main.PbActivity','.tblauncher.MainTabActivity'],matches:'RelativeLayout[childCount=2] > RelativeLayout[childCount=1] > ImageView[childCount=0][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13625336','https://i.gkd.li/i/13627881']}]},{key:11,name:'局部广告-[帖子内/吧内]底部悬浮窗',fastQuery:true,actionMaximum:1,rules:[{key:0,activityIds:'.pb.pb.main.PbActivity',matches:'@ImageView[clickable=true][visibleToUser=true] <2 LinearLayout - * > [text$=\"热议中\" || text^=\"猜你喜欢\" || text*=\"进吧逛逛\"]',exampleUrls:'https://e.gkd.li/047ab857-f690-473b-9b18-43369319c5ce',snapshotUrls:['https://i.gkd.li/i/16595234','https://i.gkd.li/i/16619736','https://i.gkd.li/i/16647874']},{key:1,activityIds:'.forum.ForumActivity',matches:'@ImageView[clickable=true][visibleToUser=true] <2 LinearLayout - * > [text^=\"关注本吧\"]',exampleUrls:'https://e.gkd.li/756c02b5-a72c-4ca4-a05c-a33202e8ecd6',snapshotUrls:'https://i.gkd.li/i/17992981'}]},{key:12,name:'功能类-贴吧内签到并关闭弹窗',fastQuery:true,actionMaximum:1,rules:[{key:0,name:'贴吧页签到',activityIds:'.forum.ForumActivity',anyMatches:['@TextView[text=\"签到\"][visibleToUser=true] <3 View < View <2 View < View < WebView < WebView < FrameLayout < ViewGroup <2 FrameLayout < FrameLayout < [id=\"android:id/content\"]','@TextView[text=\"签到\"][visibleToUser=true] <5 View < View <2 View < WebView < WebView < FrameLayout < ViewGroup <2 FrameLayout < FrameLayout < [id=\"android:id/content\"]'],snapshotUrls:['https://i.gkd.li/i/15087289','https://i.gkd.li/i/17902156']},{key:1,name:'关闭签到成功弹窗',action:'back',activityIds:'com.baidu.tbadk.browser.TBWebContainerActivity',matches:'@WebView[text=\"签到弹窗\"][visibleToUser=true] < WebView < FrameLayout < LinearLayout < RelativeLayout < [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/15087327','https://i.gkd.li/i/15881225']}]},{key:13,name:'局部广告-帖子底部话题卡片',desc:'点击关闭',actionMaximum:1,rules:[{fastQuery:true,activityIds:'.pb.pb.main.PbActivity',matches:'@ImageView[clickable=true] -2 [text=\"进入话题查看更多\"]',exampleUrls:'https://m.gkd.li/57941037/2fa193f8-5e0e-4f85-b828-eb3e22cb60a3',snapshotUrls:'https://i.gkd.li/i/14586847'}]},{key:14,name:'全屏广告-会员弹窗',desc:'点击关闭',rules:[{forcedTime:10000,activityIds:['.tblauncher.MainTabActivity','com.baidu.tbadk.browser.TBWebContainerActivity'],matches:'WebView[text=\"会员弹窗\" || text=\"一键签到\"] >(3,4) TextView + Image[text!=null][childCount=0][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/dd2f2a00-e9d3-47fa-986d-09ae6180d932',snapshotUrls:['https://i.gkd.li/i/14630806','https://i.gkd.li/i/15119439','https://i.gkd.li/i/15119451','https://i.gkd.li/i/16426630']}]},{key:15,name:'局部广告-信息流广告',desc:'点击关闭',fastQuery:true,forcedTime:10000,rules:[{key:0,activityIds:'.pb.pb.main.PbActivity',matches:'@[clickable=true][visibleToUser=true] <(1,2) RelativeLayout <(1,4) RelativeLayout[childCount>1] >(3,4) [text=\"广告\"]',exampleUrls:'https://e.gkd.li/337a7e8b-500f-4a0b-ae08-018c5222d4da',snapshotUrls:['https://i.gkd.li/i/16595124','https://i.gkd.li/i/16596297','https://i.gkd.li/i/16632851']},{key:1,activityIds:['.tblauncher.MainTabActivity','.pb.pb.main.PbActivity','.forum.ForumActivity'],matches:'@FrameLayout[clickable=true][visibleToUser=true] <4 RelativeLayout + FrameLayout >7 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/5b53c3be-4972-44aa-a62e-3ca780ae7098',snapshotUrls:['https://i.gkd.li/i/16595301','https://i.gkd.li/i/16596195','https://i.gkd.li/i/16596775']},{key:2,activityIds:'.tblauncher.MainTabActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] < LinearLayout[childCount=1] <4 RelativeLayout +3 LinearLayout >4 [text=\"小游戏\"]',snapshotUrls:['https://i.gkd.li/i/17943902','https://i.gkd.li/i/18217417']}]},{key:16,name:'局部广告-感兴趣的吧推广',desc:'关闭首页、吧内其他贴吧的推广',rules:[{key:1,fastQuery:true,activityIds:['.tblauncher.MainTabActivity','.forum.ForumActivity'],matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] - [text=\"你可能感兴趣的吧\" || text^=\"本吧的人都在逛\"]',exampleUrls:'https://e.gkd.li/bfc13aa1-579f-46f4-beff-64b3f8ec693a',snapshotUrls:['https://i.gkd.li/i/16914357','https://i.gkd.li/i/17944680','https://i.gkd.li/i/18218517']}]}]},{id:'com.baidu.netdisk',name:'百度网盘',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:3,activityIds:['com.baidu.netdisk.business.guide.dialog.lifeproduct.','com.baidu.netdisk.ui.MainActivity','com.baidu.netdisk.ui.Navigate'],matches:'[vid=\"iv_close\"]',snapshotUrls:['https://i.gkd.li/i/12642505','https://i.gkd.li/i/12783106','https://i.gkd.li/i/12923937','https://i.gkd.li/i/13806852','https://i.gkd.li/i/14730106','https://i.gkd.li/i/14822799']}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,activityIds:'.video.VideoPlayerActivity',matches:'[vid=\"rl_ad_root\"] > [vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5e0625e3-ef3b-4a71-a222-54728c2274b0',snapshotUrls:'https://i.gkd.li/i/20414230'}]},{key:6,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.ui.MainActivity','.ui.cloudp2p.RichMediaActivity'],matches:'[text=\"立即更新\"] -2 [text=\"下次再说\"]',snapshotUrls:['https://i.gkd.li/i/16118181','https://i.gkd.li/i/24834209']}]},{key:8,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.MainActivity',matches:'ImageView[id=\"com.baidu.netdisk:id/dialog_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12923936'}]},{key:9,name:'评价提示',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'.ui.MainActivity',rules:[{matches:'[vid=\"view_score_style\"] > [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/14317054'}]},{key:12,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{activityIds:'com.baidu.netdisk.ui.MainActivity',matches:'[vid=\"float_btn_close\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/470eec82-ed99-4f50-beba-2587e525cfdf',snapshotUrls:'https://i.gkd.li/i/14278618'}]},{key:13,name:'分段广告-暂不开启自动备份',fastQuery:true,activityIds:'.ui.NewQuickSettingsActivity',rules:[{key:0,matches:['[text=\"开启安全备份\"][visibleToUser=true]','[text=\"暂不开启\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/e227fa57-f728-4ba4-8fff-493751bc5035',snapshotUrls:'https://i.gkd.li/i/22401064'},{preKeys:[0],matches:'[text=\"暂不开启\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/aa9782d4-304f-401b-89f6-4fae703b8280',snapshotUrls:'https://i.gkd.li/i/22401070'}]}]},{id:'com.baidu.netdisk.samsung',name:'百度网盘-三星版本',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',activityIds:'com.baidu.netdisk.ui.MainActivity',rules:[{key:0,fastQuery:true,matches:'[id=\"com.baidu.netdisk.samsung:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12738331'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',activityIds:'com.baidu.netdisk.ui.MainActivity',rules:[{key:0,fastQuery:true,matches:'[id=\"com.baidu.netdisk.samsung:id/buy_product_root\"] > [id=\"com.baidu.netdisk.samsung:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12738388'},{key:1,activityIds:'com.baidu.netdisk.ui.MainActivity',matches:'View[childCount=2] > @TextView[text=\"\"][clickable=true] + TextView[text=\"专属福利\"][clickable=false]',snapshotUrls:'https://i.gkd.li/i/12738404'},{key:2,activityIds:'com.baidu.netdisk.ui.MainActivity',matches:'@TextView[text=\"\"][clickable=true] - TextView[text=\"去使用\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12738449'},{key:3,fastQuery:true,activityIds:'com.baidu.netdisk.ui.transfer.TransferListTabActivity',matches:'[vid=\"close_probationary_guide_layout\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ab41b402-c4d0-439a-96f3-23029434aec4',snapshotUrls:'https://i.gkd.li/i/16423129'},{key:4,fastQuery:true,activityIds:'com.baidu.netdisk.ui.transfer.TransferListTabActivity',matches:'[vid=\"youa_guide_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ab41b402-c4d0-439a-96f3-23029434aec4',snapshotUrls:'https://i.gkd.li/i/16423129'}]},{key:5,name:'评价提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baidu.netdisk.ui.MainActivity',matches:'[vid=\"view_score_style\"] > [text=\"以后再说\"]',exampleUrls:'https://m.gkd.li/57941037/167a8392-23c8-4e84-a55f-4f91e7e560d8',snapshotUrls:'https://i.gkd.li/i/14893286'}]},{key:6,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[vid=\"dialog_cancel\"]',exampleUrls:'https://m.gkd.li/57941037/06ae328b-f852-407b-83ab-ec295d41baa4',snapshotUrls:'https://i.gkd.li/i/14893280'}]},{key:7,name:'功能类-[上新【专辑】功能]弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.baidu.netdisk.filealbum.ui.activity.FileAlbumListActivity',matches:'[vid=\"add_widget_dialog_close\"]',exampleUrls:'https://m.gkd.li/57941037/256b5cad-a5ad-48e3-ba72-9c84447f2cac',snapshotUrls:'https://i.gkd.li/i/14893285'}]}]},{id:'com.byfen.market',name:'百分网游戏盒子',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.byfen.market.ui.activity.MainActivity',matches:'[vid=\"idIvClose\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/35d2a562-fe30-4bff-b739-96b37dccd05c',snapshotUrls:'https://i.gkd.li/i/13801613'}]},{key:2,name:'更新提示',desc:'点击[忽略更新]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.MainActivity',matches:'[text=\"忽略更新\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/e92b10b8-b0f8-4dc3-95bf-172829996600',snapshotUrls:'https://i.gkd.li/i/14322280'}]}]},{id:'com.banjixiaoguanjia.app',name:'班级小管家',groups:[{key:1,name:'分段广告-卡片广告',activityIds:'com.banjixiaoguanjia.app.MainActivity',rules:[{key:0,matches:'[id=\"com.byted.pangle:id/tt_bu_close\"]',snapshotUrls:'https://i.gkd.li/i/12904612'},{preKeys:0,key:1,matches:'@LinearLayout > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12906196'}]}]},{id:'com.boohee.one',name:'薄荷健康',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.boohee.library.update.UpdateDialogActivity',matches:'@[id=\"com.boohee.one:id/tv_ignore\"] + [id=\"com.boohee.one:id/tv_update\"]',snapshotUrls:'https://i.gkd.li/i/12716918'}]},{key:2,name:'全屏广告-发现页弹窗广告',activityIds:'com.sensorsdata.sf.ui.view.DialogActivity',rules:'LinearLayout[childCount=2] > @ImageView[id=null][clickable=true] + ImageView',snapshotUrls:'https://i.gkd.li/i/12716970'},{key:10,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.account.ui.activity.MsgCategoryActivityV2',matches:'[id=\"com.boohee.one:id/img_close_push\"]',snapshotUrls:'https://i.gkd.li/i/12716950'}]}]},{id:'com.bluemobile.flutterbabylife',name:'宝宝生活记录',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,rules:[{key:0,name:'字节SDK',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13632639'}]}]},{id:'com.babytree.apps.pregnancy',name:'宝宝树孕育',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12614757'},{key:1,matches:'@View[childCount=0][clickable=true][visibleToUser=true] < RelativeLayout < FrameLayout + RelativeLayout >2 [text^=\"摇一摇\"]',snapshotUrls:'https://i.gkd.li/i/15566228'}],order:-10},{key:2,name:'全屏广告-弹窗广告',activityIds:'com.babytree.apps.pregnancy.activity.SailfishActivity',rules:[{matches:'ImageView[id=\"com.babytree.apps.pregnancy:id/bb_referenced_active_dialog_img_2\"] + ImageView[id!=null][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12614834'}]},{key:3,name:'局部广告-首页右侧悬浮广告',activityIds:'com.babytree.apps.pregnancy.activity.SailfishActivity',rules:[{matches:'ImageView[id!=null][clickable=false] + @ImageView[id!=null][clickable=true] + FrameLayout[id=null] > TextView[text=null][id!=null]',snapshotUrls:'https://i.gkd.li/i/12614838'}]}]},{id:'cn.com.bmac.nfc',name:'北京一卡通',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击[此广告不再提示]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.MainActivity',matches:'[vid=\"ad_content\"] < * - [clickable=true][vid=\"not_prompt_again\"]',exampleUrls:'https://e.gkd.li/34995c89-e659-4a38-b4ed-9cb1514323b2',snapshotUrls:'https://i.gkd.li/i/19718306'}]},{key:2,name:'功能类-跳过协议',desc:'点击[同意]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.MainActivity',matches:'@[vid=\"Agree_and_continue\"] <<2 * - [vid=\"layout_title\"] >2 [vid=\"tv_privacy_content\"]',exampleUrls:'https://e.gkd.li/9c0ec080-3156-4276-b556-47cf20e08150',snapshotUrls:'https://i.gkd.li/i/21133268'}]}]},{id:'com.baseus.intelligent',name:'倍思',groups:[{key:1,name:'权限提示-定位请求',desc:'点击取消-点击取消',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'com.baseus.intelligent.view.home.MainActivity',rules:[{key:0,matches:'@[text=\"取消\"] + [text=\"前往设置\"]',snapshotUrls:'https://i.gkd.li/i/13827653'},{preKeys:0,key:1,matches:'@[text=\"取消\"] + [text=\"授权\"]',snapshotUrls:'https://i.gkd.li/i/13827986'}]}]},{id:'com.byd.aeri.caranywhere',name:'比亚迪王朝',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:['[id=\"com.byd.aeri.caranywhere:id/tv_determine\"][text=\"立即安装\"]','[id=\"com.byd.aeri.caranywhere:id/tv_cancel\"]'],snapshotUrls:'https://i.gkd.li/i/13348383'}]}]},{id:'com.svm.hbyy',name:'比翼多开',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.svm.core.pro.view.activity.MainActivityEx',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/13185377'}]}]},{id:'com.binance.dev',name:'币安',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.eaas.launcher.activities.main.MainActivity',matches:'@[clickable=true] + [vid=\"tv_title\"][text=\"发现新版本\"]',exampleUrls:'https://e.gkd.li/3ebed425-8801-4d70-9bcf-5c9fa61890ca',snapshotUrls:'https://i.gkd.li/i/24257907'}]}]},{id:'com.bilibili.studio',name:'必剪',groups:[{key:0,name:'权限提示-通知权限',desc:'点击[不开启]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.bcut.homepage.widget.MainActivity',rules:[{key:0,matches:'TextView[text=\"开启设置\"] - TextView[text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/12867401'},{key:1,matches:'ImageView[id=\"com.bilibili.studio:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12908880'},{key:2,matches:'ImageView[id=\"com.bilibili.studio:id/iv_push_tips_close\"]',snapshotUrls:'https://i.gkd.li/i/12908886'}]},{key:3,name:'更新提示',desc:'勾选\"忽略\"-点击\"以后再说\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'勾选\"忽略\"',matches:'[text=\"忽略此版本的更新\"][checked=false]',snapshotUrls:'https://i.gkd.li/i/13496049'},{preKeys:[0],name:'点击\"以后再说\"',matches:'[id=\"com.bilibili.studio:id/update_btn_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13496049'}]}]},{id:'tv.danmaku.bili',name:'哔哩哔哩',groups:[{key:-1,name:'开屏广告',matchRoot:true,fastQuery:true,actionMaximum:2,resetMatch:'app',priorityTime:10000,rules:[{actionCd:500,matches:'[vid=\"count_down\" || vid=\"skip\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/16187624','https://i.gkd.li/i/16484445']}],order:-10},{key:0,name:'局部广告-评论区顶部公告横幅',rules:[{fastQuery:true,excludeActivityIds:['com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3','tv.danmaku.bili.MainActivityV2'],matches:'LinearLayout[id=\"tv.danmaku.bili:id/ad_tint_frame\"] > ImageView[id=\"tv.danmaku.bili:id/close\"][desc=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/12785461','https://i.gkd.li/i/12775156']}]},{key:2,name:'分段广告-动态推荐卡片广告',desc:'点击卡片右上角[广告]按钮-点击不感兴趣',fastQuery:true,activityIds:'tv.danmaku.bili.MainActivityV2',rules:[{key:1,matches:'[id=\"tv.danmaku.bili:id/ad_goods_mark_big\"]',snapshotUrls:'https://i.gkd.li/i/12700222'},{preKeys:[1],matches:'[text=\"不感兴趣\"][id^=\"tv.danmaku.bili:id/reason\"]',snapshotUrls:'https://i.gkd.li/i/12700243'}]},{key:6,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:['com.bilibili.app.preferences.BiliPreferencesActivity','tv.danmaku.bili.ui.splash.ad.page.HotSplashActivity','.MainActivityV2'],rules:[{key:1,matches:'[text=\"忽略此版本的更新\"][checked=false]',snapshotUrls:['https://i.gkd.li/i/12649689','https://i.gkd.li/i/13212209','https://i.gkd.li/i/13228977']},{preKeys:[1],matches:'[id=\"tv.danmaku.bili:id/update_btn_cancel\"]',snapshotUrls:['https://i.gkd.li/i/12649689','https://i.gkd.li/i/13212209','https://i.gkd.li/i/13228977']}]},{key:7,name:'局部广告-视频页广告',desc:'领取大会员月卡,B站免流星卡',fastQuery:true,rules:[{key:1,matchTime:10000,actionMaximum:1,activityIds:['com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity','com.bilibili.video.videodetail.VideoDetailsActivity'],matches:'[id=\"tv.danmaku.bili:id/toast_x\"]',snapshotUrls:['https://i.gkd.li/i/12892611','https://i.gkd.li/i/13308344','https://i.gkd.li/i/13538048']},{key:2,fastQuery:true,activityIds:'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',matches:'@[vid=\"close\"][visibleToUser=true] - [text$=\"免费领B站大会员\"]',exampleUrls:'https://e.gkd.li/cd934dfc-666e-4562-8b77-aac95f73694e',snapshotUrls:'https://i.gkd.li/i/18165189'}]},{key:8,name:'局部广告-直播间悬浮窗广告',desc:'点击关闭',fastQuery:true,activityIds:'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',rules:[{key:0,matches:'[id=\"tv.danmaku.bili:id/shopping_close\" || vid=\"live_game_card_close\" || vid=\"match_close\" || vid=\"iv_pop_rank_guide_card_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13200549','https://i.gkd.li/i/22990081','https://i.gkd.li/i/23098023','https://i.gkd.li/i/25238734']},{key:1,matches:'@[vid=\"close\" || vid=\"iv_close\"] - [vid=\"up_avatar\" || vid=\"gift_icon\" || vid=\"follow_container\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14782965','https://i.gkd.li/i/18046573','https://i.gkd.li/i/22990105']},{key:2,matchTime:10000,actionMaximum:1,matches:'[vid=\"vertical_container\"] >3 FrameLayout[clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24985920','https://i.gkd.li/i/25240029']}]},{key:9,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.MainActivityV2','com.bilibili.video.story.StoryTransparentActivity','com.bilibili.teenagersmode.ui.TeenagersModeDialogActivity'],matches:'[text$=\"通知\"] +2 * > [id=\"tv.danmaku.bili:id/close\"]',snapshotUrls:['https://i.gkd.li/i/13229159','https://i.gkd.li/i/13614090','https://i.gkd.li/i/21578494']}]},{key:10,name:'分段广告-首页推荐视频卡片广告',fastQuery:true,activityIds:'.MainActivityV2',rules:[{key:0,matches:'@[vid=\"more\" || id=\"tv.danmaku.bili.adbiz:id/more\"] <<n [vid=\"tool_container\" || vid=\"ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/root_container\" || id=\"tv.danmaku.bili.adbiz:id/constraintLayout\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14083540','https://i.gkd.li/i/14588315','https://i.gkd.li/i/14729855','https://i.gkd.li/i/18274379','https://i.gkd.li/i/18306851','https://i.gkd.li/i/19537979','https://i.gkd.li/i/23012670','https://i.gkd.li/i/23123800','https://i.gkd.li/i/23687196']},{key:1,matches:'@[vid=\"inline_more\"] <<n [vid=\"card_content\"][visibleToUser=true][getChild(1).getChild(1).vid=\"corner_hint_container\"]',exampleUrls:'https://e.gkd.li/d3d37b4e-cda3-4ba6-8af3-7b45ac8efc10',snapshotUrls:'https://i.gkd.li/i/17428126',excludeSnapshotUrls:'https://i.gkd.li/i/17848536'},{preKeys:[0,1],key:50,name:'点击[不感兴趣]/[相似内容过多]',matches:'@[clickable=true] > [text=\"此类内容过多\" || text=\"相似内容过多\" || text=\"不感兴趣\" || text=\"up主不感兴趣\" || text=\"对该up的直播不感兴趣\" || text=\"我不想看\" || text=\"引人不适\"]',snapshotUrls:['https://i.gkd.li/i/13625309','https://i.gkd.li/i/13742257','https://i.gkd.li/i/14155801','https://i.gkd.li/i/14155272','https://i.gkd.li/i/17428471','https://i.gkd.li/i/18274380','https://i.gkd.li/i/18292926','https://i.gkd.li/i/20710223','https://i.gkd.li/i/23687208','https://i.gkd.li/i/24836772'],excludeSnapshotUrls:['https://i.gkd.li/i/18292929','https://i.gkd.li/i/18306849']},{preKeys:[50],key:70,matches:'@FrameLayout[clickable=true] > [text=\"此类内容过多\" || text=\"相似内容过多\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2aba6082-1047-464e-959c-82ee62e492aa',snapshotUrls:['https://i.gkd.li/i/20718890','https://i.gkd.li/i/20720187']}]},{key:11,name:'局部广告-个性化内容推荐弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'tv.danmaku.bili.MainActivityV2',matches:'[text=\"开启个性化内容推荐\"] +3 [id=\"tv.danmaku.bili:id/close_button\"]',snapshotUrls:'https://i.gkd.li/i/13448905'}]},{key:12,name:'全屏广告-会员弹窗',desc:'点击关闭',fastQuery:true,actionMaximum:1,forcedTime:10000,rules:[{key:1,activityIds:['tv.danmaku.bili.MainActivityV2','com.bilibili.vip.web.VipWebActivity','com.bilibili.module.vip.web.VipWebActivity'],matches:'@[index=parent.childCount.minus(1)][height<150][visibleToUser=true] <(1,2) View <(1,2) View <(4,5) View < View < View < WebView[text=\"会员中心\" || text=\"大会员\"] < WebView < [vid=\"webview\"]',exampleUrls:'https://e.gkd.li/ac6dd8ae-f18e-4f48-9184-39e4dbd832ba',snapshotUrls:['https://i.gkd.li/i/15219142','https://i.gkd.li/i/15220560','https://i.gkd.li/i/15289942','https://i.gkd.li/i/15328394','https://i.gkd.li/i/18236032','https://i.gkd.li/i/22310507']},{key:4,activityIds:['tv.danmaku.bili.MainActivityV2','com.bilibili.vip.web.VipWebActivity'],matches:'ComposeView > View[childCount=7] > @View[clickable=true][childCount=0] <<n [vid=\"vip_panel\"]',exampleUrls:'https://m.gkd.li/57941037/a78a7719-b148-4df2-a225-f7a24be0c413',snapshotUrls:['https://i.gkd.li/i/15523975','https://i.gkd.li/i/15814146']},{key:5,fastQuery:true,activityIds:'com.bilibili.vip.web.VipWebActivity',matches:'@TextView[width<130 && height<130] - TextView[childCount=0][id=\"dialog-canvas\"] <<n [vid=\"webview\"]',snapshotUrls:'https://i.gkd.li/i/23385023'}]},{key:13,name:'全屏广告-分享稿件弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'tv.danmaku.bili.ui.splash.ad.page.HotSplashActivity',matches:'[vid=\"poster_share_cancel\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/80e5730d-6634-4a0a-9c58-c57f7ad5e58c',snapshotUrls:'https://i.gkd.li/i/15858057'}]},{key:14,name:'分段广告-搜索结果广告',desc:'点击右下角[菜单]-点击[不感兴趣]',fastQuery:true,activityIds:'com.bilibili.search2.main.BiliMainSearchActivity',rules:[{key:1,matches:'@[vid=\"more\"][clickable=true][visibleToUser=true] -(3,4) [vid=\"tag_layout\"]',exampleUrls:'https://e.gkd.li/e5dd30e7-e8dd-42bc-8953-23368e65cca4',snapshotUrls:['https://i.gkd.li/i/17269053','https://i.gkd.li/i/17964354']},{preKeys:[1],matches:'@[clickable=true] > [text$=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/5e6e4b69-ba97-473d-9f62-631c296da589',snapshotUrls:['https://i.gkd.li/i/17269055','https://i.gkd.li/i/17964356','https://i.gkd.li/i/22657666']}]},{key:15,name:'分段广告-视频详情页下方推广',desc:'关闭[广告/推广/直播]',fastQuery:true,activityIds:'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',rules:[{key:0,anyMatches:['@[vid=\"more\" || vid=\"more_layout\" || id=\"tv.danmaku.bili.adbiz:id/more\" || id=\"tv.danmaku.bili.adbiz:id/more_layout\"] <<n [vid=\"ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/ad_tint_frame\"][visibleToUser=true]','@[vid=\"more\"] -(3,5) [vid=\"live_lottie_layout\"][visibleToUser=true]','[!(vid=\"duration\" || vid=\"second_to_last_line_area\") || text=\"课堂\"] <3 ViewGroup[getChild(0).vid=\"cover\"] > [vid=\"more\"][visibleToUser=true]'],exampleUrls:['https://e.gkd.li/219c40c4-debf-40d8-889a-7eb39c87126c','https://e.gkd.li/dc54e6ee-24df-49a8-874a-f381326122c3'],snapshotUrls:['https://i.gkd.li/i/17675629','https://i.gkd.li/i/20739380','https://i.gkd.li/i/20744764','https://i.gkd.li/i/20794380','https://i.gkd.li/i/21552836','https://i.gkd.li/i/21705345','https://i.gkd.li/i/21947622','https://i.gkd.li/i/17675894','https://i.gkd.li/i/18306858','https://i.gkd.li/i/23934632','https://i.gkd.li/i/23933925','https://i.gkd.li/i/23933866','https://i.gkd.li/i/24015674'],excludeSnapshotUrls:'https://i.gkd.li/i/24365466'},{preKeys:[0],key:1,matches:'@[clickable=true] > [text*=\"不感兴趣\" || text=\"相似内容过多\" || text=\"我不想看\"]',exampleUrls:'https://e.gkd.li/23937c2d-379c-4fb5-aaee-7295bcf0afca',snapshotUrls:['https://i.gkd.li/i/17676025','https://i.gkd.li/i/17676149','https://i.gkd.li/i/17677147','https://i.gkd.li/i/18296940','https://i.gkd.li/i/18306839','https://i.gkd.li/i/20739391','https://i.gkd.li/i/24015691','https://i.gkd.li/i/24336415']},{preKeys:[1],key:2,matches:'[vid=\"close_dislike\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/80514576-3656-4dcc-89f5-5992803c8e77',snapshotUrls:'https://i.gkd.li/i/18587456'}]},{key:16,name:'功能类-自动关闭故事模式',desc:'播放视频时退出竖屏模式',matchTime:10000,actionMaximum:1,rules:[{fastQuery:true,activityIds:['com.bilibili.video.story.StoryVideoActivity','com.bilibili.video.story.StoryTransparentActivity'],matches:'[vid=\"story_ctrl_router\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4bfd6131-d4be-46be-affb-73338b01f49c',snapshotUrls:['https://i.gkd.li/i/18164075','https://i.gkd.li/i/23325994']}]},{key:17,name:'功能类-自动点击评论区的[展开更多评论]',rules:[{fastQuery:true,activityIds:['com.bilibili.video.story.StoryVideoActivity','com.bilibili.video.story.StoryTransparentActivity','com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity','com.bilibili.ship.theseus.playlist.UnitedPlaylistActivity'],matches:'@LinearLayout[clickable=true] > [text=\"展开更多评论\"]',exampleUrls:'https://e.gkd.li/e7b7167e-7623-4079-9f16-fd253f303074',snapshotUrls:['https://i.gkd.li/i/22572375','https://i.gkd.li/i/23325508','https://i.gkd.li/i/22573433','https://i.gkd.li/i/23786106']}]},{key:18,name:'功能类-自动领取会员经验',rules:[{fastQuery:true,activityIds:'com.bilibili.vip.web.VipWebActivity',matches:'TextView[childCount=0][text!=null][index=parent.childCount.minus(1)] -2 View >3 [text^=\"专属等级加速包\"] +2 @TextView[childCount=0][text=\"领取\"] <<n [vid=\"webview\"]',snapshotUrls:['https://i.gkd.li/i/22886723','https://i.gkd.li/i/22886739'],excludeSnapshotUrls:'https://i.gkd.li/i/23385023'}]},{key:19,name:'功能类-自动点击查看原图',rules:[{fastQuery:true,activityIds:['com.bilibili.video.story.StoryVideoActivity','com.bilibili.video.story.StoryTransparentActivity','com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity','com.bilibili.ship.theseus.playlist.UnitedPlaylistActivity','com.bilibili.bplus.followinglist.page.browser.ui.LightBrowserActivityV2','com.bilibili.lib.ui.ComposeActivity','com.bilibili.column.ui.detail.image.ColumnImageViewerActivity'],matches:'[text^=\"查看原图\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c0ffc9cb-fac0-4b5c-9645-3674942b5c7d',snapshotUrls:['https://i.gkd.li/i/23325552','https://i.gkd.li/i/23304237','https://i.gkd.li/i/23304245','https://i.gkd.li/i/23786065','https://i.gkd.li/i/23305280','https://i.gkd.li/i/23305281','https://i.gkd.li/i/23305275']}]},{key:20,name:'评价提示',rules:[{fastQuery:true,activityIds:'com.bilibili.search2.main.BiliMainSearchActivity',matches:'[vid=\"rating_dialog_close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/23440560'}]},{key:21,name:'功能类-直播自动点赞',desc:'左下角提示-点击',rules:[{fastQuery:true,activityIds:'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',matches:'@[vid=\"live_combo_action_button\"] > [text=\"点赞\"]',snapshotUrls:'https://i.gkd.li/i/25238947'}]},{key:22,name:'功能类-直播自动投喂粉丝团',desc:'左下角提示-点击投喂_需要0.1米谨慎开启(虽然只有一次)',matchTime:10000,actionMaximum:1,rules:[{fastQuery:true,activityIds:'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',matches:'@[vid=\"live_combo_action_button\"] > [text=\"投喂\"]',snapshotUrls:'https://i.gkd.li/i/25238945'}]}]},{id:'tv.danmaku.bilibilihd',name:'哔哩哔哩HD',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"tv.danmaku.bilibilihd:id/count_down\"]',snapshotUrls:'https://i.gkd.li/i/13031261'}],order:-10},{key:2,name:'分段广告-首页、视频播放页广告',desc:'点击[更多]-点击[不感兴趣]',fastQuery:true,rules:[{key:0,activityIds:'tv.danmaku.bili.MainActivityV2',matches:'@[vid=\"more\"][visibleToUser=true] - [vid=\"desc_content\"]',exampleUrls:'https://e.gkd.li/c947945b-db14-4873-8245-269d5bd7c496',snapshotUrls:['https://i.gkd.li/i/17726316','https://i.gkd.li/i/17891830']},{key:1,activityIds:'com.bilibili.ship.theseus.hd.detail.HDUnitedBizDetailsActivity',matches:'@[vid=\"more\"] -3 [vid=\"ad_desc\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ba14fc80-a227-479a-be82-fcddf01b1aa9',snapshotUrls:'https://i.gkd.li/i/17726295'},{preKeys:[0,1],activityIds:['tv.danmaku.bili.MainActivityV2','com.bilibili.ship.theseus.hd.detail.HDUnitedBizDetailsActivity'],matches:'@[clickable=true] > [text=\"不感兴趣\"]',exampleUrls:['https://e.gkd.li/516beab1-9421-4d71-b803-9f56a15f94de','https://e.gkd.li/ea61bb70-6919-48de-bf07-dbf653a09e08'],snapshotUrls:['https://i.gkd.li/i/17726321','https://i.gkd.li/i/17726285','https://i.gkd.li/i/17892061']}]}]},{id:'icu.freedomIntrovert.biliSendCommAntifraud',name:'哔哩发评反诈',groups:[{key:1,name:'功能类-检查评论自动点击后台等待',rules:[{fastQuery:true,activityIds:'icu.freedomIntrovert.biliSendCommAntifraud.ByXposedLaunchedActivity',matches:'Button[text=\"后台等待\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25240613'}]}]},{id:'tech.pingx.watchface',name:'表盘自定义工具',groups:[{key:1,name:'通知提示-公告',rules:[{fastQuery:true,activityIds:'io.dcloud.PandoraEntryActivity',matches:['[text*=\"请勿\"][text*=\"电子书\"]','[text=\"确定\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23714166'}]}]},{id:'cn.wenyu.bodian',name:'波点音乐',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:2,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/349c0f9e-a1d2-4e1d-bd6e-e42c3b3c01a6',snapshotUrls:'https://i.gkd.li/i/22845785'}],order:-10},{key:2,name:'全屏广告',rules:[{activityIds:'.MainActivity',matches:'@TextView[width<130&&height<130][clickable=true] + * > [text=\"开会员享专属曲库\"]',snapshotUrls:'https://i.gkd.li/i/22867851'}]},{key:3,name:'局部广告',rules:[{key:0,activityIds:'.MainActivity',matches:'ImageView[desc=\"广告\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b57e1862-ef27-4b2d-9cf4-c4c1a1a5262e',snapshotUrls:'https://i.gkd.li/i/22878974'},{key:1,activityIds:'.MainActivity',matches:'[desc$=\"广告\"] > ImageView[index=1][width=height][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5f249d6e-ac2d-4fda-a53c-039c8091ce63',snapshotUrls:'https://i.gkd.li/i/22878992'}]}]},{id:'cn.com.langeasy.LangEasyLexis',name:'不背单词',groups:[{key:1,name:'功能类-自动签到',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.com.langeasy.LangEasyLexis.activity.MainActivity',matches:'[id=\"cn.com.langeasy.LangEasyLexis:id/bb_checkin\"]',snapshotUrls:'https://i.gkd.li/i/13610321'}]},{key:2,name:'功能类-右下角年度报告弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.com.langeasy.LangEasyLexis.activity.MainActivity',matches:'[id=\"cn.com.langeasy.LangEasyLexis:id/close_float_button\"]',snapshotUrls:'https://i.gkd.li/i/13759025'}]}]},{id:'com.buyanchuantong.buyanshufa',name:'不厌书法',groups:[{key:3,name:'功能类-功能介绍',desc:'点击跳过',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.buyanchuantong.buyanshufa.SplashActivity',matches:'[text^=\"点击跳过\"]',snapshotUrls:'https://i.gkd.li/i/13425296'}]}]},{id:'com.wibo.bigbang.ocr',name:'布丁扫描',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.vivo.upgradelibrary.upmode.appdialog.VivoUpgradeActivityDialog',matches:'[id=\"com.wibo.bigbang.ocr:id/vivo_upgrade_negative_btn\"][text=\"忽略本次\"]',snapshotUrls:'https://i.gkd.li/i/13360281'}]}]},{id:'com.wn.app.bl',name:'布蕾4K',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击[我知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[desc=\"我知道了\"][clickable=true] + [desc=\"了解更多\"]',exampleUrls:'https://m.gkd.li/57941037/405a7072-bae5-4db7-8743-608ab3750c1c',snapshotUrls:'https://i.gkd.li/i/14228688'}]}]},{id:'com.lptiyu.tanke',name:'步道乐跑',groups:[{key:0,name:'全屏广告-弹窗广告',rules:[{key:0,name:'腾讯广告-1',activityIds:'com.lptiyu.tanke.activities.main.MainActivity',matches:'[id=\"com.lptiyu.tanke:id/interact_ad_root\"] >n [id=\"com.lptiyu.tanke:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/12829816','https://i.gkd.li/i/12869344','https://i.gkd.li/i/13378925']},{key:1,name:'腾讯广告-2',fastQuery:true,activityIds:'com.lptiyu.tanke.activities.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13070801'},{key:2,name:'快手广告-1',fastQuery:true,activityIds:['com.lptiyu.tanke.activities.splash.SplashActivity','com.lptiyu.tanke.activities.school_run_record_detail.RunRecordDetailActivity'],matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/13218232','https://i.gkd.li/i/13536714']},{key:3,name:'快手广告-2',fastQuery:true,activityIds:'com.lptiyu.tanke.activities.splash.SplashActivity',matches:'[text=\"广告\"] <2 ViewGroup - ViewGroup > ViewGroup > [text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/13476172'},{key:4,name:'快手广告-3',fastQuery:true,activityIds:'com.lptiyu.tanke.activities.splash.SplashActivity',matches:'[id=\"com.lptiyu.tanke:id/ksad_splash_circle_skip_left_view\"]',snapshotUrls:'https://i.gkd.li/i/13625386'},{key:5,name:'其他广告',activityIds:'com.lptiyu.tanke.activities.splash.SplashActivity',matches:'@LinearLayout > [id=\"com.lptiyu.tanke:id/skip_parent_view\"]',snapshotUrls:'https://i.gkd.li/i/13166361'},{key:6,fastQuery:true,activityIds:['.activities.school_run_record_detail.RunRecordDetailActivity','.activities.main.MainActivity'],matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5eff1f56-ea35-43f0-9789-644bd4213eed',snapshotUrls:['https://i.gkd.li/i/22863742','https://i.gkd.li/i/23549297']}]}]},{id:'com.lanjinger.choiassociatedpress',name:'财联社',groups:[{key:1,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.lanjinger.choiassociatedpress.main.OperateActivity',matches:'@ImageView[id$=\"iv_back\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13749206'}]}]},{id:'com.ddyc.lotterytool',name:'彩虹多多',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.ddyc.lotterytool.module.main.MainActivity',rules:[{matches:'@ImageButton[clickable=true][childCount=0] < LinearLayout < FrameLayout < [parent=null]',snapshotUrls:'https://i.gkd.li/i/13324555'}]},{key:2,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text^=\"开启推送通知\"] +2 LinearLayout [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13325888'}]}]},{id:'com.nowcasting.activity',name:'彩云天气',groups:[{key:1,name:'全屏广告-VIP弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.nowcasting.activity.WeatherActivity',matches:'[id=\"com.nowcasting.activity:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13405130'}]},{key:2,name:'全屏广告-弹窗广告',fastQuery:true,activityIds:'com.nowcasting.activity.WeatherActivity',rules:[{key:0,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13405131','https://i.gkd.li/i/14814345']},{key:1,matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] < ViewGroup <5 ViewGroup + ViewGroup [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/14814374'},{key:2,matches:'[vid=\"entrance_image\"] + [vid=\"close\"]',exampleUrls:'https://e.gkd.li/bd53a023-f83a-45ae-b58e-c7369f29bb2e',snapshotUrls:'https://i.gkd.li/i/16965108'}]},{key:3,name:'分段广告-卡片广告',fastQuery:true,activityIds:'com.nowcasting.activity.WeatherActivity',rules:[{key:1,matches:'[id=\"com.nowcasting.activity:id/ll_close\"]',snapshotUrls:'https://i.gkd.li/i/13690822'},{preKeys:[1],key:2,matches:'[id=\"com.nowcasting.activity:id/ll_uninterested\"]',snapshotUrls:'https://i.gkd.li/i/13690830'}]},{key:4,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,activityIds:'com.nowcasting.activity.WeatherActivity',rules:[{key:0,matches:'[id=\"com.nowcasting.activity:id/jad_feed_close\"]',snapshotUrls:'https://i.gkd.li/i/13690826'},{key:1,matches:'@FrameLayout[visibleToUser=true] +2 * > [text=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14814348'}]},{key:5,name:'功能类-点击收起顶部工具栏',rules:[{fastQuery:true,activityIds:'com.nowcasting.activity.WeatherActivity',matches:'ViewGroup[childCount=2][visibleToUser=true] > [vid=\"fl_arrow\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/5bdf4f45-d66d-441e-a2ce-f32d5fc40796',snapshotUrls:['https://i.gkd.li/i/14814347','https://i.gkd.li/i/14814412']}]}]},{id:'com.cainiao.wireless',name:'菜鸟',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,forcedTime:10000,activityIds:'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',matches:'[vid=\"draw_dialog_iv_close\" || vid=\"package_import_ad_dialog_iv_close\"]',snapshotUrls:['https://i.gkd.li/i/16118156','https://i.gkd.li/i/22570634']},{key:1,activityIds:'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',matches:'View[childCount=4] > Image + View + Image + View[text.length>0][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13042279'},{key:2,fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:'View[clickable=true] > @[text=\"关闭\"] + [visibleToUser=true][text=\"活动\"] <<n [vid=\"browser_fragment_layout\"]',snapshotUrls:'https://i.gkd.li/i/14033859'},{key:3,fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:'[vid=\"dialog_full_image_close\"]',snapshotUrls:'https://i.gkd.li/i/13842492'},{key:4,fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:'@[text=\"关闭\"] + [visibleToUser=true][text=\"活动\"] <<n [vid=\"browser_fragment_layout\"]',snapshotUrls:'https://i.gkd.li/i/14033859'},{key:5,fastQuery:true,activityIds:'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',matches:'[vid=\"cn_bottom_sheet_close\"]',snapshotUrls:'https://i.gkd.li/i/16118155'},{key:6,fastQuery:true,activityIds:'.homepage.view.activity.HomePageActivity',matches:'[desc=\"恭喜你获得\" || desc=\"你想买的\"] - @ImageView[id=null][text=null][clickable=true][visibleToUser=true][width<150&&height<150] <2 FrameLayout <2 FrameLayout < FrameLayout < [vid=\"fl_guide_ad_get_reward_dialog_dx_container\"]',snapshotUrls:['https://i.gkd.li/i/22441306','https://i.gkd.li/i/22570632']},{key:7,fastQuery:true,activityIds:'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',matches:'Image[childCount=0][width<100 && height<100] < @View[clickable=true][childCount=1] - Image[childCount=0][text=\"超时享\"] <<n [vid=\"browser_fragment_layout\"]',snapshotUrls:'https://i.gkd.li/i/24099845'}]},{key:2,name:'局部广告-卡片广告',rules:[{key:0,activityIds:'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',matches:'View[desc=\"立即查看\"] +2 ImageView[id=null]',snapshotUrls:'https://i.gkd.li/i/12914450'},{key:1,fastQuery:true,activityIds:'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',matches:'[vid=\"iv_banner_close\"]',snapshotUrls:'https://i.gkd.li/i/15879126'},{key:2,fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:'FrameLayout[childCount=8] > @FrameLayout[clickable=true][childCount=0][text=null] + ImageView[childCount=0][text=null] <<n [vid=\"layout_root\"]',snapshotUrls:['https://i.gkd.li/i/16024305','https://i.gkd.li/i/16518502']},{key:3,fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:'[vid=\"home_task_action_close\"]',snapshotUrls:'https://i.gkd.li/i/16024305'}]},{key:4,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.homepage.view.activity.HomePageActivity',matches:'[text=\"确认\"] - [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13042207'}]},{key:5,name:'权限提示-通知权限',desc:'自动点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:'[id=\"com.cainiao.wireless:id/gg_dialog_base_close\"]',snapshotUrls:'https://i.gkd.li/i/13068573'},{key:6,name:'评价提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:'@[text=\"取消\"] + [text=\"好评\"]',snapshotUrls:['https://i.gkd.li/i/13692761','https://i.gkd.li/i/14969859']},{key:9,name:'功能类-询问[是否要查询包裹]弹窗',desc:'点击[立即查看]',rules:[{fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:'@[text=\"立即查看\"] < * - * >2 [text=\"您是否要查询包裹\"]',exampleUrls:'https://m.gkd.li/57941037/eb48e137-66c3-4777-b65e-8f4f6b3bc4ee',snapshotUrls:'https://i.gkd.li/i/14913359'}]},{key:10,name:'功能类-包裹页面-自动展开更多物流信息',desc:'点击[展开]',rules:[{fastQuery:true,activityIds:'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',matches:'@[clickable=true] > View[desc=\"展开\"] <<n LinearLayout[vid=\"layout_root\"]',snapshotUrls:'https://i.gkd.li/i/15879126'}]},{key:11,name:'其他-好友代取功能提示',rules:[{fastQuery:true,activityIds:'com.cainiao.wireless.homepage.view.activity.HomePageActivity',matches:['[text^=\"好友代取\"]','[text=\"下次再说\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23787455'}]}]},{id:'io.microshow.fm',name:'畅听FM',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'io.microshow.fm.ui.activity.MainActivity',matches:'@Button[childCount=0][clickable=true][visibleToUser=true] <2 FrameLayout < RelativeLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/14953007'}]}]},{id:'com.xtuone.android.syllabus',name:'超级课程表',groups:[{key:1,name:'局部广告-首页卡片广告',rules:[{activityIds:'com.xtuone.android.friday.MainFragmentActivity',matches:'[id=\"com.xtuone.android.syllabus:id/treehole_banner_close\"]',snapshotUrls:'https://i.gkd.li/i/12840733'}]},{key:2,name:'局部广告-课程表界面广告',rules:[{activityIds:'com.xtuone.android.friday.MainFragmentActivity',matches:'[id=\"com.xtuone.android.syllabus:id/imgv_close\"]',snapshotUrls:'https://i.gkd.li/i/12999642'}]},{key:3,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xtuone.android.friday.MainFragmentActivity',matches:'[id=\"com.xtuone.android.syllabus:id/dialog_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13166501'}]},{key:4,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xtuone.android.friday.UpdateActivity',matches:'@[vid=\"update_cancel\"] + [vid=\"go_to_update\"]',snapshotUrls:'https://i.gkd.li/i/14292875'}]}]},{id:'com.ygkj.chelaile.standard',name:'车来了',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:['dev.xesam.chelaile.app.module.func.SplashActivity','dev.xesam.chelaile.app.module.PanelHostActivity','dev.xesam.chelaile.app.module.line.gray.LineDetailActivity'],matches:'@[vid=\"cll_all_pic_close_1\"][visibleToUser=true] < FrameLayout +(1,2) LinearLayout[childCount=2] > [text$=\"广告\"]',exampleUrls:'https://e.gkd.li/7957cdea-6238-4a2b-94bf-8960544258bc',snapshotUrls:['https://i.gkd.li/i/13062991','https://i.gkd.li/i/13464325','https://i.gkd.li/i/16987313']},{key:1,fastQuery:true,activityIds:['dev.xesam.chelaile.app.module.PanelHostActivity','dev.xesam.chelaile.app.module.line.TimeTableActivity','dev.xesam.chelaile.app.module.line.gray.LineDetailActivity'],excludeMatches:'[text=\"选择下车站\"][visibleToUser=true]',matches:'[vid=\"cll_line_single_ad_close\" || vid=\"cll_close\" || vid=\"cll_card_single_ad_close\"][visibleToUser=true][width<110 && height<110]',exampleUrls:'https://e.gkd.li/7d7b7d94-eb64-41a5-a5c2-c8418d6371a1',snapshotUrls:['https://i.gkd.li/i/13625374','https://i.gkd.li/i/16956570','https://i.gkd.li/i/16987313','https://i.gkd.li/i/16988894'],excludeSnapshotUrls:'https://i.gkd.li/i/25092999'},{key:2,fastQuery:true,activityIds:'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',matches:'FrameLayout[childCount=2] > FrameLayout[childCount=2] > FrameLayout[childCount=3] > FrameLayout[childCount=1] > @ImageView[visibleToUser=true][childCount=0][text=null] <<n [vid=\"cll_line_detail_widgets_container\"]',exampleUrls:'https://e.gkd.li/5442e403-7934-4fbf-b837-71d4ed8581cb',snapshotUrls:'https://i.gkd.li/i/16956583'},{key:3,fastQuery:true,activityIds:'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',matches:'@[vid=\"close_ad_text_link_layout\"][visibleToUser=true] - LinearLayout[childCount=2] > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/26c77ba0-8be5-4966-b806-3a566fee8413',snapshotUrls:'https://i.gkd.li/i/16987313'}]},{key:2,name:'更新提示',actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'dev.xesam.chelaile.app.module.PanelHostActivity',matches:'[id=\"com.ygkj.chelaile.standard:id/cll_interstitial_close\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/31613a9d-202a-4359-bc99-274dddb180ce',snapshotUrls:'https://i.gkd.li/i/14325666'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',matches:'@ImageView[clickable=true][childCount=0][width<100&&height<100][visibleToUser=true] <n * >3 [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/4ab8665e-026f-4101-8299-0300708c91c1',snapshotUrls:['https://i.gkd.li/i/16812335','https://i.gkd.li/i/21120116']},{key:1,fastQuery:true,activityIds:'dev.xesam.chelaile.app.module.PanelHostActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/20502977'},{key:2,fastQuery:true,activityIds:'dev.xesam.chelaile.app.module.PanelHostActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/76d02bfa-6d04-4005-b5aa-30ecfdd3cd84',snapshotUrls:'https://i.gkd.li/i/21139548'},{key:3,fastQuery:true,activityIds:'dev.xesam.chelaile.app.module.PanelHostActivity',matches:'@ViewGroup[childCount=1][visibleToUser=true][width<100 && height<100] + ViewGroup > [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/1f1c3315-d245-404b-ad16-554583b16283',snapshotUrls:'https://i.gkd.li/i/21120146'}]},{key:4,name:'功能类-打开app自动点击收藏列表第一个车🚗(不要同时开启哦~)',desc:'启动app-收藏列表第一个车线-进入车线详情',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'dev.xesam.chelaile.app.module.PanelHostActivity',matches:'@FrameLayout[clickable=true][getChild(0).vid=\"fav_line_layout\"] - LinearLayout >2 [text=\"我的收藏\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25091170'}]},{key:5,name:'功能类-打开app自动点击第一个车🚗后打开地图🗺️(不要同时开启哦~)',desc:'启动app-收藏列表第一个车线-进入车线详情-点击地图查看所有车次位置',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'dev.xesam.chelaile.app.module.PanelHostActivity',matches:'@FrameLayout[clickable=true][getChild(0).vid=\"fav_line_layout\"] - LinearLayout >2 [text=\"我的收藏\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25091170'},{preKeys:[0],key:1,activityIds:'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',matches:'[vid=\"cll_cover\"][visibleToUser=true][clickable=true]',snapshotUrls:'https://i.gkd.li/i/25091375'}]}]},{id:'com.vehicles.activities',name:'车旺大卡',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'卡片弹窗',fastQuery:true,activityIds:['com.sinoiov.cwza.discovery.activity.SpyDetailFragmentActivity','com.vehicles.activities.activity.MainActivity','com.sinoiov.cwza.discovery.activity.TrackDetailActivity'],matches:'[vid=\"iv_close\" || vid=\"iv_cancle\"]',snapshotUrls:['https://i.gkd.li/i/13952578','https://i.gkd.li/i/13952509','https://i.gkd.li/i/13952532']},{key:1,fastQuery:true,activityIds:'com.sinoiov.cwza.discovery.activity.DrivingDynamicsActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\" || text=\"打开快应用\"]',snapshotUrls:'https://i.gkd.li/i/13952519'}]}]},{id:'cn.com.drivedu.chexuetang',name:'车学堂',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'cn.com.drivedu.chexuetang.main.activity.MainActivity_',matches:'[desc^=\"dislike\"] > @View[clickable=true][visibleToUser=true] <<n [vid=\"fragment_ad\"]',exampleUrls:'https://m.gkd.li/57941037/16020d11-8e5b-4fb5-8e57-6baaa13ce6a9',snapshotUrls:'https://i.gkd.li/i/15137765'},{key:1,activityIds:'cn.com.drivedu.chexuetang.main.activity.MainActivity_',matches:'FrameLayout[childCount=5] > FrameLayout > @ImageView[visibleToUser=true] <<n [vid=\"fragment_ad\"]',exampleUrls:'https://m.gkd.li/57941037/402dc635-354e-4c4b-a6b9-0eebeecfee0d',snapshotUrls:'https://i.gkd.li/i/15148368'}]}]},{id:'com.anshibo.activity',name:'车e兴',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/7f58925f-39dd-40c3-a8f1-f6e5268eced4',snapshotUrls:'https://i.gkd.li/i/18046569',excludeSnapshotUrls:'https://i.gkd.li/i/18047812'}],order:-10}]},{id:'com.lion.market',name:'虫虫助手',groups:[{key:1,name:'全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.app.MainActivity',matches:'[vid=\"dlg_main_ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6e29aaa4-1a01-4422-8379-24140a4ffed5',snapshotUrls:'https://i.gkd.li/i/23784776'}]}]},{id:'com.sainti.eduread',name:'出口成章',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.home.FrActivity',matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/38334f57-2796-48a7-9000-76de3e8221ed',snapshotUrls:'https://i.gkd.li/i/18392760'}]}]},{id:'mikuclub.app',name:'初音社',groups:[{key:1,name:'全屏广告-谷歌广告',desc:'点击关闭',rules:[{forcedTime:10000,activityIds:'com.google.android.gms.ads.AdActivity',matches:'[text^=\"关闭广告\"] + View >2 Image[text=\"\"]',exampleUrls:'https://m.gkd.li/57941037/2fa2793e-187e-44e6-91e4-6a5a355568c6',snapshotUrls:'https://i.gkd.li/i/14306002'}]}]},{id:'com.neusoft.tax',name:'楚税通',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{position:{left:'width * 0.2528',top:'width * 0.0842'},activityIds:'io.dcloud.PandoraEntryActivity',matches:'WebView[childCount=4] >2 [text=\"以后再说立即体验\"]',exampleUrls:'https://m.gkd.li/57941037/7496414a-c742-4689-ad1b-60d903b90d52',snapshotUrls:'https://i.gkd.li/i/15362911'}]}]},{id:'com.galaxy.qbyd',name:'春木漫画',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:['com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T','com.aster.comic.app.view.MainActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13691104','https://i.gkd.li/i/13691103']}]}]},{id:'me.chunyu.ChunyuDoctor',name:'春雨医生',groups:[{key:10,name:'评价提示-应用评分弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.Activities.MainActivity','.Activities.WelcomeActivity'],matches:'[text=\"给应用评分\"] +(2) RelativeLayout > [text=\"下次再说\"]',snapshotUrls:['https://i.gkd.li/i/12661907','https://i.gkd.li/i/12661924']}]}]},{id:'me.drakeet.puremosaic',name:'纯纯打码',groups:[{key:1,name:'全屏广告-解锁高级功能',desc:'点击[不]',rules:[{fastQuery:true,activityIds:['.MainActivity','me.iwf.photopicker.PhotoPickerActivity'],matches:['[text=\"解锁高级功能\"]','[text=\"不\"]'],snapshotUrls:['https://i.gkd.li/i/16761630','https://i.gkd.li/i/16761818']}]}]},{id:'com.yaxisvip.pubgtool.iueg',name:'次元城动画',groups:[{key:1,name:'通知提示-公告',rules:[{activityIds:'top.cycdm.cycapp.MainActivity',matches:'[text=\"我知道了\"] < @[clickable=true] -n * > [text=\"重要通知\"]',snapshotUrls:'https://i.gkd.li/i/24331012'}]},{key:2,name:'全屏广告',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24331009'}]}]},{id:'net.duohuo.cyc',name:'次元城动画',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:'top.cycdm.cycapp.MainActivity',matches:'@ViewGroup[clickable=true][childCount=1] < ViewGroup +2 ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/13972796','https://i.gkd.li/i/14358701','https://i.gkd.li/i/14358706']},{key:1,fastQuery:true,activityIds:'top.cycdm.cycapp.MainActivity',matches:'@[clickable=true] > [text=\"跳过\"]',snapshotUrls:['https://i.gkd.li/i/13972792','https://i.gkd.li/i/14358630']}]}]},{id:'com.jarworld.bleach.bvn.sjm.cyc',name:'次元城动漫',groups:[{key:6,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.jarworld.bleach.bvn.sjm.cyc.MainActivity',matches:'[text*=\"跳过\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/13626949'},{key:1,fastQuery:true,activityIds:'com.jarworld.bleach.bvn.sjm.cyc.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13626950'},{key:2,fastQuery:true,activityIds:'com.kwad.sdk.api.proxy.app.KsRewardVideoActivity',matches:'ViewGroup[childCount=2] > ViewGroup[childCount=2] > @ViewGroup[clickable=true][childCount=1][visibleToUser=true] > ImageView[childCount=0] <<n [id=\"com.jarworld.bleach.bvn.sjm.cyc:id/ksad_js_reward_card\"]',snapshotUrls:'https://i.gkd.li/i/13635410'}]}]},{id:'com.kuangxiangciweimao.novel',name:'刺猬猫阅读',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fda4f30d-877f-4131-ba56-b6a69e3b7e0c',snapshotUrls:'https://i.gkd.li/i/16893223'},{key:1,matches:'[id=\"com.kuangxiangciweimao.novel:id/mTasksView\"]',snapshotUrls:'https://i.gkd.li/i/13056248'},{key:2,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/8359b29b-b99e-4b6e-b748-a10a9f17005c',snapshotUrls:['https://i.gkd.li/i/16901867','https://i.gkd.li/i/16899125']}],order:-10},{key:2,name:'功能类-自动签到',desc:'点击[签到]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.frame.MainFrameActivity',matches:'Button[text=\"签到\"]',snapshotUrls:'https://i.gkd.li/i/16897712'}]}]},{id:'cisdom.com.bigteaapp',name:'大茶肆',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text$=\"抽奖送大礼\"] < WebView - [id=\"cisdom.com.bigteaapp:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13228579'}]}]},{id:'com.dlmetro.app',name:'大连交通e出行',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.bwton.metro.tabindicator.business.MainTabActivity',matches:'[vid=\"iv_close\"]',exampleUrls:'https://m.gkd.li/57941037/78f79ab0-c224-40b8-9cae-e4a3366660db',snapshotUrls:'https://i.gkd.li/i/15369247'}]}]},{id:'cn.damai',name:'大麦',groups:[{key:0,name:'开屏广告',desc:'该规则需要在高级设置中开启[启用优化]才能生效',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'[vid=\"homepage_advert_pb\"]',exampleUrls:'https://m.gkd.li/57941037/6680a0b8-0796-4165-88fc-1f16cd6c67dd',snapshotUrls:'https://i.gkd.li/i/14585402'}],order:-10},{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'cn.damai.homepage.MainActivity',matches:'[id=\"cn.damai:id/homepage_popup_window_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/13627900'}]},{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.homepage.MainActivity',matches:'[vid=\"damai_theme_dialog_close_layout\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24213790'}]}]},{id:'com.zhiyin.qingdan.dashixiong',name:'大师兄影视',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,name:'快手广告-1',fastQuery:true,activityIds:'com.zhiyin.qingdan.dashixiong.MainActivity',matches:'@ImageView <n ViewGroup -2 ViewGroup > ViewGroup > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12843281'},{key:1,name:'快手广告-2',fastQuery:true,activityIds:'com.zhiyin.qingdan.dashixiong.MainActivity',matches:'@ImageView[clickable=true] <3 * -2 * >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13521143'},{key:2,fastQuery:true,name:'快手广告-3',activityIds:'com.zhiyin.qingdan.dashixiong.MainActivity',matches:['[text=\"广告\"]','[text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13521140'},{key:3,name:'腾讯广告-1',fastQuery:true,activityIds:['com.zhiyin.qingdan.dashixiong.MainActivity','com.qq.e.ads.ADActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12843282','https://i.gkd.li/i/12843345','https://i.gkd.li/i/12843333','https://i.gkd.li/i/13400656']},{key:5,name:'字节广告',fastQuery:true,activityIds:'com.zhiyin.qingdan.dashixiong.MainActivity',matches:'@Image < View +n View > View > View > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12843323'},{key:6,activityIds:'com.sigmob.sdk.base.common.TransparentAdActivity',matches:'[id=\"close_btn\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13887500'}]},{key:10,name:'通知提示-公告弹窗',desc:'点击[我知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc^=\"必读通告\"] +n [desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/12843280'}]},{key:11,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.zhiyin.qingdan.dashixiong.MainActivity',matches:'WebView[text=\"快手\"] >3 View[childCount=5] >2 @TextView[clickable=true][text=\"\"] <<n [vid=\"ksad_container\"]',exampleUrls:'https://m.gkd.li/57941037/122d8544-ccdd-42df-8618-f98f4433ee50',snapshotUrls:'https://i.gkd.li/i/15371800'}]}]},{id:'com.dataoke.union',name:'大淘客联盟',groups:[{key:1,name:'权限提示-通知权限',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.dtk.plat_home_lib.index.activity.IndexActivity','com.dtk.plat_web_lib.X5WebViewActivity'],matches:['[text^=\"你还没有打开通知哦\"]','[text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/13446826','https://i.gkd.li/i/18094567']}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.dtk.plat_web_lib.X5WebViewActivity',matches:'[vid=\"img_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a1cfa798-0fb1-456c-9875-dd3387f5b7e0',snapshotUrls:'https://i.gkd.li/i/18094553'}]}]},{id:'com.zmzx.college.search',name:'大学搜题酱',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12867875','https://i.gkd.li/i/16812698']}],order:-10},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:['com.zmzx.college.search.activity.main.activity.MainActivity','com.zmzx.college.search.activity.questionsearch.camera.activity.PicSearchResultActivity','com.zmzx.college.search.activity.camerasdk.ZybCameraSDKActivity','com.zmzx.college.search.activity.common.CommonCacheHybridActivity'],matches:'[id=\"com.zmzx.college.search:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/12867751','https://i.gkd.li/i/12894813','https://i.gkd.li/i/13522998','https://i.gkd.li/i/14554866']},{key:1,name:'快手广告-1',fastQuery:true,activityIds:['com.zmzx.college.search.activity.main.activity.MainActivity','com.zmzx.college.search.activity.questionsearch.camera.activity.PicSearchResultActivity'],matches:'ImageView < @ViewGroup[clickable=true] < ViewGroup <n * + ViewGroup >3 [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/13451304','https://i.gkd.li/i/14519779','https://i.gkd.li/i/14731371']},{key:3,name:'字节广告-1',activityIds:'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',matches:'Image < @View +3 View > View > TextView[text$=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13523288'},{key:4,name:'字节广告-2',fastQuery:true,activityIds:['com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'[id=\"com.byted.pangle.m:id/tt_reward_full_count_down_after_close\"]',snapshotUrls:['https://i.gkd.li/i/12893408','https://i.gkd.li/i/13929945']},{key:5,fastQuery:true,activityIds:'com.mercury.sdk.activity.InterstitialPortraitActivity',matches:'[vid=\"iv_itr_close\"]',snapshotUrls:'https://i.gkd.li/i/15360368'}]},{key:3,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:['com.zmzx.college.search.activity.booksearch.result.activity.SearchScanCodeResultDxActivity','com.zmzx.college.search.activity.booksearch.result.activity.AnswerBrowseActivity'],matches:'[vid=\"close_m_image_left_text_right_app_compliance\"]',snapshotUrls:['https://i.gkd.li/i/13849755','https://i.gkd.li/i/13929965']},{key:1,fastQuery:true,activityIds:'com.zmzx.college.search.activity.booksearch.result.activity.SearchScanCodeResultDxActivity',matches:'[id^=\"com.zmzx.college.search:id/ad_flag_source\"] - * > [id=\"com.zmzx.college.search:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13063381'}]},{key:5,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.activity.main.activity.MainActivity','.activity.init.InitActivity'],matches:'[id=\"com.zmzx.college.search:id/update_close\"]',snapshotUrls:['https://i.gkd.li/i/13063373','https://i.gkd.li/i/13623469']}]},{key:6,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.main.activity.MainActivity',matches:'[text=\"开启推送通知\"] - [id=\"com.zmzx.college.search:id/siv_dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/13440939'}]},{key:7,name:'评价提示-请求好评弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.camerasdk.ZybCameraSDKActivity',matches:'[id=\"com.zmzx.college.search:id/iv_logo\"] + [id=\"com.zmzx.college.search:id/siv_close\"]',snapshotUrls:'https://i.gkd.li/i/13476308'}]},{key:11,name:'全屏广告-邀好友得开学好礼',desc:'使用返回关闭',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,action:'back',activityIds:'com.zmzx.college.search.activity.common.CommonCacheHybridActivity',matches:'[visibleToUser=true][text=\"邀好友得开学好礼\"] <<n [vid=\"webview_root_layout\"]',exampleUrls:'https://m.gkd.li/57941037/d625fcaa-4cf3-4c92-9b27-10542b0262bb',snapshotUrls:'https://i.gkd.li/i/14555042'}]},{key:12,name:'分段广告-底部卡片广告',desc:'点击关闭-点击不感兴趣',fastQuery:true,activityIds:'com.zmzx.college.search.activity.booksearch.result.activity.AnswerBrowseActivity',rules:[{key:0,matches:'@[desc$=\"dislike\"] <<n [vid=\"rlBottomADContainer\"]',snapshotUrls:'https://i.gkd.li/i/15902162'},{preKeys:[0],key:1,matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/15902298'}]}]},{id:'com.yoloho.dayima',name:'大姨妈',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯SDK',fastQuery:true,activityIds:'.activity.MainPageActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13800255'}]}]},{id:'com.dianping.v1',name:'大众点评',groups:[{key:1,name:'全屏广告-主页推荐关注弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dianping.main.guide.SplashActivity',matches:'FrameLayout[id=\"android:id/content\"] >2 FrameLayout > ImageView + FrameLayout[id=null][desc=\"关闭\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12727011'}]},{key:2,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"去开启\"][clickable=true] +2 @FrameLayout[clickable=true] > ImageView',action:'clickCenter',snapshotUrls:'https://i.gkd.li/i/12727070'}]},{key:3,name:'局部广告-关闭[签到开红包]',desc:'点击右下角悬浮图片右上角的x图标',activityIds:['com.dianping.v1.NovaMainActivity'],rules:'[id=\"com.dianping.v1:id/float_image\"] + [id=\"com.dianping.v1:id/close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12727366'},{key:4,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.dianping.v1.NovaMainActivity',fastQuery:true,matches:'[id=\"com.dianping.v1:id/operate_cross_icon\"]',snapshotUrls:'https://i.gkd.li/i/13538340'}]},{key:5,name:'分段广告-推荐页卡片广告',rules:[{key:0,activityIds:'com.dianping.v1.NovaMainActivity',matches:'@[desc=\"reculike_delete\"][clickable=true][visibleToUser=true] +3 [childCount=2]',snapshotUrls:['https://i.gkd.li/i/13759369','https://i.gkd.li/i/14332054']},{preKeys:[0],key:1,action:'clickCenter',activityIds:'com.dianping.v1.NovaMainActivity',matches:'@[clickable=true] > [text=\"重复出现\"]',snapshotUrls:['https://i.gkd.li/i/14238381','https://i.gkd.li/i/14269115']},{preKeys:[0],key:2,fastQuery:true,activityIds:'com.dianping.v1.NovaMainActivity',matches:'[text$=\"重复出现\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/010c0314-e89b-468f-8143-691925a308a6',snapshotUrls:'https://i.gkd.li/i/14393256'}]},{key:6,name:'功能类-选择地图时自动点击[更多]',rules:[{fastQuery:true,activityIds:'com.dianping.nova.picasso.DPPicassoBoxActivity',matches:['[text=\"请选择地图\"][visibleToUser=true]','@[clickable=true] > [text^=\"更多\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ce751918-dab2-4670-a608-9edbcb3bdc0e',snapshotUrls:'https://i.gkd.li/i/23289239'}]}]},{id:'com.lxkj.dmhw',name:'呆萌价',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,position:{left:'width * 0.8981',top:'width * 0.1629'},matches:'[id=\"com.lxkj.dmhw:id/animation_view\"]',snapshotUrls:'https://i.gkd.li/i/13246178'},{key:1,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15454142'}],order:-10}]},{id:'com.zhizhou.days',name:'倒计日',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'穿山甲-第一类广告',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[desc^=\"webview-close\"] > View[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12727499'},{key:1,name:'穿山甲-第二类广告',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:['[text=\"广告\"]','@Image < View + [text=\"反馈\"]'],snapshotUrls:'https://i.gkd.li/i/12739678'},{key:10,name:'优量汇-第一类广告',fastQuery:true,activityIds:'com.zhizhou.days.activity.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/12727528'},{key:11,name:'优量汇-第二类广告',fastQuery:true,activityIds:['com.zhizhou.days.activity.MainActivity','com.huawei.android.launcher.unihome.UniHomeLauncher'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12739703','https://i.gkd.li/i/12727546']}]},{key:10,name:'评价提示-应用评价弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:'@[text=\"以后再说\"] + [text=\"马上评价\"]',snapshotUrls:'https://i.gkd.li/i/12744951'}]},{id:'com.chaozh.iReader.dj',name:'得间免费小说',groups:[{key:1,name:'局部广告',rules:[{key:1,fastQuery:true,activityIds:['com.qq.e.ads.PortraitADActivity','com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT'],matches:'@[id*=\"ad_close\"] - LinearLayout >(5,6) [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24879639','https://i.gkd.li/i/24879692','https://i.gkd.li/i/24879766']},{key:2,fastQuery:true,activityIds:'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',matches:'@ImageView[clickable=true][childCount=0][width<50 && height<50] < FrameLayout <2 [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/24880989','https://i.gkd.li/i/24881759']},{key:3,fastQuery:true,activityIds:['com.zhangyue.iReader.ui.activity.ActivityContainer','com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf','com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT'],matches:'@[text=\"关闭\"][clickable=true] <<n [id=\"com.zhangyue.module.ad:id/mix_ad_view\" || id=\"com.zhangyue.module.ad:id/ad_splash_ad_layout\"]',snapshotUrls:['https://i.gkd.li/i/24884414','https://i.gkd.li/i/24882622','https://i.gkd.li/i/24883183']},{key:4,fastQuery:true,activityIds:'com.qq.e.ads.PortraitADActivity',matches:'[text$=\"了解更多\"] <<n [id=\"android:id/content\"] + [text=\"关闭\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24909685'},{key:5,fastQuery:true,activityIds:['com.zhangyue.app.shortplay.player.ui.activity.EpisodesSetPlayActivity','com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT'],matches:'[id=\"com.zhangyue.module.ad:id/close_ad\" || id=\"com.zhangyue.module.ad:id/ad_close_2\"]',snapshotUrls:['https://i.gkd.li/i/24885716','https://i.gkd.li/i/24888022']}]}]},{id:'com.shizhuang.duapp',name:'得物',groups:[{key:4,name:'其他-截屏分享',desc:'关闭截屏时app弹出的分享弹窗',rules:[{fastQuery:true,activityIds:'com.shizhuang.duapp.modules.product_detail.detailv4.ui.ProductDetailActivityV4',matches:'[id=\"com.shizhuang.duapp:id/ivClose\"] +2 [id=\"com.shizhuang.duapp:id/ivSave\"]',snapshotUrls:'https://i.gkd.li/i/13473449'}]}]},{id:'com.v2ray.bizer',name:'灯塔加速器',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'@[vid=\"close\"] - [text*=\"公告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6dde3a1f-0428-4110-918e-f4b5853d5c04',snapshotUrls:'https://i.gkd.li/i/23834355'}]}]},{id:'com.mxchip.petmarvel',name:'滴宠生活',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15102179'},{key:2,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ab86d0ac-00f3-46e5-bfbc-c6a37c1c5a23',snapshotUrls:'https://i.gkd.li/i/23600688'}],order:-10},{key:1,name:'局部广告-左上角卡片弹窗',desc:'点击X',rules:[{activityIds:'com.mxchip.petmarvel.device.panel.DevicePanelActivity',matches:'View[childCount=19] > View[index=1] > Image[clickable=true]',snapshotUrls:'https://i.gkd.li/i/13989316'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mxchip.petmarvel.MainActivity',matches:'[vid=\"iv_close\"]',exampleUrls:'https://m.gkd.li/57941037/de4ea9ad-c85f-4ace-bd4e-7b7fc9adbc2a',snapshotUrls:'https://i.gkd.li/i/14717743'}]}]},{id:'com.sdu.didi.gsui',name:'滴滴车主',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.sdu.didi.gsui.main.MainActivity',matches:'[id=\"com.sdu.didi.gsui:id/main_dialog_banner_image_close\"]',snapshotUrls:'https://i.gkd.li/i/13958887'}]}]},{id:'com.sdu.didi.psnger',name:'滴滴出行',groups:[{key:1,name:'局部广告-打车页面右上角红包广告',desc:'点击卡片广告左上角x',rules:[{fastQuery:true,activityIds:'com.didi.sdk.app.MainActivity',matches:'ImageView[id=\"com.sdu.didi.psnger:id/second_entrance_img\"] + @ImageView[id=\"com.sdu.didi.psnger:id/left_close_img\"]',snapshotUrls:'https://i.gkd.li/i/13760846'}]},{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.didi.sdk.app.MainActivity',matches:'[vid=\"iv_upgrade_btn_ignore\"]',exampleUrls:'https://m.gkd.li/57941037/ba2a4ef6-d63d-4d67-ab89-222085ea3b3f',snapshotUrls:'https://i.gkd.li/i/14582620'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.didi.sdk.app.MainActivity',matches:'[vid=\"popClose\"][desc=\"关闭弹窗\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/432c28dd-2489-47cf-a975-4ef2e4704615',snapshotUrls:'https://i.gkd.li/i/18173921'}]},{key:4,name:'全屏广告-[升级一键付款]弹窗',desc:'点击[跳过]',rules:[{fastQuery:true,activityIds:'com.didi.sdk.app.MainActivity',matches:['[text=\"升级一键付款\"][visibleToUser=true]','[text=\"跳过\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/effbc440-02c9-40a6-b72e-a7df401c985c',snapshotUrls:'https://i.gkd.li/i/18409807'}]},{key:5,name:'其他-追加车型提示',rules:[{fastQuery:true,activityIds:'com.didi.sdk.app.MainActivity',matches:['[text=\"追加以下车型 可更快应答\"]','[text=\"暂时不用\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/24560279'}]}]},{id:'com.dianxinai.mobile',name:'点心云',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text$=\"s\"][text.length=2]',snapshotUrls:'https://i.gkd.li/i/16115075'}],order:-10}]},{id:'com.zlfcapp.batterymanager',name:'电池容量检测管理',groups:[{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,position:{left:'width * 0.9245',top:'width * 0.0401'},activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'FrameLayout[childCount=4] >2 @RelativeLayout[childCount=3] > RelativeLayout > ProgressBar[childCount=0]',exampleUrls:'https://m.gkd.li/57941037/89ad488c-2bcb-4f78-b7ba-ccb5335042cc',snapshotUrls:'https://i.gkd.li/i/15220546'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -2 @View > Image[text=\"\"][visibleToUser=true][childCount=0]',exampleUrls:'https://m.gkd.li/57941037/f41a31f3-5ddd-44a5-b450-a6678f551328',snapshotUrls:'https://i.gkd.li/i/15220517'},{key:2,fastQuery:true,activityIds:'.mvvm.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/19954295'},{key:3,fastQuery:true,activityIds:'.mvvm.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/19955131'},{key:4,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@View[text=\"\"][id!=null][childCount=1][getChild(0).getChild(0).childCount=0] + View[childCount=1] > [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/fc18c202-23c9-4b77-bbe6-9674427a53df',snapshotUrls:'https://i.gkd.li/i/19955070'},{key:5,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<50 && height<50] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a5f1c567-8cca-47e2-be35-0972f32486d0',snapshotUrls:'https://i.gkd.li/i/23362716'},{key:6,fastQuery:true,activityIds:'com.zlfcapp.batterymanager.mvvm.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:['https://e.gkd.li/b6f0c1c3-b42e-4443-a1dc-299299cf8b5f','https://e.gkd.li/d4b4f127-677a-47d2-81df-b4fa5d7e046d'],snapshotUrls:['https://i.gkd.li/i/23362866','https://i.gkd.li/i/23363372']},{key:7,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@ImageView[childCount=0] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] + ViewGroup >4 [text=\"反馈\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/279d959b-bc63-45f4-a2c4-22054c4cd3f7',snapshotUrls:'https://i.gkd.li/i/23363218'},{key:8,fastQuery:true,activityIds:'com.zlfcapp.batterymanager.mvvm.main.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/2de28d35-4f2d-46c5-ab3e-d108013a10d0',snapshotUrls:'https://i.gkd.li/i/23363256'}]}]},{id:'com.android.incallui',name:'电话',groups:[{key:1,name:'功能类-接通话时自动点击录音',actionMaximum:1,rules:[{actionDelay:500,fastQuery:true,activityIds:'.InCallActivity',matches:['[vid=\"elapsedTime\"][visibleToUser=true]','[vid=\"recordButton\"][desc=\"录音\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/cfe191ef-3786-403c-ba88-e18d299803a8',snapshotUrls:'https://i.gkd.li/i/20876897',excludeSnapshotUrls:['https://i.gkd.li/i/20876893','https://i.gkd.li/i/20877514']}]}]},{id:'com.android.email',name:'电子邮件',groups:[{key:1,name:'权限提示-自启动',desc:'点击取消',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.wps.multiwindow.main.HomeActivity',matches:['[text^=\"检测到您的自启动权限未开启\"]','[text=\"取消\"][clickable=true]'],exampleUrls:'https://e.gkd.li/1eacdaf8-1405-44d8-a9b9-228e913c5180',snapshotUrls:'https://i.gkd.li/i/17276404'}]}]},{id:'cn.dxy.idxyer',name:'丁香园',groups:[{key:1,name:'局部广告',rules:[{key:0,fastQuery:true,activityIds:'.biz.main.MainActivity',matches:'[vid=\"iv_image_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24851243','https://i.gkd.li/i/24868496']},{key:1,fastQuery:true,matches:'@[vid=\"iv_close\"] <<n [vid=\"include_ad\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24858514'}]},{key:2,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:'.biz.main.MainActivity',matches:'[vid=\"iv_close\"]',snapshotUrls:['https://i.gkd.li/i/24852395','https://i.gkd.li/i/24852398']},{key:1,name:'内容对你有帮助吗-反馈页面',activityIds:'cn.dxy.drugscomm.business.medadviser.detail.MedAdviserDetailComposeActivity',matches:'[text*=\"有帮助吗\"] + [text*=\"参与反馈\"] +n ImageView[clickable=true][width<100 && height<100]',snapshotUrls:'https://i.gkd.li/i/24995535'}]},{key:3,name:'权限提示-通知权限',desc:'点击:x取消',rules:[{key:0,fastQuery:true,activityIds:'.biz.main.MainActivity',matches:'[vid=\"iv_close_open_notification\"]',snapshotUrls:'https://i.gkd.li/i/24877703'}]},{key:4,name:'权限提示-悬浮小窗播放权限',desc:'点击取消',rules:[{key:0,fastQuery:true,activityIds:'.common.WebViewActivity',matches:['[text=\"开启悬浮小窗播放功能\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/24865283'}]},{key:5,name:'功能类-丁香园安全中心-自动点击继续访问',rules:[{key:0,action:'clickCenter',activityIds:'.common.OuterWebViewActivity',matches:'@Button[text=\"继续访问\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24845324'}]},{key:6,name:'功能类-自动点击查看答案',rules:[{key:1,name:'点击查看答案按钮',activityIds:['.biz.post.PostDetailActivity','.biz.post.CommentDetailActivity'],action:'clickCenter',matches:['@Button[text=\" 查看答案\"][clickable=true][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/24857800','https://i.gkd.li/i/24864724'],excludeSnapshotUrls:'https://i.gkd.li/i/24875801'},{preKeys:[1],name:'执行返回操作',activityIds:'.biz.post.ShowAnswerActivity',matches:'@ImageButton[desc=\"转到上一层级\"] < [vid=\"toolbar\"]',snapshotUrls:'https://i.gkd.li/i/24900979'}]},{key:7,name:'功能类-药品说明书-表格全屏自动横屏观看',rules:[{key:0,activityIds:'cn.dxy.drugscomm.business.ebm.EbmContentComposeActivity',matches:'@TextView[text=\"横屏\"]',snapshotUrls:'https://i.gkd.li/i/24860315'}]},{key:8,name:'功能类-自动点击查看原图',rules:[{fastQuery:true,activityIds:'.common.image.GalleryActivity',matches:'[vid=\"iv_item_bottom_ll\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24865469'}]},{key:9,name:'功能类-📋病例视频自动慢速x0.5_选你想要的但不要多选!',desc:'适合CT,MRI影像学深入分析',actionMaximum:1,activityIds:'.biz.post.PostDetailActivity',rules:[{key:0,name:'调出倍速栏',action:'clickCenter',matches:'[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24865795'},{preKeys:[0],key:1,name:'使用x0.5',action:'clickCenter',matches:'@MenuItem[text=\"0.5x\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24865795'}]},{key:10,name:'功能类-📋病例视频自动慢速x0.8_选你想要的但不要多选!',desc:'适合CT,MRI影像学深入分析',actionMaximum:1,activityIds:'.biz.post.PostDetailActivity',rules:[{key:0,name:'调出倍速栏',action:'clickCenter',matches:'[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24865795'},{preKeys:[0],key:1,name:'使用x0.8',action:'clickCenter',matches:'@MenuItem[text=\"0.8x\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24865795'}]},{key:11,name:'功能类-📋病例视频自动倍速x1.5_选你想要的但不要多选!',desc:'提高观看效率',actionMaximum:1,activityIds:'.biz.post.PostDetailActivity',rules:[{key:0,name:'调出倍速栏',action:'clickCenter',matches:'[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24865795'},{preKeys:[0],key:1,name:'使用x1.5',action:'clickCenter',matches:'@MenuItem[text=\"1.5x\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24865795'}]},{key:12,name:'功能类-📋病例视频自动倍速x2.0_选你想要的但不要多选!',desc:'极限观看效率',actionMaximum:1,activityIds:'.biz.post.PostDetailActivity',rules:[{key:0,name:'调出倍速栏',action:'clickCenter',matches:'[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24865795'},{preKeys:[0],key:1,name:'使用x2.0',action:'clickCenter',matches:'@MenuItem[text=\"2x\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24865795'}]},{key:13,name:'功能类-📖课程视频自动倍速x1.2⚠️选你想要的但不要多选!',desc:'我们导师再也不卡壳啦',rules:[{fastQuery:true,actionMaximum:1,activityIds:'.openclass.biz.video.detail.VideoDetailActivity',matches:'[vid=\"play_speed\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24866929'}]},{key:14,name:'功能类-📖课程视频自动倍速x1.5⚠️选你想要的但不要多选',desc:'显著提高讲师效率',rules:[{fastQuery:true,actionCd:300,actionMaximum:2,activityIds:'.openclass.biz.video.detail.VideoDetailActivity',matches:'[vid=\"play_speed\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24866929'}]},{key:15,name:'功能类-📖课程视频自动倍速x2.0⚠️选你想要的但不要多选',desc:'导师讲到冒烟不带停',rules:[{fastQuery:true,actionCd:300,actionMaximum:3,activityIds:'.openclass.biz.video.detail.VideoDetailActivity',matches:'[vid=\"play_speed\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24866758'}]}]},{id:'com.ddsy.songyao',name:'叮当快药',groups:[{key:1,name:'全屏广告-优惠卷提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ddsy.songyao.activity.SplashActivity',matches:'[id=\"com.ddsy.songyao:id/iv_coupon_bottom\"] + [id=\"com.ddsy.songyao:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13048720'}]}]},{id:'com.alibaba.android.rimet',name:'钉钉',groups:[{key:1,name:'局部广告-消息列表上方广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'@FrameLayout > [id=\"com.alibaba.android.rimet:id/icft_close\"]',snapshotUrls:'https://i.gkd.li/i/13325125'}]},{key:2,name:'功能类-文件即将过期提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'@FrameLayout[id=\"com.alibaba.android.rimet:id/layout_close\"] -2 TextView[text=\"文件即将过期请备份\"]',action:'clickCenter',snapshotUrls:'https://i.gkd.li/i/13325125'}]},{key:3,name:'功能类-自动点击原图',fastQuery:true,actionMaximum:1,activityIds:'com.alibaba.android.dingtalk.photoui.activitys.AlbumActivity',rules:[{key:0,matches:'CheckBox[id=\"com.alibaba.android.rimet:id/cb_send_origin\"][text=\"原图\"][checked=false]',snapshotUrls:['https://i.gkd.li/i/13309648','https://i.gkd.li/i/13309845']}]},{key:4,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'@Button[text*=\"暂不更新\"] + Button[text*=\"更新\"]',snapshotUrls:'https://i.gkd.li/i/13402478'},{matches:'TextView[id=\"com.alibaba.android.rimet:id/dialog_close_button\"]',snapshotUrls:'https://i.gkd.li/i/13772151'}]},{key:5,name:'功能类-扫码自动登录桌面版',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'activity',activityIds:'com.alibaba.android.user.qrcode.WebLoginActivity',rules:[{matches:'[id=\"com.alibaba.android.rimet:id/btn_login\"]',snapshotUrls:'https://i.gkd.li/i/13433981'}]}]},{id:'com.eastmoney.android.berlin',name:'东方财富',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.eastmoney.android.module.launcher.internal.home.HomeActivity',matches:'[id=\"com.eastmoney.android.berlin:id/tv_update_next_time\"]',snapshotUrls:'https://i.gkd.li/i/12706070'}]},{key:2,name:'全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.eastmoney.android.module.launcher.internal.home.HomeActivity',matches:'[vid=\"iv_single_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/286da57c-7a7f-4668-aea8-7cbff63e8499',snapshotUrls:'https://i.gkd.li/i/23281792'}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.eastmoney.android.module.launcher.internal.home.HomeActivity',matches:'[id=\"com.eastmoney.android.berlin:id/push_on_notify_delete\"]',snapshotUrls:'https://i.gkd.li/i/12706065'}]}]},{id:'com.futurefleet.dongguantongbus.ui.dg',name:'东莞通',groups:[{key:1,name:'局部广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.unionpay.smartDG.activity.UPMainActivity',matches:'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][width<60 && height<60] <<n [vid=\"flow_ad_fl_container_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fd24a381-82eb-4dc2-80f8-410783a1a680',snapshotUrls:'https://i.gkd.li/i/23290739'}]},{key:2,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.yd.saas.base.inner.interstitial.YdInterstitialActivity',matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d4e02a98-f4e7-492f-9317-717454d74fd5',snapshotUrls:'https://i.gkd.li/i/23357205'}]}]},{id:'com.ss.android.auto',name:'懂车帝',groups:[{key:1,name:'分段广告-首页推荐卡片广告',desc:'需二次点击关闭原因',fastQuery:true,activityIds:['com.ss.android.auto.activity.SplashActivity','com.ss.android.auto.policy.AutoPrivacyActivity'],rules:[{key:0,name:'点击关闭',matches:'TextView[text.length=1][id=null][clickable=false] < @FrameLayout[clickable=true][id!=null] - LinearLayout > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12660816','https://i.gkd.li/i/13959610']},{preKeys:[0],name:'点击\"不感兴趣\"1',matches:'@ViewGroup[clickable=true] TextView[text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13538627'},{preKeys:[0],name:'点击\"不感兴趣\"2',matches:'[text=\"不感兴趣\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12711589','https://i.gkd.li/i/13959613']}]},{key:2,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.SplashActivity',matches:'@TextView[text=\"以后再说\"] - FrameLayout >2 TextView[text$=\"升级\"]',snapshotUrls:'https://i.gkd.li/i/13534445'}]},{key:3,name:'局部广告-右下角悬浮窗',matchTime:10000,actionMaximum:1,rules:[{activityIds:['com.ss.android.auto.activity.SplashActivity','com.ss.android.auto.activity.ConcernDetailActivity'],matches:'FrameLayout > RelativeLayout[childCount=2] > RelativeLayout + ImageView[clickable=true]',snapshotUrls:['https://i.gkd.li/i/12798338','https://i.gkd.li/i/13535531','https://i.gkd.li/i/13535933','https://i.gkd.li/i/13535932']}]},{key:4,name:'局部广告-文章底部卡片广告',rules:[{fastQuery:true,activityIds:'com.ss.android.article.base.feature.detail2.view.NewDetailActivity',matches:'FrameLayout > RelativeLayout > @ImageView[clickable=true] + [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12811597'}]},{key:5,name:'局部广告-评论区信息流广告',desc:'点击关闭',fastQuery:true,rules:[{activityIds:['com.ss.android.article.base.feature.detail2.view.NewDetailActivity','com.ss.android.auto.ugc.video.activity.UgcLongPostActivity','com.ss.android.auto.ugc.video.activity.UgcNewDetailActivity'],matches:'@ImageView[clickable=true] - LinearLayout > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12811459','https://i.gkd.li/i/12825865','https://i.gkd.li/i/12900666','https://i.gkd.li/i/14321293']}]},{key:6,name:'权限提示-通知权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:['.activity.SplashActivity','com.bytedance.im.auto.conversation.activity.ConversationListActivity'],matches:'TextView[text*=\"推送通知\"]',snapshotUrls:['https://i.gkd.li/i/12840664','https://i.gkd.li/i/14060897','https://i.gkd.li/i/14546563']}]},{key:7,name:'局部广告-选车页卡片广告',rules:[{fastQuery:true,activityIds:'com.ss.android.auto.activity.ConcernDetailActivity',matches:'@FrameLayout[clickable=true][id!=null] -2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13686928'}]},{key:8,name:'局部广告-车型页面右下角直播悬浮窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.ss.android.auto.activity.ConcernDetailActivity',matches:'FrameLayout[childCount=8] > TextView[text=\"\"]',snapshotUrls:'https://i.gkd.li/i/14034740'}]},{key:9,name:'评价提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:'.activity.SplashActivity',matches:'[text=\"去评价\"]',snapshotUrls:'https://i.gkd.li/i/14810042'}]}]},{id:'com.dongqiudi.news',name:'懂球帝',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/74db13f0-d87d-41a3-bbbb-1b075d8ae7d6',snapshotUrls:'https://i.gkd.li/i/20218520'},{key:1,fastQuery:true,matches:'@View[clickable=true] - [text=\"互动广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3b636c88-23de-4e2a-86fd-2846a0f0274b',snapshotUrls:'https://i.gkd.li/i/20262129'},{key:2,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/940ce4e2-da5f-4a43-b319-4131a22cb1e0',snapshotUrls:'https://i.gkd.li/i/20262130'}],order:-10},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.DownloadActivity',matches:'TextView[text*=\"新版本\"] +3 TextView[text=\"下次提醒\"]',snapshotUrls:'https://i.gkd.li/i/12620586'}]},{key:4,name:'分段广告-首页信息流广告',desc:'点击卡片广告x关闭按钮-关闭反馈理由弹窗',activityIds:'com.dongqiudi.news.MainActivity',fastQuery:true,rules:[{preKeys:[1,2],name:'首页信息流广告-反馈理由',matches:'TextView[text=\"诱导点击\"][id=\"com.dongqiudi.news:id/text_item\"]',snapshotUrls:'https://i.gkd.li/i/12620656'},{key:1,matches:'TextView[id=\"com.dongqiudi.news:id/ads_label\"] +(n) ImageView[id=\"com.dongqiudi.news:id/feedback_close\"]',snapshotUrls:'https://i.gkd.li/i/12620654'},{key:2,matches:'TextView[id=\"com.dongqiudi.news:id/ads_title\"] +(2) RelativeLayout > ImageView[id=\"com.dongqiudi.news:id/feedback_close\"]',snapshotUrls:'https://i.gkd.li/i/12620788'}]},{key:5,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.dongqiudi.news.MainActivity',matches:'[id=\"com.dongqiudi.news:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13260467'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',exampleUrls:'https://e.gkd.li/87e47cae-fa83-4d25-879c-728a1519ee55',snapshotUrls:'https://i.gkd.li/i/20403710'}]},{key:8,name:'全屏广告-数据页弹窗广告',actionMaximum:1,resetMatch:'app',activityIds:'com.dongqiudi.news.MainActivity',rules:[{key:1,name:'腾讯广告SDK',fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13626900'},{key:2,name:'快手广告磁力智投SDK',fastQuery:true,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13627105'},{key:3,name:'字节广告穿山甲SDK-1',matches:'View[text=\"反馈\"] -2 @View > Image',snapshotUrls:'https://i.gkd.li/i/13627106'},{key:4,name:'字节广告穿山甲SDK-2',matches:'FrameLayout[desc^=\"webview-close\"] > View[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12620588'}]},{key:9,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"notification_button_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/81cea4de-9288-4ec8-97ea-7c4a9b19fd08',snapshotUrls:'https://i.gkd.li/i/19666282'}]}]},{id:'com.citiccard.mobilebank',name:'动卡空间',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[id=\"com.citiccard.mobilebank:id/btn_skip\"]',snapshotUrls:'https://i.gkd.li/i/12684908'},{key:1,matches:'[id=\"com.citiccard.mobilebank:id/jump\"]',snapshotUrls:'https://i.gkd.li/i/13049013'}],order:-10},{key:1,name:'全屏广告-弹窗广告',fastQuery:true,rules:[{activityIds:'com.citiccard.mobilebank.card.activity.BillDetailHomeActivity',matches:'[id=\"com.citiccard.mobilebank:id/iv_bill_home_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13049284'}]},{key:2,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{matches:'[id=\"com.citiccard.mobilebank:id/ll_app_upgrade_content\"] + [id=\"com.citiccard.mobilebank:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13049283'}]}]},{id:'com.mfhd.ygj.p3',name:'动漫共和国',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'app.video.guoguo.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/efd8bd0a-4bd7-40e9-90fe-19d2891caff8',snapshotUrls:'https://i.gkd.li/i/21177378'}]}]},{id:'com.shizi.tool.p3',name:'动漫共和国',groups:[{key:1,name:'开屏广告',matchRoot:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b10db699-ed34-4619-b3ca-5821321f4b58',snapshotUrls:'https://i.gkd.li/i/22136545'},{key:1,fastQuery:true,matches:'[vid=\"ms_skipView\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/64be8cde-d60d-4c71-ba13-4bcb78842931',snapshotUrls:'https://i.gkd.li/i/23925246'}],order:-10},{key:2,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:'com.windmill.sdk.widget.InterstitialView',matches:'[vid=\"tobid_interstitial_skip_ll\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8405053f-ebb9-4915-b8c7-499fcaa953ff',snapshotUrls:'https://i.gkd.li/i/23925245'},{key:1,fastQuery:true,activityIds:'com.beizi.ad.internal.activity.BeiZiInterstitialActivity',matches:'[vid=\"beizi_interstitial_ad_close_container_rl\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4ed42cae-88b2-4429-93ba-237bdf221f80',snapshotUrls:'https://i.gkd.li/i/24541547'},{key:2,fastQuery:true,activityIds:'app.video.guoguo.MainActivity',matches:'[id$=\"ksad_auto_close_btn\"][visibleToUser=true] < LinearLayout < LinearLayout + FrameLayout >6 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/179028f9-ae60-4286-b746-ac2f0bb7aad6',snapshotUrls:'https://i.gkd.li/i/24818734'},{key:3,activityIds:'app.video.guoguo.MainActivity',matches:'[desc=\"不再显示\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25122774'}]}]},{id:'com.dmzj.manhua',name:'动漫之家',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dmzj.manhua.ui.LaunchInterceptorActivity',matches:'[id=\"com.dmzj.manhua:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13542503'}]},{key:2,name:'局部广告-悬浮广告',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dmzj.manhua.ui.home.HomeTabsActivitys',matches:'[id=\"com.dmzj.manhua:id/ivAdClose\"]',snapshotUrls:'https://i.gkd.li/i/13542506'}]}]},{id:'com.dmzjsq.manhua',name:'动漫之家社区',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,fastQuery:true,activityIds:'com.dmzj.manhua.ui.home.HomeTabsActivitys',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12885087','https://i.gkd.li/i/12893731']}]}]},{id:'tw.com.gamer.android.animad',name:'動畫瘋',groups:[{key:1,name:'其他-动画疯年龄限制',desc:'点击同意',rules:[{fastQuery:true,activityIds:'tw.com.gamer.android.animad.VideoActivity',matches:'[id=\"tw.com.gamer.android.animad:id/agree_button\"][text=\"同意\"]',snapshotUrls:'https://i.gkd.li/i/13808757'}]}]},{id:'com.ss.android.ugc.aweme.mobile',name:'抖音',groups:[{key:2,name:'功能类-发现通讯录好友弹窗',desc:'点击[暂时不要]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'@[text=\"暂时不要\"] +2 [text=\"发现好友\"]',exampleUrls:'https://m.gkd.li/57941037/af8632c4-f5fd-403a-aca9-daf92ec6cda1',snapshotUrls:'https://i.gkd.li/i/14467944'}]},{key:3,name:'权限提示-定位权限',desc:'点击[以后再说]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'[text^=\"你还没有开启位置权限\"] +2 * > [text=\"以后再说\"]',exampleUrls:'https://m.gkd.li/57941037/546e45cf-d151-47f4-830e-0f1b7ac21794',snapshotUrls:'https://i.gkd.li/i/14614184'}]}]},{id:'com.ss.android.ugc.aweme',name:'抖音',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,excludeActivityIds:'.search.activity.SearchResultActivity',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/202942ce-259c-4b9d-b3b3-06afbac8145f',snapshotUrls:'https://i.gkd.li/i/13216121',excludeSnapshotUrls:'https://i.gkd.li/i/17811608'}],order:-10},{key:1,name:'局部广告',rules:[{fastQuery:true,activityIds:'.live.LivePlayActivity',matches:'@View[clickable=true][width<80&&height<80] +2 View >4 [text=\"立即查看\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7c97fdc7-9de0-403d-9817-e43da0eb8a31',snapshotUrls:'https://i.gkd.li/i/22743677'}]},{key:3,name:'更新提示-关闭更新弹窗',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:['[text*=\"立即升级\"]','[text=\"以后再说\"]'],snapshotUrls:['https://i.gkd.li/i/12534016','https://i.gkd.li/i/13328599','https://i.gkd.li/i/15359995','https://i.gkd.li/i/20139600']}]},{key:10,name:'权限提示-通知权限',desc:'点击[暂不]/[以后再说]/[禁止]',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:['.main.MainActivity','.profile.ui.UserProfileActivity','.detail.ui.DetailActivity'],rules:[{key:1,matches:['[text^=\"打开私信通知\" || text=\"开启朋友的消息通知\" || text=\"及时获得消息提醒\" || text$=\"评论回复提醒\"][visibleToUser=true]','[text=\"以后再说\" || text=\"暂不开启\" || text=\"禁止\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13669790','https://i.gkd.li/i/18417891','https://i.gkd.li/i/18419574','https://i.gkd.li/i/25024525','https://i.gkd.li/i/25063241']}]},{key:11,name:'功能类-自动勾选原图',desc:'聊天发送图片时自动勾选原图',actionMaximum:1,rules:[{fastQuery:true,activityIds:'.ecommerce.im.choosemedia.ECommerceIMMediaChooseActivity',matches:'@ImageView[clickable=true][visibleToUser=true] + [text=\"原图\"]',snapshotUrls:['https://i.gkd.li/i/18637952','https://i.gkd.li/i/18637948']}]},{key:12,name:'其他-休息提醒',fastQuery:true,rules:[{key:1,matches:'@[text=\"取消\"] + [text*=\"提醒我\"]',snapshotUrls:['https://i.gkd.li/i/13241564','https://i.gkd.li/i/14160675']}]},{key:13,name:'全屏广告-小组件弹窗',desc:'关闭弹窗',actionMaximum:1,resetMatch:'app',rules:[{key:1,name:'商城快捷方式',fastQuery:true,activityIds:['.main.MainActivity','.live.LiveDummyActivity'],matches:'[text=\"添加抖音商城到桌面\"] +2 LinearLayout > [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/13669682','https://i.gkd.li/i/14740312']},{key:2,name:'搜索组件',fastQuery:true,activityIds:'.search.activity.SearchResultActivity',matches:'[text=\"暂不开启\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14325749'},{key:3,name:'火花桌面小组件',fastQuery:true,activityIds:'.main.MainActivity',action:'back',matches:'[text=\"添加火花桌面小组件\"]',exampleUrls:'https://e.gkd.li/c3980f6b-5459-45fe-b317-5bdc561319dc',snapshotUrls:'https://i.gkd.li/i/18009276'}]},{key:15,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:'.main.MainActivity',anyMatches:['FlattenUIText[text=\"不感兴趣\"][visibleToUser=true]','@[text=\"不感兴趣\"] - FrameLayout >2 [text*=\"也关注了\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13800207','https://i.gkd.li/i/13996724','https://i.gkd.li/i/14661956'],excludeSnapshotUrls:'https://i.gkd.li/i/23833191'},{key:1,fastQuery:true,activityIds:['.live.LiveDummyActivity','.commerce.sdk.MallContainerActivity','com.bytedance.android.shopping.store.tabkit.container.TabKitActivity'],matches:['FlattenUIText[text*=\"首页商城\"]','FlattenUIText[text=\"去看看\"]','FlattenUIText[text=\"知道了\"]'],snapshotUrls:['https://i.gkd.li/i/14533732','https://i.gkd.li/i/14969825','https://i.gkd.li/i/14969835']}]},{key:19,name:'权限提示-通讯录权限',desc:'点击[拒绝]',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.main.MainActivity',matches:['[text*=\"通讯录\"]','[text=\"拒绝\"]'],exampleUrls:'https://m.gkd.li/57941037/8f70418d-92f0-4264-83fd-a680350c478e',snapshotUrls:['https://i.gkd.li/i/14735280','https://i.gkd.li/i/16171391']}]},{key:20,name:'青少年模式',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,excludeActivityIds:'.setting.ui.SettingCommonProtocolActivity',matches:['[text*=\"青少年\" || text*=\"未成年\"][text*=\"模式\"]','[text=\"关闭\" || text=\"不再提醒\"]'],snapshotUrls:['https://i.gkd.li/i/14321107','https://i.gkd.li/i/14473006','https://i.gkd.li/i/17726070','https://i.gkd.li/i/18638030'],excludeSnapshotUrls:['https://i.gkd.li/i/14917848','https://i.gkd.li/i/17610958']}]},{key:21,name:'权限提示-定位权限',desc:'直接关闭所有类似形状窗口',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.search.activity.SearchResultActivity',rules:[{key:0,name:'弹窗',action:'back',matches:'[id=\"com.ss.android.ugc.aweme:id/rootview\"]',snapshotUrls:'https://i.gkd.li/i/13755373'},{key:1,name:'顶部横条',activityIds:'.search.activity.SearchResultActivity',matches:'@ImageView[clickable=true] - [text^=\"开启定位\"]',snapshotUrls:'https://i.gkd.li/i/13755718'}]},{key:22,name:'全屏广告-汽水音乐VIP',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['.dsp.MusicLunaActivity','.dsp.playpage.singlepage.subpage.MusicDspSubPlayerActivity'],matches:'ScrollView - @ImageView[index=1][childCount=0][visibleToUser=true][width<100][height<100] <2 View < View < ViewGroup < ViewGroup < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/4c57ee77-2189-4b3b-be0b-430fac8853c2',snapshotUrls:['https://i.gkd.li/i/18100285','https://i.gkd.li/i/18100454','https://i.gkd.li/i/18100477']}]},{key:23,name:'其他-个性化推荐弹窗',desc:'点击[稍后再说]',rules:[{fastQuery:true,activityIds:'.main.MainActivity',matches:['[text*=\"个性化推荐\"][visibleToUser=true]','[text=\"稍后再说\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/987234ad-de0f-40d8-b7dd-d3c600609949',snapshotUrls:'https://i.gkd.li/i/18633134'}]},{key:24,name:'全屏广告-视频推荐广告',desc:'通过返回操作跳过广告',rules:[{key:0,fastQuery:true,activityIds:'.main.MainActivity',matches:'FlattenUIText[text=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/20035670'},{key:1,fastQuery:true,action:'back',activityIds:'.main.MainActivity',matches:['[desc^=\"已选中\"] > [text=\"推荐\"][visibleToUser=true]','([text$=\"广告\"][vid=\"desc\"][visibleToUser=true]) || (ImageView[childCount=0] + [text=\"应用\" || text=\"购物\" || text=\"游戏\"][visibleToUser=true])'],snapshotUrls:['https://i.gkd.li/i/21142063','https://i.gkd.li/i/21142589','https://i.gkd.li/i/21142249','https://i.gkd.li/i/21142871']}]},{key:26,name:'功能类-自动领取别人发的红包',desc:'点击 ①抖音红包 ②弹窗-开红包 ③返回 ④x掉已领完弹窗',fastQuery:true,activityIds:'.fund.redpacket.RedPacketReceiveActivity',rules:[{key:1,name:'①点击[抖音红包]',activityIds:'.main.MainActivity',matches:'FrameLayout[width>10] -2 @LinearLayout >3 [text=\"抖音红包\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6c963e99-1a74-40a5-bf84-a9353c27acdb',snapshotUrls:['https://i.gkd.li/i/22761277','https://i.gkd.li/i/25190308'],excludeSnapshotUrls:'https://i.gkd.li/i/22849224'},{preKeys:[1],key:2,name:'②红包弹窗-点击[开]',matches:'@FrameLayout[clickable=true][width=height] -2 [text=\"大吉大利\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e8b822c1-c289-4802-85a4-994093024b24',snapshotUrls:'https://i.gkd.li/i/22761510'},{preKeys:[2],key:3,name:'③已领-点击[返回]',matches:'[vid=\"iv_back\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f92c1412-8111-40bc-8188-24f2c004c55c',snapshotUrls:'https://i.gkd.li/i/22761554'},{key:4,preKeys:[1,2,3],name:'④已领完弹窗-x掉',matches:'@ImageView[clickable=true] - * > [text=\"红包已领完\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25190699'}]},{key:27,name:'功能类-自动抢口令红包',desc:'点击 ①口令红包 ②弹窗 ③一键发口令',fastQuery:true,rules:[{key:1,name:'①点进口令红包',activityIds:['.main.MainActivity','.fund.redpacket.RedPacketReceiveActivity'],matches:'@ImageView + [text=\"抖音红包「口令」\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25121991'},{key:2,name:'②弹窗-点击红包',activityIds:'.fund.redpacket.RedPacketReceiveActivity',matches:'ImageView < @[clickable=true] -2 [text=\"发口令开红包\"]',snapshotUrls:'https://i.gkd.li/i/25122030'},{key:3,name:'③一键发口令',activityIds:'.fund.redpacket.RedPacketReceiveActivity',matches:'[text=\"发口令开红包\"] + LinearLayout >2 [text=\"一键发送到聊天\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/25122077','https://i.gkd.li/i/25122095']}]},{key:28,name:'权限提示-相机权限',desc:'点击[以后再说]',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.shortvideo.ui.scan.ScanNewActivity',matches:['[text*=\"相机权限\"]','[text=\"以后再说\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/25183382'}]}]},{id:'com.ss.android.ugc.aweme.lite',name:'抖音极速版',groups:[{key:2,name:'功能类-功能体验邀请弹窗',rules:[{key:0,name:'[首页商城]体验邀请弹窗',fastQuery:true,activityIds:'com.ss.android.ugc.aweme.commerce.sdk.MallContainerActivity',matches:['UIText[text^=\"立即体验\"]','FlattenUIText[text=\"不再提示\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/13684791'}]},{key:8,name:'全屏广告-朋友推荐弹窗',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'[text=\"朋友推荐\"] +2 [id=\"com.ss.android.ugc.aweme.lite:id/close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13650523'}]},{key:9,name:'权限提示-通知权限',desc:'点击暂不开启',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'[text=\"及时获得消息提醒\"] +2 [text=\"暂不开启\"]',snapshotUrls:'https://i.gkd.li/i/13888485'}]},{key:10,name:'功能类-选择图片时自动勾选原图',rules:[{fastQuery:true,activityIds:'com.ss.android.ugc.aweme.im.sdk.media.choose.MediaChooseActivity',matches:'[text=\"原图\"][desc^=\"未选中\"]',snapshotUrls:['https://i.gkd.li/i/13946092','https://i.gkd.li/i/13946033']}]},{key:11,name:'全屏广告',rules:[{key:0,activityIds:'com.ss.android.ugc.aweme.live.LiveDummyHybridTransparentActivity',matches:'@Image[clickable=true][text!=null][width<100 && height<100] +4 View >2 [text=\"同意协议并查看额度\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23558501'},{key:1,fastQuery:true,activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'@UIView[text=\"不感兴趣\"][clickable=true] +2 FlattenUIText[text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/24123937'}]},{key:12,name:'全屏广告-添加桌面小组件',desc:'x掉',rules:[{fastQuery:true,activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'@ImageView[clickable=true] - [text$=\"桌面小组件\"]',snapshotUrls:'https://i.gkd.li/i/25208769'}]}]},{id:'com.ss.android.yumme.video',name:'抖音精选',groups:[{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:['[text=\"立即升级\"]','[text=\"以后再说\"]'],snapshotUrls:['https://i.gkd.li/i/12534016','https://i.gkd.li/i/13328599']}]},{key:3,name:'评价提示',fastQuery:true,actionMaximum:1,matchTime:10000,rules:[{action:'back',activityIds:'com.ss.android.ugc.aweme.main.MainActivity',matches:'TextView[text=\"去商店评分\"]',snapshotUrls:'https://i.gkd.li/i/15858132'}]}]},{id:'air.tv.douyu.android',name:'斗鱼',groups:[{key:3,name:'局部广告-直播间广告',activityIds:['tv.douyu.view.activity.PlayerActivity','com.douyu.module.player.p.rambobase.RamboPlayerActivity'],rules:[{key:5,name:'右下方悬浮广告-1',matches:'ViewGroup[childCount=8] > ViewGroup[index=5] >4 RelativeLayout[visibleToUser=true] > ImageView[clickable=true][index=1]',snapshotUrls:'https://i.gkd.li/i/13948990',excludeSnapshotUrls:'https://i.gkd.li/i/14310474'},{key:6,name:'视频下方横幅广告-1',matches:'[id=\"android:id/content\"] > RelativeLayout >2 FrameLayout > ViewGroup[childCount=4] > ImageView[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)]',snapshotUrls:'https://i.gkd.li/i/14667860'},{key:7,name:'右下方悬浮广告-2',fastQuery:true,matches:'@ImageView[visibleToUser=true][childCount=0] -(1,2) * >3 [text=\"推荐\"]',snapshotUrls:['https://i.gkd.li/i/14668232','https://i.gkd.li/i/17978451']},{key:8,name:'右下方悬浮广告-3',fastQuery:true,matches:'@ImageView[clickable=true][visibleToUser=true] +(1,2) ViewGroup >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/cfd83f2b-580d-4659-8966-eb5f4fe21ecd',snapshotUrls:['https://i.gkd.li/i/16939767','https://i.gkd.li/i/24661966']},{key:9,name:'右下方悬浮广告-4',fastQuery:true,matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0][index=1] <2 ViewGroup[childCount=2] < FrameLayout < FrameLayout < [vid=\"big_live_actions_layout\"]',exampleUrls:'https://e.gkd.li/cfd83f2b-580d-4659-8966-eb5f4fe21ecd',snapshotUrls:'https://i.gkd.li/i/16939767'},{key:10,name:'视频下方横幅广告-2',fastQuery:true,matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] - FrameLayout >2 [text=\"去看看\" || text^=\"立即\"]',exampleUrls:'https://e.gkd.li/942ee7a5-43e1-4709-b967-7af1a6900e4c',snapshotUrls:['https://i.gkd.li/i/14668232','https://i.gkd.li/i/18032754','https://i.gkd.li/i/24661966']}]}]},{id:'com.douban.frodo',name:'豆瓣',groups:[{key:-1,name:'开屏广告',matchTime:10000,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/15981630'},{key:1,fastQuery:true,position:{left:'width * 0.875',top:'width * 0.17'},matches:'[vid=\"ad_parent\"][visibleToUser=true][width>=1200 && width!=1224]',snapshotUrls:['https://i.gkd.li/i/13601755','https://i.gkd.li/i/16054268','https://i.gkd.li/i/23324118','https://i.gkd.li/i/23324139','https://i.gkd.li/i/23652259','https://i.gkd.li/i/24191638','https://i.gkd.li/i/24362806'],excludeSnapshotUrls:['https://i.gkd.li/i/23283060','https://i.gkd.li/i/23382528','https://i.gkd.li/i/23982586']},{key:2,fastQuery:true,position:{left:'width * 0.875',top:'width * 0.137'},matches:'[vid=\"ad_parent\"][visibleToUser=true][width<1200 || width=1224]',snapshotUrls:['https://i.gkd.li/i/13575257','https://i.gkd.li/i/13575547','https://i.gkd.li/i/18423724','https://i.gkd.li/i/23982586']},{key:3,fastQuery:true,excludeMatches:'[text=\"去绑定邮箱\"][visibleToUser=true]',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17687115',excludeSnapshotUrls:'https://i.gkd.li/i/23283375'},{key:4,fastQuery:true,position:{left:'width * 0.868',top:'width * 0.09'},matches:'[vid=\"ad_parent\"][visibleToUser=true][width=1216]',snapshotUrls:'https://i.gkd.li/i/23283060'},{key:5,fastQuery:true,position:{left:'width * 0.875',top:'width * 0.125'},matches:'[vid=\"ad_parent\"][visibleToUser=true][width=1440]',snapshotUrls:'https://i.gkd.li/i/23382528'}],order:-10},{key:3,name:'分段广告-信息流广告',desc:'点击关闭-点击不感兴趣',fastQuery:true,rules:[{key:1,activityIds:['.activity.SplashActivity','.subject.structure.activity.MovieActivity','.group.activity.GroupTopicActivity','.fangorns.topic.TopicsActivity','.subject.struct2.MovieActivity2'],matches:'[vid=\"ad_header_new\"] > [vid=\"menu_item\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/18424402','https://i.gkd.li/i/18424418','https://i.gkd.li/i/18424924','https://i.gkd.li/i/19615325','https://i.gkd.li/i/23982599']},{key:2,activityIds:['.group.activity.GroupDetailActivity','.group.activity.GroupTopicActivity'],matches:'[vid=\"ad_not_interest\" || vid=\"ad_tag\" || vid=\"group_ad_not_interest\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/18424568','https://i.gkd.li/i/18424574','https://i.gkd.li/i/18424681','https://i.gkd.li/i/18424818'],excludeSnapshotUrls:'https://i.gkd.li/i/18422533'},{key:3,actionMaximum:1,activityIds:'.group.activity.GroupTopicActivity',matches:'@Image[childCount=0][visibleToUser=true][text=\"\"] < View[childCount=1] -2 View >2 [childCount=0][text=\"广告\"] <<n [vid=\"structure_header_container\"]',snapshotUrls:'https://i.gkd.li/i/18424747'},{key:4,activityIds:'.group.activity.GroupTopicActivity',matches:'@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] -2 FrameLayout >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/11d3ea75-c640-4b91-942e-3bf83b2e5f5e',snapshotUrls:'https://i.gkd.li/i/19621152'},{preKeys:[1,2,3,4],activityIds:['.activity.SplashActivity','.subject.structure.activity.MovieActivity','.group.activity.GroupDetailActivity','.group.activity.GroupTopicActivity','.fangorns.topic.TopicsActivity'],matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/18424404','https://i.gkd.li/i/18424419','https://i.gkd.li/i/18424568','https://i.gkd.li/i/18424674','https://i.gkd.li/i/18424711','https://i.gkd.li/i/19615333','https://i.gkd.li/i/19621163']}]},{key:5,name:'评价提示-关闭评分反馈弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.SplashActivity',matches:['[text^=\"喜欢豆瓣吗\"][visibleToUser=true]','[text=\"下次再说\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/18424257'}]},{key:8,name:'局部广告-卡片广告',desc:'点击关闭',actionMaximum:1,rules:[{key:0,fastQuery:true,activityIds:'.group.activity.GroupTopicActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/18424415'},{key:1,fastQuery:true,activityIds:'.group.activity.GroupTopicActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout +2 FrameLayout >2 [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"]',exampleUrls:'https://e.gkd.li/735decb0-7f08-4c7d-8199-a38faf213f77',snapshotUrls:'https://i.gkd.li/i/18424859'},{key:2,fastQuery:true,activityIds:'.activity.SplashActivity',matches:'[vid=\"venue_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/86f2589d-87eb-4b9a-83aa-4248b905f7b2',snapshotUrls:'https://i.gkd.li/i/18717693'}]},{key:10,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.douban.frodo.subject.structure.activity.MovieActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13195565'},{key:1,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13328126'},{key:2,fastQuery:true,matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/f8b1e031-3ec1-422c-9214-8350195642cd',snapshotUrls:'https://i.gkd.li/i/13328126'},{key:3,fastQuery:true,activityIds:'.subject.structure.activity.MovieActivity',matches:['[text=\"广告\"][visibleToUser=true]','[vid=\"close\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/208939d0-9d7f-4a44-8e7d-5070478c15df',snapshotUrls:'https://i.gkd.li/i/18631520'},{key:4,fastQuery:true,activityIds:'.subject.structure.activity.MovieActivity',matches:['[text=\"你发现了一枚徽章\"][visibleToUser=true]','[vid=\"confirmLayout\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ca74a922-fb47-4fc8-8111-b6a66c2465ff',snapshotUrls:'https://i.gkd.li/i/18717771'}]},{key:11,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['.activity.BetaApkDialogActivity','.activity.SplashActivity'],matches:['[text=\"新版试用邀请\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13228832','https://i.gkd.li/i/13659160']}]},{key:13,name:'其他-标记看过的影视弹窗',desc:'点击[取消]',rules:[{fastQuery:true,activityIds:'.subject.structure.activity.MovieActivity',matches:['[text=\"标记看过的影视\"][visibleToUser=true]','[vid=\"cancelLayout\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/8067419c-a902-4750-9e1e-655bfc5c7342',snapshotUrls:'https://i.gkd.li/i/18717798'}]}]},{id:'com.cf.dubaji',name:'毒霸姬',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.module.main.MainActivity',matches:'[id=\"com.cf.dubaji:id/dlg_action_positive\"][text=\"立即更新\"]',action:'back',snapshotUrls:'https://i.gkd.li/i/13198107'}]}]},{id:'com.duitang.main',name:'堆糖',groups:[{key:2,name:'局部广告-信息流广告',fastQuery:true,rules:[{key:0,activityIds:['com.duitang.main.business.','com.duitang.main.activity.'],matches:'[vid=\"adOptionEntry\" || vid=\"adClose\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14232228','https://i.gkd.li/i/14232332','https://i.gkd.li/i/14232347','https://i.gkd.li/i/14232348','https://i.gkd.li/i/14232368','https://i.gkd.li/i/14232218','https://i.gkd.li/i/14232352']}]},{key:3,name:'评价提示',desc:'点击[下次再说]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.business.main.NAMainActivity',matches:'[vid=\"scoreDuitangCancel\"]',snapshotUrls:'https://i.gkd.li/i/14273094'}]},{key:4,name:'全屏广告-图片页弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.duitang.main.business.display.ImageActivity','com.duitang.main.business.main.NAMainActivity'],matches:'[id=\"com.duitang.main:id/popUpbtnClose\"]',snapshotUrls:['https://i.gkd.li/i/13997011','https://i.gkd.li/i/14332109']}]},{key:5,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.business.main.NAMainActivity',matches:'@[vid=\"dialogNegative\"] +2 [text=\"打开通知\"]',snapshotUrls:'https://i.gkd.li/i/14273121'}]}]},{id:'com.wm.dmall',name:'多点',groups:[{key:1,name:'全屏广告-首页-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'[id=\"com.wm.dmall:id/advert_close\"]',exampleUrls:'https://e.gkd.li/60b65af4-7efa-4e82-b294-d96d5b426953',snapshotUrls:'https://i.gkd.li/i/13197627'},{key:2,fastQuery:true,matches:['[id=\"com.wm.dmall:id/coupon_activity\"][text=\"去使用\"]','[id=\"com.wm.dmall:id/iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/13331283'}]},{key:2,name:'局部广告-首页-浮窗广告',rules:[{fastQuery:true,activityIds:'com.wm.dmall.MainActivity',anyMatches:['@[id=\"com.wm.dmall:id/iv_close\"] + [id=\"com.wm.dmall:id/view_float\"]','[id=\"com.wm.dmall:id/close_iV\"]'],snapshotUrls:'https://i.gkd.li/i/13197634',excludeSnapshotUrls:'https://i.gkd.li/i/13246242'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:['[id=\"com.wm.dmall:id/update_confirm_btn\"]','[id=\"com.wm.dmall:id/close_btn\"]'],snapshotUrls:'https://i.gkd.li/i/13234668'}]}]},{id:'com.duokan.reader',name:'多看',groups:[{key:2,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.duokan.reader.DkMainActivity',matches:'[id=\"com.duokan.reader:id/store_feed_layer_close\"]',snapshotUrls:'https://i.gkd.li/i/13248773'}]},{key:3,name:'全屏广告-小说推荐弹窗',rules:[{key:1,name:'退出阅读时的推荐弹窗',fastQuery:true,activityIds:'com.duokan.reader.DkMainActivity',matches:'[id=\"com.duokan.reader:id/reading_stop_read_recommend_stop\"]',snapshotUrls:'https://i.gkd.li/i/13413412'}]},{key:4,name:'局部广告-小说页广告',desc:'小说页面下方出现的条形广告',rules:[{fastQuery:true,activityIds:'com.duokan.reader.DkMainActivity',matches:'@ImageView < FrameLayout[id=\"com.duokan.reader:id/reading__app_ad_view__close\"]',snapshotUrls:'https://i.gkd.li/i/13497902'}]},{key:5,name:'分段广告-小说页全屏卡片广告',desc:'点击关闭-点击确定按钮',fastQuery:true,activityIds:'com.duokan.reader.DkMainActivity',rules:[{key:0,matches:'@TextView[id=\"com.duokan.reader:id/reading__app_ad_view__close\"][text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13498048'},{preKeys:[0],key:1,matches:'@TextView[id=\"com.duokan.reader:id/ad__feedback_close_dialog_button\"][text=\"知道了\"]',snapshotUrls:'https://i.gkd.li/i/13497990'}]},{key:6,name:'更新提示',desc:'点击以后再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.DkMainActivity',matches:'[id=\"com.duokan.reader:id/general__common_dialog_view__button_frame\"] >2 [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/14007573'}]}]},{id:'com.tnscreen.main',name:'多屏互动',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:2,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,excludeMatches:['[!(vid=\"welcome_ad_view_skip\")] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]','@[desc=\"close_button\"] - [text=\"|\"][visibleToUser=true]'],matches:'LinearLayout[childCount>0] + LinearLayout[vid=\"welcome_ad_view_skip\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d14f7876-892f-4a25-aa1f-0f7500be52cb',snapshotUrls:'https://i.gkd.li/i/18368988',excludeSnapshotUrls:['https://i.gkd.li/i/18370963','https://i.gkd.li/i/21383354','https://i.gkd.li/i/23921822','https://i.gkd.li/i/23922767']},{key:1,fastQuery:true,matches:'[!(vid=\"welcome_ad_view_skip\")] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/243c2920-9761-41c6-a142-9f6f53ab78fe',snapshotUrls:['https://i.gkd.li/i/21383354','https://i.gkd.li/i/23921822']},{key:2,fastQuery:true,matches:'@[desc=\"close_button\"] - [text=\"|\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23922767'}],order:-10},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',exampleUrls:'https://e.gkd.li/be4513a1-fdf8-4889-a65d-55e2e0664afc',snapshotUrls:'https://i.gkd.li/i/18371332'},{key:1,fastQuery:true,activityIds:'com.tcl.tcast.snapshot.view.ShotPicActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/93834d55-142f-4371-ae5b-db65b168db7f',snapshotUrls:'https://i.gkd.li/i/20123436'}]}]},{id:'com.example.ourom',name:'多系统工具箱',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13625406'}]}]},{id:'me.ele',name:'饿了么',groups:[{key:1,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.afollestad.materialdialogs.MaterialDialog','.application.ui.Launcher.LauncherActivity'],matches:['[text*=\"更新应用版本\"]','[text=\"取消\"]'],exampleUrls:'https://e.gkd.li/7a0ade81-d2f3-4174-ba6e-9976b8e7ecf5',snapshotUrls:['https://i.gkd.li/i/12650280','https://i.gkd.li/i/13206819','https://i.gkd.li/i/18096620']}]},{key:2,name:'全屏广告-红包弹窗',rules:[{key:0,name:'红包弹窗1',fastQuery:true,activityIds:['me.ele.component.pops2.Pops2MistDialog','me.ele.component.webcontainer.view.AppUCWebActivity','me.ele.application.ui.Launcher.LauncherActivity','me.ele.application.ui.GeneralSettingsActivity','me.ele.shopdetailv2.ShopDetailV2Activity','me.ele.foodchannel.page.WMChannelNativeActivity'],anyMatches:['@ImageView[childCount=0][clickable=true][index=parent.childCount.minus(1)] - ViewGroup[childCount=2] < ViewGroup[childCount=2] < [vid=\"id_magex_mistview\"]','@ImageView[childCount=0][clickable=true][index=parent.childCount.minus(1)] - ViewGroup[childCount=2] < [vid=\"id_magex_mistview\"]'],snapshotUrls:['https://i.gkd.li/i/12650238','https://i.gkd.li/i/13294893','https://i.gkd.li/i/13331361','https://i.gkd.li/i/13362974','https://i.gkd.li/i/13376008','https://i.gkd.li/i/13710581','https://i.gkd.li/i/15148480'],excludeSnapshotUrls:'https://i.gkd.li/i/17858192'},{key:1,name:'红包弹窗2',activityIds:'me.ele.newretail.pack.ui.activity.PackActivity',matches:'[desc$=\"今日红包\"] +n [desc$=\"关闭\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12650713'},{key:2,name:'红包弹窗3',fastQuery:true,matches:'@ViewGroup[index=2][clickable=true][childCount=0][index=parent.childCount.minus(1)] <3 ViewGroup[childCount=3] < ViewGroup[childCount=1] < ViewGroup[vid=\"id_magex_mist_view\"]',exampleUrls:'https://e.gkd.li/a933d63b-14b2-4c91-bdd9-0ba578da6bff',snapshotUrls:'https://i.gkd.li/i/14472929',excludeSnapshotUrls:['https://i.gkd.li/i/16346727','https://i.gkd.li/i/17858192']}]},{key:4,name:'全屏广告-活动弹窗',fastQuery:true,rules:[{key:1,activityIds:['me.ele.component.pops2.Pops2MistDialog','me.ele.newbooking.checkout.entrypoint.WMCheckoutActivity','me.ele.application.ui.Launcher.LauncherActivity','me.ele.android.emagex.container.EMagexActivity'],matches:'@ImageView[clickable=true] <2 [vid=\"id_magex_mistview\"][childCount=2]',snapshotUrls:['https://i.gkd.li/i/12726709','https://i.gkd.li/i/13476719','https://i.gkd.li/i/13523508','https://i.gkd.li/i/13685037','https://i.gkd.li/i/14050401']},{key:2,activityIds:'me.ele.application.ui.Launcher.LauncherActivity',matches:'[id=\"me.ele:id/fl_render_e_shop\"] + FrameLayout >n ViewGroup[childCount=6] > View[index=5]',snapshotUrls:['https://i.gkd.li/i/13476611','https://i.gkd.li/i/13523541']},{key:3,activityIds:'me.ele.application.ui.Launcher.LauncherActivity',matches:'ViewGroup[clickable=true] - TextView[text=\"放弃\"]',snapshotUrls:['https://i.gkd.li/i/13710574','https://i.gkd.li/i/13710591']},{key:4,activityIds:'me.ele.pha.shell.ui.ElePhaActivity',matches:'WebView >4 View[childCount=2] > @View[clickable=true] > Image[childCount=0] <<n [vid=\"pha_view_pager_root_view\"]',snapshotUrls:'https://i.gkd.li/i/15443153'}]},{key:5,name:'全屏广告-付款后弹窗广告',rules:[{fastQuery:true,activityIds:'me.ele.component.pops2.TransparentAppWebActivity',matches:'View[childCount=2] > View[childCount=2] > @Button[text=\"关闭\"][clickable=true] <<n [id=\"me.ele:id/inside_web_view\"]',snapshotUrls:'https://i.gkd.li/i/13205301'}]},{key:6,name:'全屏广告-吃货卡续费弹窗',rules:[{fastQuery:true,activityIds:'me.ele.component.webcontainer.view.AppUCWebActivity',matches:'@View[clickable=true] + View >2 [visibleToUser=true][text*=\"立即续费\"] <<n [id=\"me.ele:id/inside_web_view\"]',snapshotUrls:'https://i.gkd.li/i/13295007'}]},{key:7,name:'局部广告-首页底部浮窗广告',rules:[{key:0,fastQuery:true,activityIds:'me.ele.application.ui.Launcher.LauncherActivity',matches:'@ViewGroup[childCount=0][clickable=true][visibleToUser=true] - ViewGroup[childCount=3] <<n [id=\"me.ele:id/id_magex_mist_view\"]',snapshotUrls:'https://i.gkd.li/i/13710588',excludeSnapshotUrls:'https://i.gkd.li/i/16326917'},{key:1,fastQuery:true,activityIds:'.application.ui.Launcher.LauncherActivity',matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f706b801-44ee-4009-8082-75c9d4139065',snapshotUrls:'https://i.gkd.li/i/17321305'}]},{key:8,name:'权限提示-定位权限',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,activityIds:'me.ele.application.ui.Launcher.LauncherActivity',rules:[{key:0,matches:'[text=\"去开启\"] + [id=\"me.ele:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13710588'},{key:1,matches:'[text=\"去开启\"] + [id=\"me.ele:id/close_tips\"]',snapshotUrls:'https://i.gkd.li/i/13710585'}]},{key:9,name:'通知提示-获取订单信息通知',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.message.ui.PushMessageGuideActivity',matches:'@View[visibleToUser=true] < * <2 [id=\"me.ele:id/frame_bottom_bg\"]',snapshotUrls:'https://i.gkd.li/i/13931205'}]},{key:10,name:'评价提示-底部调研邀请卡片',desc:'点击关闭',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'me.ele.foodchannel.page.WMChannelNativeActivity',matches:['[text*=\"小调研\"]','[vid=\"iv_cancel\"][visibleToUser=true]'],exampleUrls:'https://m.gkd.li/57941037/350d8f4d-8ab0-4572-8ff0-450ab4729d53',snapshotUrls:'https://i.gkd.li/i/14630370'}]}]},{id:'cn.cty.hbzw',name:'鄂汇办',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{position:{left:'width * 0.8676',top:'width * -1.9094'},fastQuery:true,matches:'[vid=\"iv_ad_image\"]',exampleUrls:'https://m.gkd.li/57941037/9cf76d31-3b11-45dc-be9c-c2e9cbf26c23',snapshotUrls:'https://i.gkd.li/i/14519367'}],order:-10}]},{id:'com.duoduo.child.story',name:'儿歌多多',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.duoduo.child.story.ui.activity.PlayActivity',matches:'[vid=\"iv_close_banner\"]',exampleUrls:'https://m.gkd.li/57941037/0a4febc1-9a34-41cb-bbca-63c6723fa228',snapshotUrls:'https://i.gkd.li/i/15531352'}]}]},{id:'com.diershoubing.erbing',name:'二柄',groups:[{key:6,name:'分段广告',fastQuery:true,activityIds:'.activity.MainReActivity',rules:[{key:1,matches:'[text=\"广告\"]',exampleUrls:'https://e.gkd.li/921d559f-6535-4d54-9bb2-8bbc82a6f2e1',snapshotUrls:'https://i.gkd.li/i/13868396'},{preKeys:[1],key:2,matches:'@LinearLayout > [text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/e6818e93-3fab-4afa-95b9-0ba38ea7f2db',snapshotUrls:'https://i.gkd.li/i/13868401'}]}]},{id:'com.cs_credit_bank',name:'发现精彩',groups:[{key:1,name:'全屏广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mapass.example.activity.MainActivity_',matches:'@[vid=\"iv_close\"] + [vid=\"iv_advert\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0d91563d-057b-47d4-9ce5-8e9a5fc2b9c9',snapshotUrls:'https://i.gkd.li/i/23141403'}]}]},{id:'com.dragon.read',name:'番茄免费小说',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,actionDelay:1000,matches:'@[desc=\"跳过广告\"][clickable=true] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e36d701f-bcee-48d5-99da-1c5301101d9e',snapshotUrls:'https://i.gkd.li/i/23282793'}],order:-10},{key:0,name:'局部广告-阅读页面广告',activityIds:['com.dragon.read.ad.banner.ui','com.dragon.read.reader.ReaderActivity','com.dragon.read.reader.ui.ReaderActivity'],rules:[{key:1,fastQuery:true,matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] - LinearLayout >(2,3) [text=\"广告\" || text=\"立享优惠\" || text*=\"查看\" || text^=\"立即\" || text$=\"参与\"][text.length<5]',snapshotUrls:['https://i.gkd.li/i/12908734','https://i.gkd.li/i/14540281','https://i.gkd.li/i/18138903','https://i.gkd.li/i/21623147','https://i.gkd.li/i/25174203']},{key:2,fastQuery:true,activityIds:'.reader.ui.ReaderActivity',matches:'[id=\"com.dragon.read:id/close_button\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3de0d5d9-0c02-4fe7-b5e8-b9fdb6688f8e',snapshotUrls:'https://i.gkd.li/i/13520314'},{key:3,fastQuery:true,matches:'[text=\"关闭此条广告\"]',exampleUrls:'https://m.gkd.li/57941037/cf9d0574-dc89-4f03-ba01-eb9bcc97925f',snapshotUrls:'https://i.gkd.li/i/14540281'},{key:4,matches:'HorizontalAndVerticalScrollView > FrameLayout[childCount>=13] >(7,8,9) @FrameLayout[index=2][clickable=true] > ImageView',exampleUrls:'https://m.gkd.li/57941037/0129e5a7-ead1-4b92-a008-708632e5a927',snapshotUrls:['https://i.gkd.li/i/14548657','https://i.gkd.li/i/14622531','https://i.gkd.li/i/14810480']},{key:5,name:'原著改编广告-点击[x]',fastQuery:true,matches:'@ImageView[clickable=true] +n ViewGroup[visibleToUser=true] > [text=\"原著改编\"]',exampleUrls:'https://e.gkd.li/f838939f-d42d-4bf8-9a68-59f4d4ec0d9b',snapshotUrls:'https://i.gkd.li/i/24706223'}]},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.update','.pages.main.MainFragmentActivity'],matches:'@[text=\"以后再说\"] + [text=\"优先体验\"]',snapshotUrls:['https://i.gkd.li/i/12716477','https://i.gkd.li/i/18175292']}]},{key:2,name:'局部广告-首页右侧悬浮广告',rules:[{fastQuery:true,activityIds:['com.dragon.read.pages.main.MainFragmentActivity','com.dragon.read.ad.openingscreenad.OpeningScreenADActivity'],matches:'@ImageView[clickable=true][childCount=0][index=0][visibleToUser=true] < [childCount=3] < RelativeLayout < FrameLayout <2 [id=\"android:id/content\"][childCount=3]',snapshotUrls:['https://i.gkd.li/i/12716506','https://i.gkd.li/i/13318796']}]},{key:3,name:'全屏广告',rules:[{key:0,name:'电商惊喜券',activityIds:'com.dragon.read.pages.main.MainFragmentActivity',fastQuery:true,matches:'@LynxFlattenUI[id=null][text=\"\"][clickable=true] - [text=\"去逛商城\"] -4 [text$=\"电商惊喜券\"]',snapshotUrls:'https://i.gkd.li/i/12910159'},{key:1,name:'爆款好物一分购',fastQuery:true,activityIds:'com.dragon.read.pages.main.MainFragmentActivity',matches:'@ImageView[clickable=true] <2 LinearLayout[childCount=2] < [id=\"android:id/content\"][childCount=1]',snapshotUrls:'https://i.gkd.li/i/12878266'},{key:2,name:'抽奖赢好礼',fastQuery:true,activityIds:'com.dragon.read.pages.main.MainFragmentActivity',matches:'@LynxFlattenUI[clickable=true] - [text=\"前往抽奖\"]',exampleUrls:'https://m.gkd.li/57941037/77c4098a-818f-4d0f-8492-e98818d0da27',snapshotUrls:'https://i.gkd.li/i/14292475'},{key:3,name:'签到弹窗',fastQuery:true,activityIds:'com.dragon.read.pages.main.MainFragmentActivity',matches:'@LynxFlattenUI[clickable=true][visibleToUser=true][text=\"\"] -27 FlattenUIText[text^=\"立即签到\"]',exampleUrls:'https://m.gkd.li/57941037/96afbb4f-afd5-4f64-948d-15fc7bb14075',snapshotUrls:'https://i.gkd.li/i/15223416'},{key:4,fastQuery:true,activityIds:'.reader.ui.ReaderActivity',matches:'AwemeLynxVideoUI +n FlattenUIText[text=\"关闭\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6d33c17b-85de-4977-aa7f-b45e2a917a12',snapshotUrls:'https://i.gkd.li/i/23549149'},{key:5,fastQuery:true,activityIds:'com.dragon.read.reader.ui.ReaderActivity',matches:'TextView[text=\"广告\"] +2 Button[id=\"com.dragon.read:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13191156'},{key:6,fastQuery:true,activityIds:'com.dragon.read.reader.ui.ReaderActivity',matches:'@ImageView[clickable=true][visibleToUser=true] +5 [text=\"领取限时福利\"]',snapshotUrls:['https://i.gkd.li/i/14430326','https://i.gkd.li/i/14969861']},{key:7,fastQuery:true,position:{left:'width * 0.9123',top:'width * 0.067'},activityIds:'.reader.ui.ReaderActivity',matches:'View[id=null][text=null][desc=null][childCount=0] < [id=\"com.dragon.read.awemevideo:id/fullvideo_videoview\"][childCount=1][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c29c5647-e2ee-460f-87aa-8717779645ec',snapshotUrls:'https://i.gkd.li/i/23621776'}]},{key:4,name:'全屏广告-阅读页面关注作者弹窗',fastQuery:true,rules:[{key:0,activityIds:'com.dragon.read.reader.ui.ReaderActivity',matches:'@ImageView +2 FrameLayout >3 [text=\"关注\"]',snapshotUrls:'https://i.gkd.li/i/13399505'}]},{key:5,name:'分段广告-阅读页面广告',fastQuery:true,activityIds:'com.dragon.read.reader.ui.ReaderActivity',rules:[{key:0,name:'点击[反馈]按钮',actionCd:3500,actionDelay:200,matches:'[text=\"反馈\" || desc=\"反馈\"][visibleToUser=true][name$=\"UIText\" || name$=\"ViewGroup\"]',exampleUrls:['https://e.gkd.li/3837a70f-30e3-42d1-9354-696dcda598b7'],snapshotUrls:['https://i.gkd.li/i/13520160','https://i.gkd.li/i/13816453','https://i.gkd.li/i/24128141']},{key:1,matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true] < FrameLayout - LinearLayout >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/c172db67-a489-488b-a5f5-35aa9657c444',snapshotUrls:'https://i.gkd.li/i/18724040'},{key:2,name:'底部横幅广告-点击[x]',matches:'ViewGroup[childCount>4] > @ViewGroup[childCount=1][clickable=true][focusable=true][visibleToUser=true][width<50 && height<50] +n [desc!=null]',exampleUrls:'https://e.gkd.li/ab2021a9-8e5c-4d2a-8df1-8c6aff4e38f6',snapshotUrls:['https://i.gkd.li/i/24189866','https://i.gkd.li/i/24189900','https://i.gkd.li/i/24189911','https://i.gkd.li/i/24189915','https://i.gkd.li/i/24205796','https://i.gkd.li/i/24205810']},{preKeys:[0,1,2],name:'点击[不感兴趣]/[关闭此广告]',matches:'[text=\"不感兴趣\" || text=\"关闭此广告\"]',exampleUrls:'https://e.gkd.li/e04bcb90-ad61-43d9-97e9-b4f6e3873320',snapshotUrls:['https://i.gkd.li/i/13520219','https://i.gkd.li/i/13674550','https://i.gkd.li/i/13816454','https://i.gkd.li/i/14913207','https://i.gkd.li/i/18724041','https://i.gkd.li/i/24128392','https://i.gkd.li/i/24189605']}]},{key:6,name:'评价提示-请求好评弹窗',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.pages.main.MainFragmentActivity',matches:'@ImageView[clickable=true] +3 * > [text=\"五星好评\"]',snapshotUrls:'https://i.gkd.li/i/14395093'}]},{key:10,name:'权限提示-通知权限',desc:'点击\"取消\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.widget.ConfirmDialogBuilder','.pages.main.MainFragmentActivity'],matches:['[text=\"开启推送提醒\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/12716592','https://i.gkd.li/i/21589667']}]},{key:16,name:'功能类-观看广告自动领取奖励',rules:[{key:0,fastQuery:true,actionDelay:10000,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'@ImageView[width<40 && height<40] <n ViewGroup <(4,5) ViewGroup < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/c3e53a6c-cc60-413d-8464-2b4a1259c038',snapshotUrls:['https://i.gkd.li/i/24689154','https://i.gkd.li/i/24688948','https://i.gkd.li/i/24689141','https://i.gkd.li/i/24689202']},{preKeys:[0],fastQuery:true,actionDelay:500,position:{left:'width * 0.5',bottom:'width * 0.3182'},activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'ImageView[childCount=0] < @ViewGroup[childCount=1][width>600 && height>600] <3 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/f2859af8-7ca7-40d3-9737-7be8b0200bae',snapshotUrls:['https://i.gkd.li/i/24689140','https://i.gkd.li/i/24689143','https://i.gkd.li/i/24689393']},{key:99,fastQuery:true,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'@[clickable=true][width<120 && height<120] + LinearLayout > [text=\"当前无新视频\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24689246'}]},{key:17,name:'评价提示-点评此书弹窗',desc:'点击[取消]',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.reader.ui.ReaderActivity',matches:['[text=\"点评此书\"]','[text=\"取消\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/21589381'}]}]},{id:'com.xs.fm.lite',name:'番茄音乐（原畅听音乐）',groups:[{key:1,name:'全屏广告',rules:[{key:0,fastQuery:true,activityIds:['com.dragon.read.pages.main.MainFragmentActivity','com.bytedance.polaris.impl.view.BulletSingleContainerActivity'],matches:'FlattenUIImage[clickable=true] -(1,2) FlattenUIText[text=\"开心收下\" || text=\"前往领取\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/25246321','https://i.gkd.li/i/25246625','https://i.gkd.li/i/25245765']},{key:1,fastQuery:true,activityIds:'com.dragon.read.pages.main.MainFragmentActivity',matches:'@ImageView[clickable=true] - [text=\"添加番茄音乐组件\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25246270'},{key:2,fastQuery:true,activityIds:'com.dragon.read.pages.main.MainFragmentActivity',matches:'@ImageView[clickable=true] <3 ViewGroup[childCount=3] < ViewGroup < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/24908945'}]},{key:2,name:'分段广告',rules:[{key:0,fastQuery:true,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'[text^=\"领取成功\"][clickable=true][visibleToUser=true][childCount=1]',snapshotUrls:'https://i.gkd.li/i/25246506'},{preKeys:[0],key:1,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'@View[clickable=true][width<90 && height<90] -2 ScrollView < View[childCount=3]',snapshotUrls:'https://i.gkd.li/i/25246616'}]},{key:3,name:'功能类-自动展开回复',rules:[{fastQuery:true,activityIds:'com.xs.fm.karaoke.impl.cover.KaraokeCoverActivity',matches:'@ViewGroup[clickable=true] > TextView[text^=\"展开\"][text$=\"回复\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25246736'}]}]},{id:'com.oidalmn.donrv',name:'番喜视频',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'@[desc=\"top_close_button\"] < ViewGroup[childCount=1] <n ViewGroup >(2,3) [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0e4b7af0-5708-4be7-b1e9-87b469d9cadb',snapshotUrls:['https://i.gkd.li/i/24325415','https://i.gkd.li/i/24325538']},{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][width<80 && height<80] < FrameLayout[childCount=1] - FrameLayout >3 [text$=\"了解更多内容\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/84da57a5-611d-4330-99b7-ca977d48da78',snapshotUrls:'https://i.gkd.li/i/24377039'}]}]},{id:'com.syjc.app',name:'番喜视频',groups:[{key:1,name:'全屏广告',rules:[{key:0,fastQuery:true,actionDelay:300,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/24908992'},{key:1,fastQuery:true,actionDelay:300,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/24892194'}]}]},{id:'com.upxjwb.xrq',name:'番喜视频',groups:[{key:1,name:'全屏广告',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] < * - View > [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/23519200'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',exampleUrls:'https://e.gkd.li/793d0e85-db69-4d31-bfd9-7ffbd518b962',snapshotUrls:'https://i.gkd.li/i/23905532'}]}]},{id:'com.fanli.android.apps',name:'返利',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.fanli.android.module.webview.ui.activity.TransparentBrowserInnerActivity',matches:'@[desc=\"closewv\"][visibleToUser=true] <<n [id=\"com.fanli.android.apps:id/webviewContainer\"]',exampleUrls:'https://e.gkd.li/7e013a50-4f55-4f49-8024-7dd749e8d53d',snapshotUrls:'https://i.gkd.li/i/13245808'}]}]},{id:'com.ideal.flyerteacafes',name:'飞客',groups:[{key:3,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ideal.flyerteacafes.ui.HomeActivity',matches:'@[id=\"com.ideal.flyerteacafes:id/close\"] - FrameLayout > [id=\"com.ideal.flyerteacafes:id/iv_adv_tip\"]',snapshotUrls:'https://i.gkd.li/i/13466119'}]}]},{id:'com.zy.flt_yishang',name:'飞猫管家',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[desc*=\"跳过\"][desc.length<10][width<500 && height<200][visibleToUser=true]',exampleUrls:'https://e.gkd.li/882f36c1-d172-436f-a43e-194d75940886',snapshotUrls:'https://i.gkd.li/i/24097095'}],order:-10}]},{id:'cn.ms.pages',name:'飞鸟听书',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'字节广告',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13450787'},{key:1,fastQuery:true,activityIds:'cn.ms.pages.ActivityLingPai',matches:'ImageView < @ViewGroup[clickable=true] < ViewGroup +n ViewGroup [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/16136277'},{key:2,fastQuery:true,activityIds:'cn.ms.pages.ActivityLingPai',matches:['[text=\"广告\"]','[text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/16136271'},{key:3,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] +3 View > [text$=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/16136260'}]},{key:2,name:'分段广告-看视频得奖励广告',fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',rules:[{key:0,matches:'@RelativeLayout[childCount=0][clickable=true] < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/fd1ff96e-6d17-4738-a2f1-3648169ce53c',snapshotUrls:'https://i.gkd.li/i/16136235'},{preKeys:[0],key:1,matches:'[text=\"坚持退出\"]',exampleUrls:'https://m.gkd.li/57941037/f09986f3-6dc6-4067-9136-ac6aa0afad3f',snapshotUrls:'https://i.gkd.li/i/16136240'}]}]},{id:'com.ss.android.lark',name:'飞书',groups:[{key:1,name:'功能类-桌面端登录确认',rules:[{fastQuery:true,activityIds:'com.ss.lark.android.passport.biz.feature.sso.suite.SuiteConfirmActivity',matches:'[text=\"飞书 桌面端登录确认\"] +2 [id=\"com.ss.android.lark:id/login_button\"]',snapshotUrls:'https://i.gkd.li/i/13494960'}]},{key:10,name:'功能类-自动查看原图',desc:'查看图片时自动点击\"查看原图\"',rules:[{activityIds:'com.ss.android.lark.widget.photo.preview.PhotoPagerActivity',fastQuery:true,matches:'[id=\"com.ss.android.lark:id/look_origin_icon\"]',snapshotUrls:'https://i.gkd.li/i/12840528'}]},{key:11,name:'功能类-自动发送原图',desc:'发送图片时自动勾选\"原图\"',actionMaximum:1,rules:[{fastQuery:true,activityIds:'.chatwindow.ChatWindowActivity',matches:'[vid=\"layout_original_photo\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c985a1e9-ea40-4911-a73f-8ef098909bce',snapshotUrls:'https://i.gkd.li/i/17711351'}]}]},{id:'com.vo.icea',name:'飞韵听书',groups:[{key:5,name:'分段广告-播放界面卡片广告',desc:'需点击二次弹窗关闭原因',activityIds:['com.vo.icea.MainActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],rules:[{key:0,name:'点击\"反馈\"',matches:'WebView @[text=\"反馈\"] - View > Image',snapshotUrls:'https://i.gkd.li/i/13510973'},{preKeys:[0],name:'原因选\"不感兴趣\"',fastQuery:true,matches:'@LinearLayout[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13510972'}]},{key:6,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[id=\"com.byted.pangle:id/tt_reward_full_count_down\"]',snapshotUrls:'https://i.gkd.li/i/13511052'},{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13511059','https://i.gkd.li/i/13511065']},{key:2,name:'类型2',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -n View > Image[text=\"\"][width<60]',snapshotUrls:['https://i.gkd.li/i/13511052','https://i.gkd.li/i/13511765']},{key:3,name:'类型3',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] < View [text*=\"跳过\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/13446063'},{key:4,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/396d9536-af27-4470-9d80-0a11456fc9ea',snapshotUrls:'https://i.gkd.li/i/17691639'},{key:5,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:'https://e.gkd.li/c5d254c2-97cb-4ab1-a271-d409b9841e94',snapshotUrls:'https://i.gkd.li/i/13511708'}]}]},{id:'com.feicui.vdhelper',name:'翡翠视频',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.ys.resemble.ui.MainActivity',rules:[{key:0,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/12700749'},{key:1,matches:['ImageView + [id=null][text=\"广告\"]','ImageView + [id=null][text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/12700759'},{key:2,fastQuery:true,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12700800'},{key:3,activityIds:'com.sigmob.sdk.base.common.TransparentAdActivity',matches:'[id=\"close_btn\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12700837','https://i.gkd.li/i/12700848']}]}]},{id:'cn.com.livelab',name:'纷玩岛',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.com.livelab.MainActivity',matches:'@Button[clickable=true][childCount=0][visibleToUser=true] <2 View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13258873'}]}]},{id:'com.fcbox.hiveconsumer',name:'丰巢',groups:[{key:7,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'kt.com.fcbox.hiveconsumer.app.business.main.MainActivity',matches:'[text*=\"优惠券\"] + @[vid=\"img_close\"]',snapshotUrls:'https://i.gkd.li/i/22455763'},{fastQuery:true,activityIds:['kt.com.fcbox.hiveconsumer.app.business.main.MainActivity','kt.com.fcbox.hiveconsumer.app.business.membership.MemberCenterActivityV2'],matches:'[vid=\"ivClose\"]',snapshotUrls:['https://i.gkd.li/i/22724047','https://i.gkd.li/i/22724105']}]},{key:8,name:'局部广告',rules:[{fastQuery:true,activityIds:'kt.com.fcbox.hiveconsumer.app.business.main.MainActivity',matches:'[text*=\"会员已过期\"] + [vid=\"close_img\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24560868'}]}]},{id:'com.fcbox.hivebox',name:'丰巢管家',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'首页弹窗广告',fastQuery:true,activityIds:'com.fcbox.hivebox.business.main.MainActivity',matches:'[id=\"com.fcbox.hivebox:id/fl_content_container\"] + [id=\"com.fcbox.hivebox:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13459000'}]}]},{id:'com.sfexpress.sfim',name:'丰声',groups:[{key:10,name:'功能类-自动确认登录',desc:'自动点击[登录]按钮',fastQuery:true,rules:[{key:0,activityIds:['com.sfexpress.sfim.scan.view.SfScanActivity','com.sfexpress.sfim.microservice.commonservice.ui.MicroAppContainerActivity','com.sfexpress.sfim.sdkuikit.widget.dialog.NoticeDialog'],matches:'@[visibleToUser=true][text=\"登录\"] <<n [vid=\"flContainer\"]',snapshotUrls:['https://i.gkd.li/i/12745239','https://i.gkd.li/i/12745240','https://i.gkd.li/i/12745241','https://i.gkd.li/i/14830687']},{key:1,activityIds:'com.sfexpress.sfim.middleplatform.ui.SFMiddlePlatformLoginActivity',matches:'[text=\"登录\"]',snapshotUrls:'https://i.gkd.li/i/14830682'}]}]},{id:'com.fzfengzheng.fzboyp',name:'风筝影评',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'View[childCount=6] >2 View[childCount=8] > View[childCount=4] > [text=\"反馈\"] + View[index=3]',exampleUrls:'https://m.gkd.li/57941037/3cb59a01-f1ab-4244-b455-3824a5724811',snapshotUrls:'https://i.gkd.li/i/14228332'}]}]},{id:'com.ifeng.news2',name:'凤凰新闻',groups:[{key:1,name:'分段广告-信息流广告',fastQuery:true,activityIds:['.activity.IfengTabMainActivity','.activity.DocDetailActivity'],rules:[{key:1,matches:'@[vid=\"img_feedback_left_of_image\"] < LinearLayout -2 LinearLayout >2 [vid=\"adv_label\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/63216ca1-4f7c-4a95-9b9e-7ac4c894f0c0',snapshotUrls:'https://i.gkd.li/i/19752573'},{key:2,matches:'[vid=\"iv_item_del\" || vid=\"doc_detail_titleimg_ad_delete\" || vid=\"del_click\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0a199f54-70f9-45ae-8025-896b688dc8e6',snapshotUrls:['https://i.gkd.li/i/19752570','https://i.gkd.li/i/19752567','https://i.gkd.li/i/19752561']},{preKeys:[1,2],matches:'@[clickable=true] > [text=\"不感兴趣\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e182591a-492d-49ec-8820-20bea10495d9',snapshotUrls:['https://i.gkd.li/i/19752582','https://i.gkd.li/i/19752559']}]},{key:10,name:'权限提示-定位权限',desc:'点击取消',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ifeng.news2.activity.IfengTabMainActivity',matches:'[text*=\"请求您的位置\"] + [id=\"com.ifeng.news2:id/permission_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12705531'}]}]},{id:'com.hihonor.hiboard',name:'负一屏',groups:[{key:1,name:'分段广告-卡片广告',fastQuery:true,activityIds:'com.hihonor.feed.ui.weather.nested.NestedWeatherDetailActivity',rules:[{key:0,matches:'[vid=\"ll_ad_flag_layout\"] > [vid=\"iv_close\"]',exampleUrls:'https://e.gkd.li/3ca8edb5-ba16-406c-8319-7bc5389f6e31',snapshotUrls:'https://i.gkd.li/i/19670830'},{preKeys:[0],matches:'[text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/eaea2f1e-741a-4171-9cc1-8a2c86848d93',snapshotUrls:'https://i.gkd.li/i/19670664'}]}]},{id:'com.fbank.mobile',name:'富民银行',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.fbank.mobile:id/iv_dumiao\"]',snapshotUrls:'https://i.gkd.li/i/13797434'}],order:-10}]},{id:'com.autonavi.minimap',name:'高德地图',groups:[{key:-1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/983cc392-1b01-4172-bc1d-2df001baeb3d',snapshotUrls:'https://i.gkd.li/i/16490985'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:['[text=\"版本升级\" || id=\"com.autonavi.minimap:id/update_viewpager\"][visibleToUser=true]','[text=\"取消\" || id=\"com.autonavi.minimap:id/iv_close\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13379094','https://i.gkd.li/i/13379426','https://i.gkd.li/i/21981032']}]},{key:4,name:'功能类-截屏分享',desc:'关闭截屏时app弹出的分享弹窗',rules:[{fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'[text=\"分享截图至\"] < ViewGroup < ViewGroup + @ViewGroup[clickable=true] > ImageView <<n [id=\"com.autonavi.minimap:id/fragment_container\"]',snapshotUrls:'https://i.gkd.li/i/13473388'}]},{key:10,name:'局部广告-首页上方消息提醒',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.autonavi.map.activity.NewMapActivity',rules:[{key:1,matches:'RelativeLayout[desc=\"弹窗\"] > [id=\"com.autonavi.minimap:id/msgbox_popup_clear\"]',snapshotUrls:'https://i.gkd.li/i/12642830',exampleUrls:'https://e.gkd.li/a7f72c58-0b31-4b87-9839-567d4d74350a'},{key:2,fastQuery:true,matches:'@ImageView[clickable=true] - [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/17426322',exampleUrls:'https://e.gkd.li/ca2dae5b-10d8-458e-9d83-fe04652ff074'}]},{key:11,name:'局部广告-首页签到卡片',desc:'点击\"x\"',actionMaximum:1,resetMatch:'app',activityIds:'com.autonavi.map.activity.NewMapActivity',rules:'ImageView[visibleToUser=true][width<90][height<90] < @ViewGroup -(2) ViewGroup > ViewGroup > View[text*=\"签到\"||text*=\"成长值\"]',snapshotUrls:['https://i.gkd.li/i/12642842','https://i.gkd.li/i/12642845','https://i.gkd.li/i/12818770','https://i.gkd.li/i/13764540']},{key:13,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'ViewGroup > ViewGroup > [desc=\"关闭\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/071a07d2-c760-4f15-9359-f54bf51b6205',snapshotUrls:'https://i.gkd.li/i/14715295'},{key:1,fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'ViewGroup[desc=\"图片\"][childCount=2] > ViewGroup[clickable=true] > @ImageView[childCount=0] <<n [vid=\"tab_container_id\"]',exampleUrls:'https://e.gkd.li/132266f7-b7b8-4cac-9549-bcbe4314c893',snapshotUrls:'https://i.gkd.li/i/16960367'},{key:2,fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'@ImageView[childCount=0] < ViewGroup[clickable=true] -2 * > View[text^=\"高德购票\" && text$=\"优惠\"] <<n [vid=\"mapInteractiveRelativeLayout\"]',exampleUrls:'https://e.gkd.li/59408741-4847-4395-ace5-b1e14ee24cec',snapshotUrls:'https://i.gkd.li/i/16960157'},{key:3,fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'@[clickable=true] > [visibleToUser=true][text=\"关闭\"] <<n [vid=\"ajx_view_container\"]',exampleUrls:'https://e.gkd.li/018aa83b-3f0a-46b4-b084-a5e7a397ca68',snapshotUrls:'https://i.gkd.li/i/18627401'}]},{key:14,name:'全屏广告',desc:'点击关闭',rules:[{key:0,name:'[欢迎]弹窗',fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'ViewGroup[childCount=6] >4 ViewGroup[childCount=5] > @ImageView[clickable=true] + View[text!=null] <<n [vid=\"fragment_container\"]',exampleUrls:'https://m.gkd.li/57941037/660ef360-eee8-4fb8-9764-7a1822ccb6e9',snapshotUrls:['https://i.gkd.li/i/14800704','https://i.gkd.li/i/17079025']},{key:1,name:'签到弹窗',fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'[vid=\"main_map_msg_dialog_close\"]',exampleUrls:'https://m.gkd.li/57941037/e059109b-f4bb-4ed6-81a8-6010b51ebfd5',snapshotUrls:'https://i.gkd.li/i/14809993'},{key:2,fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'@ViewGroup[clickable=true] > View[visibleToUser=true][text^=\"关闭\"] <<n [vid=\"mapInteractiveRelativeLayout\"]',exampleUrls:'https://e.gkd.li/0a4e847f-b1b0-4667-982a-43f313305139',snapshotUrls:'https://i.gkd.li/i/22287641'}]},{key:15,name:'功能类-一键点亮角落',desc:'点击[一键点亮]',rules:[{fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'[text=\"一键点亮\"] <2 @[clickable=true] <<n [vid=\"mapInteractiveRelativeLayout\"]',exampleUrls:'https://m.gkd.li/57941037/1fd33208-e81d-4da6-a23c-4d562a8e0ae0',snapshotUrls:'https://i.gkd.li/i/14881505'}]},{key:16,name:'权限提示-授权蓝牙',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.autonavi.map.activity.NewMapActivity',matches:'@ImageView[clickable=true] -2 [text=\"授权蓝牙\"]',exampleUrls:'https://e.gkd.li/8aef9184-d2b6-4c49-b729-82e6e76decdc',snapshotUrls:'https://i.gkd.li/i/17002003'}]}]},{id:'com.shangfang.gylm',name:'高佣联盟',groups:[{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.mvp.ui.home.activity.UpdateActivityV2',matches:'[id=\"com.shangfang.gylm:id/iv_upgrade_close\"]',snapshotUrls:'https://i.gkd.li/i/13643599'}]}]},{id:'com.doc360.client',name:'个人图书馆',groups:[{key:5,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.doc360.client.activity.ReadRoomActivity',matches:'@View[clickable=true] < FrameLayout[desc^=\"dislike\"] -2 FrameLayout >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13485051'}]}]},{id:'com.xpx365.projphoto',name:'工程相机',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/13827755'},{key:1,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/16030619','https://i.gkd.li/i/16030620','https://i.gkd.li/i/16030622']},{key:2,fastQuery:true,matches:'@ImageView[clickable=true][visibleToUser=true] - [text=\"|\"]',snapshotUrls:'https://i.gkd.li/i/16030413'}],order:-10},{key:6,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'字节广告SDK',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@LinearLayout[clickable=true] - FrameLayout[childCount=1] > [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13762195'},{key:1,name:'腾讯广告SDK',activityIds:'com.xpx365.projphoto.FirstActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/13762196'},{key:2,name:'快手广告SDK',activityIds:'com.xpx365.projphoto.AdKS2AutoCloseActivity',matches:'[id=\"com.kwad.dy.sdk:id/ksad_tk_view\"] @ViewGroup[clickable=true] > TextView[text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/13695668'}]}]},{id:'com.cdxzy.gjssdw',name:'公交实时定位',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/71b97b0e-053c-4338-b82a-530c4b759c1c',snapshotUrls:'https://i.gkd.li/i/20796307',excludeSnapshotUrls:'https://i.gkd.li/i/20796034'}],order:-10}]},{id:'com.maidu.gkld',name:'公考雷达',groups:[{key:2,name:'局部广告-首页右侧悬浮广告',rules:[{activityIds:'com.maidu.gkld.ui.main.MainActivity',matches:'[id=\"com.maidu.gkld:id/fl_float\"] + [id=\"com.maidu.gkld:id/close_image_view\"]',snapshotUrls:'https://i.gkd.li/i/12715291'}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.maidu.gkld:id/ll_open_app_notice\"] + [id=\"com.maidu.gkld:id/iv_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12715250'}]}]},{id:'com.qingwatq.weather',name:'呱呱天气',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.qingwatq.weather.home.HomeActivity',matches:'[id=\"com.qingwatq.weather:id/titleArea\"] + [id=\"com.qingwatq.weather:id/closeImg\"]',snapshotUrls:'https://i.gkd.li/i/13476350'}]}]},{id:'com.codoon.gps',name:'咕咚',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'首页-弹窗广告',fastQuery:true,activityIds:'com.codoon.gps.ui.SlideActivity',matches:'@ImageView[clickable=true][childCount=0] - ImageView[clickable=true][childCount=0] < ViewGroup[childCount=2] < RelativeLayout[childCount=1] < RelativeLayout[childCount=1] < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13358586'},{key:1,name:'运动圈-弹窗广告',fastQuery:true,activityIds:'com.codoon.gps.ui.SlideActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13348663'}]}]},{id:'org.gushiwen.gushiwen',name:'古诗文网',groups:[{key:1,name:'分段广告-弹窗广告',rules:[{key:1,actionDelay:500,activityIds:['com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'@Image < View[width<100] <n View > [text=\"反馈\"]',snapshotUrls:['https://i.gkd.li/i/12837225','https://i.gkd.li/i/12876086','https://i.gkd.li/i/12876067','https://i.gkd.li/i/12837225','https://i.gkd.li/i/12912911','https://i.gkd.li/i/13171930']},{key:2,actionDelay:500,activityIds:'org.gushiwen.gushiwen.HomeActivity',matches:'@FrameLayout  +2 FrameLayout > LinearLayout > LinearLayout > [text^=\"摇动\"]',snapshotUrls:['https://i.gkd.li/i/13266879']},{key:3,actionDelay:500,fastQuery:true,activityIds:'.HomeActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/71e9b352-e2a9-427e-bcbb-71510ed066b2',snapshotUrls:['https://i.gkd.li/i/12813618','https://i.gkd.li/i/18047950']},{key:4,actionDelay:500,fastQuery:true,activityIds:'.HomeActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:'https://e.gkd.li/f6d34c18-e426-48dd-8030-4471cded8208',snapshotUrls:'https://i.gkd.li/i/18047949'},{key:5,actionDelay:500,fastQuery:true,activityIds:'com.huawei.permissioncontroller.hwcust.appjump.AppJumpActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/012f64ec-b3ed-4472-8d07-8ed3b4ad6c07',snapshotUrls:'https://i.gkd.li/i/13059294'},{preKeys:[1,2,3,4,5],key:10,name:'打赏页面-点击返回按钮',activityIds:['local.z.androidshared.vip.RewardActivity','local.z.androidshared.pay.RewardActivity'],matches:'[id=\"org.gushiwen.gushiwen:id/btn_back\"]',snapshotUrls:['https://i.gkd.li/i/12813638','https://i.gkd.li/i/13111042']},{preKeys:[1,2,3,4,5],key:11,name:'荣誉会员-点击返回按钮',activityIds:['local.z.androidshared.vip.member.VipActivity','local.z.androidshared.pay.vip.VipActivity'],matches:'[id=\"org.gushiwen.gushiwen:id/backBtn\"]',snapshotUrls:['https://i.gkd.li/i/12837229','https://i.gkd.li/i/13111057']}]}]},{id:'com.guwendao.gwd',name:'古文岛',groups:[{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.guwendao.gwd.MainActivity',rules:[{key:2,matches:'[id=\"com.byted.pangle.m:id/tt_reward_full_count_down_after\"]',snapshotUrls:'https://i.gkd.li/i/12781344'},{key:3,fastQuery:true,activityIds:['com.guwendao.gwd.MainActivity','com.android.systemui.media.MediaProjectionPermissionActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12776607','https://i.gkd.li/i/12777151','https://i.gkd.li/i/12924728']},{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',key:10,matches:'@Image[id=null] < View + View + TextView[text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/12781327'}]}]},{id:'com.google.android.apps.photos',name:'谷歌相册',groups:[{key:0,name:'更新提示',desc:'点击[以后再说]',matchRoot:true,fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:['.update.treatment.UpdateAppTreatmentPromoPageActivity','.home.HomeActivity'],matches:'[text=\"以后再说\" || text=\"Not now\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13218940','https://i.gkd.li/i/18522070','https://i.gkd.li/i/18608917']}]},{key:1,name:'全屏广告-会员广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.google.android.apps.photos.cloudstorage.paidfeatures.PaidFeaturesActivity',matches:'@[desc=\"转到上一层级\"] < ViewGroup[id=\"com.google.android.apps.photos:id/toolbar\"]',snapshotUrls:'https://i.gkd.li/i/13774247'},{key:1,fastQuery:true,activityIds:'.home.HomeActivity',matches:'[vid=\"spark_container\"] > [vid=\"close_button\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/581cad00-a5fa-4f42-b31f-84a2d5c89afc',snapshotUrls:'https://i.gkd.li/i/22482732'}]}]},{id:'com.x.istar',name:'观星',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.x.istar.view.main.MainActivity',matches:'[text=\"关闭广告\"][vid=\"btn_negative\"]',snapshotUrls:'https://i.gkd.li/i/13974606'}]}]},{id:'com.cebbank.mobile.cemb',name:'光大银行',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"tv_skip\"]',exampleUrls:'https://e.gkd.li/81f951ce-39b0-4677-93a7-25b5a709b46d',snapshotUrls:'https://i.gkd.li/i/17615867'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.view.CustomizedDialog',matches:'@[text=\"不再提示\"] +2 [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/12727241'}]},{key:2,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.cebbank.mobile.cemb.ui.activity.SplashActivity','com.cebbank.mobile.cemb.ui.activity.HomeActivity'],matches:'[id=\"com.cebbank.mobile.cemb:id/home_advertising_iv_close\"]',snapshotUrls:['https://i.gkd.li/i/12727248','https://i.gkd.li/i/13471080']}]}]},{id:'com.vphonegaga.titan',name:'光速虚拟机',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MyNativeActivity',matches:'@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',exampleUrls:'https://e.gkd.li/ef6b8242-76d7-4ce5-b0fc-4444f72b9b39',snapshotUrls:'https://i.gkd.li/i/13292911'}]}]},{id:'com.example.servyouappzhuhai',name:'广东税务',groups:[{key:0,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.com.servyou.servyouzhuhai.activity.main.imps.MainActivity',matches:'[id=\"com.example.servyouappzhuhai:id/btn_dialog_negtive\"]',snapshotUrls:'https://i.gkd.li/i/13440721'}]}]},{id:'com.crgt.ilife',name:'国铁吉讯',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.crgt.ilife.ui.main.MainPageView',matches:'FrameLayout[childCount=2] > FrameLayout[childCount=2] > FrameLayout[childCount=3] > @FrameLayout[childCount=1][visibleToUser=true] > ImageView[childCount=0][text=null] <<n [vid=\"home_banner\"]',exampleUrls:'https://e.gkd.li/3026504f-acb7-4f58-b171-ab664b2caf27',snapshotUrls:'https://i.gkd.li/i/16450332'},{key:1,fastQuery:true,activityIds:'com.crgt.ilife.ui.main.MainPageView',matches:'@FrameLayout[childCount=1] - LinearLayout > [text=\"查看详情\"]',exampleUrls:'https://e.gkd.li/15dc994f-ab27-481f-afbe-f6b3f18dde11',snapshotUrls:'https://i.gkd.li/i/16485384'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.crgt.ilife.ui.main.MainPageView',matches:'[vid=\"iv_close\"]',exampleUrls:'https://e.gkd.li/43ccfd78-67d7-4dba-a25f-a2f5d62f9c40',snapshotUrls:'https://i.gkd.li/i/16581549'}]}]},{id:'com.guodongbaohe.app',name:'果冻宝盒',groups:[{key:6,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.guodongbaohe.app.activity.AdvertisementTwoActivity',matches:'LinearLayout[id=\"com.guodongbaohe.app:id/close_dialog_lv\"]',snapshotUrls:'https://i.gkd.li/i/13577877'}]}]},{id:'com.jingyao.easybike',name:'哈啰',groups:[{key:1,name:'更新提示',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.hellobike.atlas.business.portal.PortalActivity',matches:'@ImageView + [vid=\"contentContainer\"] >2 [text*=\"新版本\"]',snapshotUrls:'https://i.gkd.li/i/16108173'}]},{key:8,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.yanzhenjie.permission.PermissionActivity','com.hellobike.atlas.business.portal.PortalActivity'],matches:['[text*=\"开启通知\"]','[text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/13228735','https://i.gkd.li/i/13402675']}]},{key:9,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.hellobike.atlas.business.portal.PortalActivity',matches:['[text=\"系统定位服务已关闭\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13228677'}]},{key:10,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:['com.hellobike.ads.widget.insert.dialog.HBAdvertDialog','com.hellobike.atlas.business.portal.PortalActivity','com.hellobike.hitch.business.homenew.HitchHomeActivity'],matches:'[vid=\"actionDialogClose\"]',snapshotUrls:['https://i.gkd.li/i/12650090','https://i.gkd.li/i/16503613','https://i.gkd.li/i/23407810']},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.hellobike.evehicle.business.main.EVehicleHomeManagerActivity',matches:'[id=\"com.jingyao.easybike:id/lottie_view\"] < ViewGroup + [id=\"com.jingyao.easybike:id/btn_close\"]',snapshotUrls:'https://i.gkd.li/i/12650163'},{key:2,activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'[text=\"订单完成\"] >(2) View[childCount=2] > Image[id=null][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12684673'},{key:3,activityIds:'com.hellobike.atlas.business.portal.PortalActivity',matches:'[desc=\"去使用\"] + Button[text=null][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12739316'},{key:4,fastQuery:true,activityIds:'com.hellobike.moped.platform.offline.web.OhoRealmWebActivity',matches:'@Image[childCount=0][text!=null] - View[childCount=1] > Image[childCount=0][text!=null] <<n [vid=\"webContainer\"]',exampleUrls:'https://e.gkd.li/c6364646-6d3c-4b2e-80b9-0b356d4cd8b7',snapshotUrls:'https://i.gkd.li/i/23415363'}]},{key:12,name:'局部广告-右侧悬浮广告',fastQuery:true,activityIds:'com.hellobike.atlas.business.portal.PortalActivity',rules:'@[id=\"com.jingyao.easybike:id/closeFloatArea\"] + [id=\"com.jingyao.easybike:id/floatADContainer\"]',snapshotUrls:'https://i.gkd.li/i/12650071'},{key:15,name:'其他-新人教学弹窗',desc:'点击跳过',fastQuery:true,rules:[{activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'@View[text=\"跳过\"] <2 View <2 View <<n FrameLayout[id=\"com.jingyao.easybike:id/h5_pc_container\"]',snapshotUrls:'https://i.gkd.li/i/13837543'}]}]},{id:'com.haier.uhome.uplus',name:'海尔智家',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.upgradeui.ui.UpgradeDialogActivity',matches:'@[text=\"取消\"] + [text=\"立即更新\"||text=\"立即安装\"]',snapshotUrls:['https://i.gkd.li/i/12726844','https://i.gkd.li/i/12726801']}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.widget.MPermissionCheckDialog',rules:[{key:0,matches:'@[checked=false] + [text=\"禁止后不在询问\"]',exampleUrls:'https://e.gkd.li/e1c6f008-4eba-4370-b7a1-054d0279956a',snapshotUrls:'https://i.gkd.li/i/12726829'},{preKeys:[0],key:1,matches:'[text=\"取消\"]',exampleUrls:'https://e.gkd.li/e1c6f008-4eba-4370-b7a1-054d0279956a',snapshotUrls:'https://i.gkd.li/i/12726829'}]}]},{id:'com.rytong.hnair',name:'海南航空',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.hnair.airlines.ui.main.MainActivity',matches:'ImageView[id*=\"com.rytong.hnair:id/iv_cloes\"]',snapshotUrls:'https://i.gkd.li/i/12846381'}]}]},{id:'tool.seagull.v',name:'海鸥加速器',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'卡片广告-1',activityIds:'io.github.trojan_gfw.igniter.MainActivity',matches:'View[childCount=2] > @Button[clickable=true] - View > View > View > Image',snapshotUrls:'https://i.gkd.li/i/13413556'}]},{key:2,name:'全屏广告-谷歌广告',rules:[{key:0,name:'谷歌广告-1',activityIds:['io.github.trojan_gfw.igniter.MainActivity','com.google.android.gms.ads.AdActivity'],matches:'[desc=\"OPEN\" || desc=\"開啟\"] - @View[clickable=true][visibleToUser=true] > [text=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/13426255','https://i.gkd.li/i/13459399']},{key:1,name:'谷歌广告-2',activityIds:'com.google.android.gms.ads.AdActivity',matches:'@Button[clickable=true][childCount=0] < View[childCount=1] <2 View[childCount=2] - View >3 [desc=\"開啟\"]',snapshotUrls:'https://i.gkd.li/i/13476799'},{key:2,name:'谷歌广告-3',activityIds:'com.google.android.gms.ads.AdActivity',matches:'[desc=\"Interstitial close button\"]',snapshotUrls:'https://i.gkd.li/i/13476579'}]}]},{id:'com.alcidae.smarthome',name:'海雀',groups:[{key:1,name:'全屏广告-首页通知弹窗',desc:'点击[不再提醒]并关闭弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.danale.video.mainpage.main.MainActivity',rules:[{key:0,matches:'[vid=\"cb_not_show\"][checked=false][visibleToUser=true]',exampleUrls:'https://e.gkd.li/02d8846c-6753-4efe-b944-ea024f7485ad',snapshotUrls:'https://i.gkd.li/i/18291310'},{preKeys:[0],matches:'[vid=\"ibtn_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/02d8846c-6753-4efe-b944-ea024f7485ad',snapshotUrls:'https://i.gkd.li/i/18291310'}]},{key:2,name:'权限提示-通知权限',desc:'点击[取消]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.danale.video.mainpage.main.MainActivity',matches:['[text*=\"开启通知\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/5f19c508-d4d3-4221-aafe-ab19845b3d4b',snapshotUrls:'https://i.gkd.li/i/18059150'}]}]},{id:'com.haixing.phonelive',name:'海星体育',groups:[{key:1,name:'权限提示-]权限授权]弹窗',desc:'点击取消',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.longya.live.activity.MainActivity',matches:['[text*=\"权限授权\"]','[text=\"取消\"]'],exampleUrls:'https://m.gkd.li/57941037/0524b810-b24f-4e5b-8a62-5b660b04255b',snapshotUrls:'https://i.gkd.li/i/15369230'}]}]},{id:'com.babycloud.hanju',name:'韩小圈',groups:[{key:2,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:['com.babycloud.hanju.ui.activity.HanjuSeriesActivity','com.babycloud.hanju.ui.activity.HanjuHomeActivity','com.babycloud.hanju.search.activity.SearchActivity'],matches:'[vid=\"unified_ad_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13628282','https://i.gkd.li/i/13670721','https://i.gkd.li/i/13849929']}]},{key:3,name:'全屏广告-视频播放时的弹窗广告',rules:[{key:0,fastQuery:true,activityIds:'com.babycloud.hanju.ui.activity.HanjuSeriesActivity',matches:'[vid=\"close_rl\" || vid=\"only_skip_rl\" || vid=\"skip_rl\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13800123','https://i.gkd.li/i/13972345','https://i.gkd.li/i/14048532','https://i.gkd.li/i/14048302']}]}]},{id:'com.dtdream.publictransit',name:'杭州公共交通',groups:[{key:0,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dtchuxing.main.MainActivity',matches:'[id=\"com.dtdream.publictransit:id/ifv_close\"]',snapshotUrls:'https://i.gkd.li/i/12830113'}]}]},{id:'com.smk',name:'杭州市民卡',groups:[{key:3,name:'全屏广告-弹窗广告',rules:[{fastQuery:true,activityIds:['com.smk.activity.MainActivity','com.smk.activity.LaunchActivity','com.tianmu.biz.activity.InterstitialActivity'],matches:'[id=\"com.smk:id/iv_close_ad\" || vid=\"tianmu_widget_iv_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13402584','https://i.gkd.li/i/13425013','https://i.gkd.li/i/23567834']}]}]},{id:'cn.com.hzb.mobilebank.per',name:'杭州银行',groups:[{key:1,name:'全屏广告',rules:[{fastQuery:true,activityIds:'cn.com.hzb.mobilebank.per.MainActivity',matches:'Image[width<160 && height<160][childCount=0] < @View[clickable=true][childCount=1] <2 View[childCount=2] < View[index=parent.childCount.minus(1)][childCount=1] <n View[id=\"app\"] <<3 [vid=\"h5_pc_container\"]',snapshotUrls:['https://i.gkd.li/i/25150390','https://i.gkd.li/i/25150391']}]},{key:2,name:'功能类-未登录时自动点击登录',desc:'仅限财富版',rules:[{matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'cn.com.hzb.mobilebank.per.MainActivity',matches:'@[clickable=true] > [text=\"立即登录>\"]',snapshotUrls:'https://i.gkd.li/i/25150391'}]}]},{id:'com.umetrip.android.msky.app',name:'航旅纵横',groups:[{key:10,name:'其他-进入飞行模式-提示弹窗',rules:[{fastQuery:true,activityIds:'com.umetrip.android.msky.homepage.activity.UmeHomeActivity',matches:'[id=\"com.umetrip.android.msky.app:id/imageView\"] + [id=\"com.umetrip.android.msky.app:id/iv_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12750185'}]},{key:11,name:'局部广告-首页右侧悬浮广告',rules:[{fastQuery:true,activityIds:'com.umetrip.android.msky.homepage.activity.UmeHomeActivity',matches:'@[id=\"com.umetrip.android.msky.app:id/iv_close_envelope\"] + [id=\"com.umetrip.android.msky.app:id/media_view_envelope\"]',snapshotUrls:'https://i.gkd.li/i/12783264'}]},{key:12,name:'全屏广告',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true][width=height] < FrameLayout <2 FrameLayout <3 FrameLayout < [vid=\"operation_dialog_weex_view\"]',snapshotUrls:'https://i.gkd.li/i/24706615'}]}]},{id:'com.xmcy.hykb',name:'好游快爆',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.dialog.UpdateDialog',matches:'@[id=\"com.xmcy.hykb:id/iv_inner_button_close\"] - RelativeLayout >n [id=\"com.xmcy.hykb:id/text_update_tip\"]',snapshotUrls:['https://i.gkd.li/i/12870604','https://i.gkd.li/i/13297450']}]},{key:2,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xmcy.hykb.app.ui.main.MainActivity',matches:'[id=\"com.xmcy.hykb:id/dialog_home_notice_image_close\"]',snapshotUrls:'https://i.gkd.li/i/13259427'}]}]},{id:'com.cmcc.hebao',name:'和包',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.cmcc.wallet.mocam.activity.home.WalletHomeActivity',matches:'@[clickable=true] > [visibleToUser=true][text=\"dialog-delete\"] <<n [vid=\"rl_parent\"]',exampleUrls:'https://m.gkd.li/57941037/cb33c5b5-dd2e-4aa9-80d1-f7013f150305',snapshotUrls:'https://i.gkd.li/i/14567338'}]}]},{id:'com.wudaokou.hippo',name:'盒马',groups:[{key:1,name:'全屏广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.launcher.splash.SplashActivity',matches:'[vid=\"home_pop_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7719d496-8331-4ddd-996d-5e1b5a88d7b7',snapshotUrls:'https://i.gkd.li/i/22988411'}]}]},{id:'me.piebridge.brevent',name:'黑阈',groups:[{key:1,name:'权限提示-权限不足弹窗',desc:'点击取消',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'me.piebridge.brevent.ui.BreventActivity',matches:['[text^=\"黑阈服务权限不足\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13218439'}]}]},{id:'com.hd.smartVillage',name:'恒大智慧社区',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.modules.main.MainActivity','.modules.h5service.H5WebActivity'],matches:'View[id=\"com.hd.smartVillage:id/notificationSettingCloseBtn\"]',snapshotUrls:['https://i.gkd.li/i/13223669','https://i.gkd.li/i/13293000']}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.modules.main.MainActivity',matches:'TextView[id=\"com.hd.smartVillage:id/tv_upgrade_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13223642'}]}]},{id:'com.redfinger.app',name:'红手指云手机',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'.activity.MainActivity',matches:'[id=\"com.redfinger.app:id/btn_update\"] + [id=\"com.redfinger.app:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13761821'}]},{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.redfinger.app.activity.MainActivity',matches:'[id=\"com.redfinger.app:id/rl_screen_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13761825'}]}]},{id:'cn.chuci.and.wkfenshen',name:'猴子分身',groups:[{key:1,name:'全屏广告-购买会员弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.chuci.and.wkfenshen.ActMain',matches:['[id=\"cn.chuci.and.wkfenshen:id/dialog_local_buy_btn\"]','[id=\"cn.chuci.and.wkfenshen:id/action_close\"]'],snapshotUrls:'https://i.gkd.li/i/13226988'}]}]},{id:'com.hupu.games',name:'虎扑',groups:[{key:1,name:'分段广告-信息流广告',desc:'点击卡片右上角广告文字,出现广告反馈,点击屏蔽该广告',fastQuery:true,activityIds:['com.hupu.games.main.MainActivity','com.hupu.android.bbs.detail.PostDetailActivity','com.hupu.topic.TopicActivity','com.hupu.android.bbs.page.rating.ratingDetail.RatingDetailActivity'],rules:[{key:0,matches:'[vid=\"shield_view\"]',snapshotUrls:['https://i.gkd.li/i/12511005','https://i.gkd.li/i/13258026','https://i.gkd.li/i/13259692','https://i.gkd.li/i/15360331']},{preKeys:[0],key:1,matches:'@[clickable=true] > [text=\"屏蔽该广告\" || text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/12511010','https://i.gkd.li/i/12534848','https://i.gkd.li/i/13259699','https://i.gkd.li/i/15360360','https://i.gkd.li/i/17869227']}]}]},{id:'com.duowan.kiwi',name:'虎牙直播',groups:[{key:2,name:'局部广告-直播间悬浮广告',activityIds:'com.duowan.kiwi.liveroom.ChannelPage',rules:[{key:0,fastQuery:true,matches:'[id=\"com.duowan.kiwi:id/ad_close\"]',snapshotUrls:['https://i.gkd.li/i/12901045','https://i.gkd.li/i/12901044']},{key:1,fastQuery:true,matches:'[id=\"com.duowan.kiwi:id/game_header_close\"]',snapshotUrls:['https://i.gkd.li/i/13395604','https://i.gkd.li/i/13395606']},{key:2,fastQuery:true,matches:'[id=\"com.duowan.kiwi:id/popup_banner\"] >2 [id=\"com.duowan.kiwi:id/ui_count_down\"]',snapshotUrls:['https://i.gkd.li/i/13417245']},{key:3,fastQuery:true,matches:'@ViewGroup[clickable=true][visibleToUser=true] <2 ViewGroup < FrameLayout <2 FrameLayout < [id=\"com.duowan.kiwi:id/miniapp_content_container\"]',snapshotUrls:'https://i.gkd.li/i/13401266'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.homepage.Homepage',matches:'@ImageView[id=\"com.duowan.kiwi:id/upgrade_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13440833'}]},{key:4,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.homepage.Homepage',matches:'[id=\"com.duowan.kiwi:id/animation_view\"] + [id=\"com.duowan.kiwi:id/v_close\"]',snapshotUrls:'https://i.gkd.li/i/13625453'}]},{key:5,name:'其他-root提示',desc:'点击确认',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.homepage.Homepage',matches:'[text^=\"您的设备已经被ROOT\"] + LinearLayout [text=\"确认\"]',snapshotUrls:'https://i.gkd.li/i/13536744'}]}]},{id:'com.huaxiaozhu.rider',name:'花小猪打车',groups:[{key:1,name:'更新提示',desc:'点击\"稍后更新\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.huaxiaozhu.sdk.app.MainActivity',matches:'[text=\"稍后更新\"]',exampleUrls:'https://m.gkd.li/57941037/7b5e81bf-6c51-4222-b832-ba4176be2a4b',snapshotUrls:'https://i.gkd.li/i/14233480'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.huaxiaozhu.sdk.app.MainActivity',matches:'[vid=\"popClose\"]',exampleUrls:'https://m.gkd.li/57941037/1555a2be-92cb-4360-b50f-019f30955a22',snapshotUrls:'https://i.gkd.li/i/14233488'}]}]},{id:'com.wallstreetcn.news',name:'华尔街见闻',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'@[vid=\"iv_jump_parent\" || vid=\"iv_jump\"] -2 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/94576b14-ad13-4fae-8d49-6b6d1b5096a7',snapshotUrls:['https://i.gkd.li/i/14525329','https://i.gkd.li/i/20430632']}],order:-10},{key:10,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.wallstreetcn.news.ProxyMainActivity',matches:'[text=\"广告\" || text=\"活动\"] + [id=\"com.wallstreetcn.news:id/close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13262717'}]}]},{id:'com.huatu.handheld_huatu',name:'华图在线',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.huatu.handheld_huatu.view.MainPopDialog','com.huatu.handheld_huatu.business.main.MainTabActivity'],matches:'[id=\"com.huatu.handheld_huatu:id/main_img_adv_bg\"] + [id=\"com.huatu.handheld_huatu:id/main_img_close\"]',snapshotUrls:['https://i.gkd.li/i/12715702','https://i.gkd.li/i/12744973']}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.business.main.MainTabActivity',matches:'[text*=\"开启通知提示\"] +2 LinearLayout > [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/12715719'}]}]},{id:'com.huawei.browser',name:'华为浏览器',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13403785'}],order:-10},{key:1,name:'权限提示-通知权限',desc:'关闭资讯通知后，总是弹窗让打开',rules:[{fastQuery:true,matches:'[id=\"com.huawei.browser:id/close_push_guide_window\"]',exampleUrls:'https://m.gkd.li/87047583/3982b64a-15a7-4c0c-b179-2ed82d6ea18e',snapshotUrls:'https://i.gkd.li/i/13692404'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.huawei.browser.customtab.EmuiBrowserCustomTabActivity',matches:'View[id=\"root\"] > View[index=1] > @View[visibleToUser=true][id=\"logo-close-btn\"] <<n [vid=\"web_view_container\"]',snapshotUrls:'https://i.gkd.li/i/13997759'},{key:1,fastQuery:true,activityIds:'.download.DownloadRecordsActivity',matches:'[vid=\"group_header_close_button\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f5b1576c-372d-4376-b122-129cd0249d85',snapshotUrls:'https://i.gkd.li/i/20852584'}]}]},{id:'com.huawei.wallet',name:'华为钱包',groups:[{key:1,name:'局部广告-钱包扩展服务提示',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"开启钱包扩展服务\"] +2 [id=\"com.huawei.wallet:id/linear_close\"]',snapshotUrls:'https://i.gkd.li/i/13441814'}]},{key:2,name:'全屏广告-小额免密支付弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.huawei.petalpay.userapp.function.withhold.view.activity.PetalPayGuideSmallFreePwdActivity',matches:['[text=\"开通小额免密支付\"]','[vid=\"title_close_btn\"]'],exampleUrls:'https://e.gkd.li/7fcdf7d8-d9db-4b30-840d-3f656f645fe3',snapshotUrls:'https://i.gkd.li/i/16397908'}]},{key:3,name:'分段广告-首页卡片广告',fastQuery:true,rules:[{key:0,activityIds:'.view.MainActivity',matches:'[vid=\"ad_sign_text_and_feedback\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/11edaf9a-f54c-489c-99e0-78da25a5cc9b',snapshotUrls:'https://i.gkd.li/i/16833449'},{preKeys:[0],activityIds:'com.huawei.openalliance.ad.activity.FeedbackActivity',matches:'[text=\"直接关闭\"]',exampleUrls:'https://e.gkd.li/f0d67fb4-ccdb-443b-8e4e-9dff2242a84f',snapshotUrls:'https://i.gkd.li/i/16833452'}]},{key:4,name:'功能类-支付成功后点击关闭',rules:[{fastQuery:true,activityIds:'com.huawei.nfc.carrera.ui.swipe.SwipeResultActivity',matches:'[vid=\"btn_completed\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/984fd805-ad50-4ffc-adce-fffe42109e98',snapshotUrls:'https://i.gkd.li/i/18146717'}]},{key:5,name:'权限提示-NFC权限',desc:'点击取消',rules:[{fastQuery:true,activityIds:'com.huawei.nfc.carrera.ui.swipe.SetDefaultPayServiceActivity',matches:['[text*=\"是否每次使用华为钱包都自动开启 NFC\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/87466a06-2169-4808-971e-d347cd40ac66',snapshotUrls:'https://i.gkd.li/i/20918311'}]}]},{id:'com.huawei.himovie',name:'华为视频',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[vid=\"hiad_skip_text\"]',snapshotUrls:'https://i.gkd.li/i/15523945'},{key:1,action:'clickCenter',matches:'([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]) || ([visibleToUser=true][text*=\"跳过\"][text.length<10][width<500 && height<200])',exampleUrls:'https://e.gkd.li/ec00ceef-3930-4240-92f5-56816fc90be2',snapshotUrls:['https://i.gkd.li/i/20745477','https://i.gkd.li/i/20773665']}],order:-10},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.huawei.video.content.impl.explore.main.activity.MainActivity',matches:'[vid=\"advert_dialog_close_image_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c842b073-bbea-4a37-a45b-4d2a86cfa6c5',snapshotUrls:'https://i.gkd.li/i/20775878'}]}]},{id:'com.huawei.android.totemweather',name:'华为天气',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[id=\"com.huawei.hms.ads.uiengine:id/hiad_skip_text\"]',snapshotUrls:['https://i.gkd.li/i/12928975','https://i.gkd.li/i/13226636']}],order:-10},{key:2,name:'分段广告-卡片广告',fastQuery:true,rules:[{key:0,activityIds:['com.huawei.android.totemweather.WeatherMainActivity','com.huawei.android.totemweather.WeatherHome'],matches:'[vid=\"rl_close_pps\" || vid=\"ad_cancel\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13521221','https://i.gkd.li/i/13787501','https://i.gkd.li/i/13800100','https://i.gkd.li/i/14278462','https://i.gkd.li/i/15831584']},{key:1,activityIds:'com.huawei.android.totemweather.composite.MarketCompositeActivity',matches:'[id=\"com.huawei.android.totemweather:id/promote_ad_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13218197'},{key:2,fastQuery:true,activityIds:'.news.main.content.ModulesActivity',matches:'@[clickable=true][text=\"负反馈\"] <<n [vid=\"content_main_view\"]',snapshotUrls:'https://i.gkd.li/i/24688832'},{preKeys:[0,1],key:99,activityIds:['com.huawei.openalliance.ad.activity.FeedbackActivity','.news.main.content.ModulesActivity'],anyMatches:['[text=\"直接关闭\"]','@[clickable=true][text=\"直接关闭\"] <<n [vid=\"content_main_view\"]'],snapshotUrls:['https://i.gkd.li/i/13259434','https://i.gkd.li/i/15831539','https://i.gkd.li/i/24688856']}]}]},{id:'com.android.mediacenter',name:'华为音乐',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[text^=\"跳过\"][text.length<=10]',snapshotUrls:['https://i.gkd.li/i/12901417','https://i.gkd.li/i/12908742']}],order:-10},{key:1,name:'全屏广告-VIP弹窗广告',desc:'点击底部圆形x图标关闭弹窗',activityIds:'com.android.mediacenter.MainActivity',fastQuery:true,rules:'[id=\"com.android.mediacenter:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12914026'},{key:2,name:'局部广告-推荐卡片广告',desc:'点击卡片右上角[广告],点击不感兴趣[直接关闭]',fastQuery:true,rules:[{key:0,name:'点击卡片右上角[广告]',activityIds:'com.android.mediacenter.MainActivity',matches:'[id=\"com.android.mediacenter:id/ad_more_layout\"]',snapshotUrls:'https://i.gkd.li/i/12914077'},{key:1,name:'点击不感兴趣[直接关闭]',activityIds:'com.huawei.openalliance.ad.activity.FeedbackActivity',matches:'[id=\"com.android.mediacenter:id/label_title\"][text=\"直接关闭\"]',snapshotUrls:'https://i.gkd.li/i/12914078'}]}]},{id:'com.huawei.music',name:'华为音乐',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/20773821'}],order:-10},{key:3,name:'局部广告-播放界面直播浮窗',fastQuery:true,activityIds:'com.android.mediacenter.MainActivity',rules:[{matches:'TextView[id=\"com.huawei.music:id/live_info\"] < LinearLayout -2 [id=\"com.huawei.music:id/close_button\"]',snapshotUrls:'https://i.gkd.li/i/13067649'}]},{key:8,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.android.mediacenter.PageActivity','com.android.mediacenter.MainActivity'],matches:'ImageView[vid=\"campaign_dialog_close_image_view\" || vid=\"iv_close\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/00c83449-9809-4de8-9c7c-c6ce1b9fa2c3',snapshotUrls:['https://i.gkd.li/i/14193738','https://i.gkd.li/i/15523958','https://i.gkd.li/i/24676040']}]},{key:9,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.android.mediacenter.MainActivity',matches:'RelativeLayout[childCount=2] + * [vid=\"close_radio_camp_button\"]',exampleUrls:'https://m.gkd.li/57941037/b205c209-07c9-49e1-b72d-f9b31d9bc2d9',snapshotUrls:'https://i.gkd.li/i/14193767'},{key:1,fastQuery:true,activityIds:'com.android.mediacenter.MainActivity',matches:'[vid=\"ad_close\"]',exampleUrls:'https://e.gkd.li/586d860f-7f7c-41c7-af0f-bc17ac695a1a',snapshotUrls:'https://i.gkd.li/i/16812666'}]},{key:10,name:'分段广告-首页横幅广告',fastQuery:true,rules:[{key:1,activityIds:'com.android.mediacenter.MainActivity',matches:'[vid=\"ad_more_layout\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c64216a4-46bc-461d-9973-9ffcfab2fd51',snapshotUrls:'https://i.gkd.li/i/20745787'},{preKeys:[1],key:2,activityIds:'com.huawei.openalliance.ad.activity.FeedbackActivity',matches:'[text=\"直接关闭\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/9c4da3cf-897d-4b4a-bda0-e5e35af19b1d',snapshotUrls:'https://i.gkd.li/i/20745789'}]}]},{id:'com.huawei.appmarket',name:'华为应用市场',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"clock_layout\"]',snapshotUrls:'https://i.gkd.li/i/15523957'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MarketActivity',matches:'@[text=\"以后再说\"] + [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/13228520'}]},{key:3,name:'功能类-应用更新页面-点击[查看更多]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.huawei.appmarket.service.appmgr.view.activity.AppUpdateActivity',matches:'[text=\"查看更多\"]',exampleUrls:'https://m.gkd.li/57941037/e2283b1d-3041-49c5-aca2-7c165c83ce37',snapshotUrls:'https://i.gkd.li/i/14738587'}]},{key:4,name:'全屏广告-热门应用推荐弹窗',desc:'点击[直接进入]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.huawei.appgallery.upgraderecommendation.ui.',matches:'[text=\"直接进入\" || text=\"进入主页\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/89e6f2eb-b543-4dd8-88ce-6e888d0d8c8a',snapshotUrls:['https://i.gkd.li/i/14861810','https://i.gkd.li/i/21231632','https://i.gkd.li/i/24640204']}]},{key:5,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.huawei.appmarket.MarketActivity',matches:'[vid=\"close_icon\"]',exampleUrls:'https://m.gkd.li/57941037/13a31ae0-10c8-49bc-9154-363498237eff',snapshotUrls:'https://i.gkd.li/i/15523964'}]},{key:6,name:'权限提示-通知权限',desc:'点击[以后再说]',rules:[{fastQuery:true,activityIds:'com.huawei.appgallery.jointmessage.jointmessage.impl.activity.NotificationSwitchDialogActivity',matches:'[text=\"以后再说\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/1a0531ef-a18c-483d-8ac9-b50c96c6431d',snapshotUrls:'https://i.gkd.li/i/18328929'}]},{key:7,name:'功能类-自动安装应用',fastQuery:true,activityIds:'com.huawei.appgallery.systeminstalldistservice.riskcheck.ui.activity.InstallDistActivity',rules:[{key:0,matches:'[vid=\"hidden_card_checkbox\"][checked=false][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2de4eb7c-964e-4b24-ab5f-1460c7993a0b',snapshotUrls:'https://i.gkd.li/i/18492709'},{preKeys:[0],key:1,matches:'[text=\"继续安装\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6b79c349-8071-4598-a337-20a2f02df2f7',snapshotUrls:'https://i.gkd.li/i/18492712'},{preKeys:[1],key:2,matches:'[text=\"完成\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/445fc7d4-8ee3-4f29-a79b-cd4c0d4fd11f',snapshotUrls:'https://i.gkd.li/i/18492760'}]}]},{id:'com.huawei.hwread.dz',name:'华为阅读',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15862073'}],order:-10}]},{id:'com.huawei.health',name:'华为运动健康',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[id=\"com.huawei.health:id/hiad_skip_text\"]',snapshotUrls:['https://i.gkd.li/i/13215012','https://i.gkd.li/i/13228290']}],order:-10},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.huawei.watchface.api.WebViewActivity',matches:'View[childCount=2] > View + View[childCount=1] > Image[childCount=0]',snapshotUrls:'https://i.gkd.li/i/13546292'}]},{key:3,name:'其他-个性化推荐弹窗',rules:[{activityIds:'com.huawei.watchface.api.WebViewActivity',matches:'[text=\"开启个性化推荐\"] +2 [text=\"开启\"] + Button[clickable=true]',snapshotUrls:'https://i.gkd.li/i/13546292'}]},{key:4,name:'局部广告',rules:[{fastQuery:true,activityIds:'com.huawei.health.MainActivity',matches:'[id=\"com.huawei.health:id/marketing_close_icon\" || vid=\"close_button_layout\"]',snapshotUrls:['https://i.gkd.li/i/13587206','https://i.gkd.li/i/23763115']}]},{key:5,name:'其他-请求开启[实时推送步数]弹窗',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.huawei.health.MainActivity',matches:['[text*=\"实时推送步数\" || text*=\"通知栏实时显示步数\"][visibleToUser=true]','[text*=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/12af7c3a-3d53-43f0-880e-130135bad1a3',snapshotUrls:['https://i.gkd.li/i/14321121','https://i.gkd.li/i/16494762']},{key:1,matches:['[text*=\"是否开启计步功能\"][visibleToUser=true]','[text*=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ab4e3797-40e6-4d1e-96b2-c098e78cf848',snapshotUrls:'https://i.gkd.li/i/20499245'}]},{key:6,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:'com.huawei.hwversionmgr.activity.AppUpdateDialogActivity',matches:'[text=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/15521811'}]}]},{id:'com.huawei.android.thememanager',name:'华为主题',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[text^=\"跳过\"][text.length<=10]',snapshotUrls:['https://i.gkd.li/i/12657379','https://i.gkd.li/i/13069736','https://i.gkd.li/i/13762181']}],order:-10},{key:1,name:'局部广告-悬浮广告',fastQuery:true,rules:[{key:0,activityIds:'com.huawei.android.thememanager.HwThemeManagerActivity',matches:'[vid=\"iv_ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2ca3890a-ef46-4f10-92ec-bfb921582a6a',snapshotUrls:'https://i.gkd.li/i/16993275'},{key:1,activityIds:'com.huawei.android.thememanager.mvp.view.activity.onlinefont.OnlineFontPreviewActivity',matches:'[vid=\"iv_vip_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5e5afbbf-b891-47f3-9543-48ceb3fd0104',snapshotUrls:'https://i.gkd.li/i/16993276'}]},{key:2,name:'分段广告-卡片广告',fastQuery:true,rules:[{key:0,activityIds:'com.huawei.android.thememanager.HwThemeManagerActivity',matches:'[vid=\"pps_label_ll\" || vid=\"announce_ad_close_layout\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/04d831b8-0a98-4b3a-9ecc-f9026c1d7f2c',snapshotUrls:['https://i.gkd.li/i/16992846','https://i.gkd.li/i/16993185']},{key:1,activityIds:'com.huawei.android.thememanager.mvp.view.activity.onlinetheme.OnlineThemePreviewActivity',matches:'@LinearLayout[clickable=true] < LinearLayout -2 LinearLayout >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/1f3cecca-2339-4271-873e-5ecb65263a8a',snapshotUrls:'https://i.gkd.li/i/16993229'},{key:2,activityIds:'com.huawei.android.thememanager.mvp.view.activity.onlinefont.OnlineFontPreviewActivity',matches:'[vid=\"download_pps_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8bace857-9eb3-4b6a-83b7-34328a3f96eb',snapshotUrls:'https://i.gkd.li/i/16993406'},{preKeys:[0,1,2],activityIds:['com.huawei.openalliance.ad.activity.FeedbackActivity','.HwThemeManagerActivity'],anyMatches:['[text=\"直接关闭\"]','@[clickable=true] >2 [text=\"不感兴趣\"]'],exampleUrls:['https://e.gkd.li/93458efb-d891-46b3-a2a0-8629a0399731','https://e.gkd.li/0e72693d-4ad3-4efd-b469-5aa635dd958b'],snapshotUrls:['https://i.gkd.li/i/16992845','https://i.gkd.li/i/16993186']}]},{key:7,name:'全屏广告-首页活动弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.huawei.android.thememanager.HwThemeManagerActivity','com.huawei.android.launcher.unihome.UniHomeLauncher'],matches:'[id=\"com.huawei.android.thememanager:id/campaign_dialog_close_image\"]',snapshotUrls:['https://i.gkd.li/i/12657939','https://i.gkd.li/i/12667815']}]},{key:9,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:'@[text=\"取消\"] < * - * >n [text=\"开启消息通知\"]',snapshotUrls:'https://i.gkd.li/i/12918192'}]},{id:'com.heytap.headset',name:'欢律',groups:[{key:0,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.component.about.FindAppUpgradeActivity',matches:['[text=\"发现新版本\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/14971296','https://i.gkd.li/i/20601909']}]},{key:1,name:'更新提示-耳机固件更新弹窗',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.component.detail.DeviceDetailActivity',matches:['[text=\"耳机固件更新\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/2336ee00-71e3-4e5e-b6e1-d81ea412b67b',snapshotUrls:'https://i.gkd.li/i/20601911'}]}]},{id:'com.zhima.currency',name:'汇率速查',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'@ImageView[childCount=0] < ViewGroup[childCount=1] - ViewGroup > [text=\"反馈\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c07dc400-c222-4592-bf4e-9fa2227a1751',snapshotUrls:['https://i.gkd.li/i/21910422','https://i.gkd.li/i/21910423']},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<70 && height<70] < View[childCount=1] < View[childCount=1] + View > [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6dded2be-0407-488d-a0cc-4aca133f6fc0',snapshotUrls:'https://i.gkd.li/i/21910493'}]}]},{id:'com.dongao.kaoqian.phone',name:'会计云课堂',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"tv_welcome_guide\"]',snapshotUrls:'https://i.gkd.li/i/14809185'}],order:-10}]},{id:'com.aurora_tec.downloader',name:'极光下载器',groups:[{key:1,name:'通知提示-系统公告',desc:'点击[确定]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.HomeActivity',matches:'[text=\"系统公告\"] +2 [text=\"确定\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/45886cda-e54a-4a1f-b136-949b59704f0c',snapshotUrls:'https://i.gkd.li/i/24726084'}]}]},{id:'com.xishang.jihua',name:'加班',groups:[{key:1,name:'全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:['com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'@ImageView[childCount=0][width<100 && height<100] < ViewGroup < ViewGroup < ViewGroup < ViewGroup +2 ViewGroup >3 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5a9d8d4c-a638-46d9-ab67-9b3b115b96e1',snapshotUrls:['https://i.gkd.li/i/21480268','https://i.gkd.li/i/21487176']},{key:1,activityIds:'.MainActivity',matches:'@Image[childCount=0][width<80 && height<80] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22092803'}]}]},{id:'com.handsgo.jiakao.android',name:'驾考宝典',groups:[{key:1,name:'局部广告-悬浮广告',rules:[{key:0,fastQuery:true,activityIds:'com.handsgo.jiakao.android.main.activity.MainActivity',matches:'[id=\"com.handsgo.jiakao.android:id/ivDelete\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13475994'},{key:1,fastQuery:true,activityIds:'.main.activity.MainActivity',matches:'[id=\"com.handsgo.jiakao.android:id/adsdk__ids_component_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a3ff6d58-4902-4ff4-a1dd-dbdb4a9ae38a',snapshotUrls:'https://i.gkd.li/i/13475994'}]},{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@View[clickable=true][childCount=0] < FrameLayout[desc^=\"webview-close\"] +4 FrameLayout >3 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13476039'},{key:1,fastQuery:true,activityIds:'com.handsgo.jiakao.android.main.activity.MainActivity',matches:['[vid=\"adsdk__ids_cta_layout\"][visibleToUser=true]','[vid=\"close\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/20745398'},{key:2,fastQuery:true,activityIds:'.main.activity.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/5370968e-fded-4be0-8fa4-b7997f8a861a',snapshotUrls:'https://i.gkd.li/i/20745379'}]},{key:3,name:'权限提示-通知权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.handsgo.jiakao.android.main.activity.MainActivity',matches:'[text=\"开启专属学习资料推送\"] + [vid=\"closeIv\"]',exampleUrls:'https://e.gkd.li/9a9aad9b-052b-4e00-9926-d4a213f96372',snapshotUrls:'https://i.gkd.li/i/17001986'}]}]},{id:'com.jxedt',name:'驾校一点通',groups:[{key:2,name:'局部广告-卡片广告',rules:[{fastQuery:true,activityIds:'com.jxedt.ui.activitys.exercise.OrderExerciseActivity',matches:'[id=\"com.jxedt:id/img_question_banner_close\"]',snapshotUrls:'https://i.gkd.li/i/13195641'}]},{key:3,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.jxedt.ui.activitys.NewHomeActivity',matches:'[id=\"com.jxedt:id/img_dialog_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13476741'}]}]},{id:'com.danielstudio.app.wowtu',name:'煎蛋',groups:[{key:1,name:'功能类-自动查看高清图片',desc:'点击图片左下角[HD]',rules:[{fastQuery:true,activityIds:'.activity.ImageGalleryActivity',matches:'[vid=\"hd_image\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ec909db9-b585-4d69-a456-aa0865cec6a7',snapshotUrls:'https://i.gkd.li/i/19643465'}]}]},{id:'com.lemon.lv',name:'剪映',groups:[{key:0,name:'分段广告-导出界面底部广告',desc:'点击[关闭]-点击[不感兴趣]',fastQuery:true,activityIds:'com.vega.export.edit.view.ExportActivity',rules:[{key:0,name:'点击[关闭]',matches:'LynxAdComponentView < * > @FlattenUIImage <<n [vid=\"exportAdContainer\"]',snapshotUrls:'https://i.gkd.li/i/14648627'},{preKeys:[0],key:1,name:'点击[不感兴趣]',matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/14648626'}]},{key:1,name:'局部广告-选择素材界面上方广告',rules:[{fastQuery:true,activityIds:'com.vega.libcutsame.select.view.CutSameSelectMediaActivity',matches:'@LynxFlattenUI[clickable=true][visibleToUser=true] +6 [text=\"立即下载\"]',snapshotUrls:'https://i.gkd.li/i/14122865'}]},{key:2,name:'功能类-恢复创作',desc:'自动点击[立即恢复]按钮',rules:[{fastQuery:true,activityIds:'com.vega.main.MainActivity',matches:'[vid=\"tv_title_resume_design\"] +2 [vid=\"tvResumeNow\"]',snapshotUrls:'https://i.gkd.li/i/14292755'}]}]},{id:'com.baidu.searchcraft',name:'简单搜索',groups:[{key:1,name:'局部广告-信息流广告',rules:[{key:0,name:'快手广告',activityIds:'com.baidu.browser.search.LightSearchActivity',matches:'[desc=\"ad-logo\"] + [id=\"logo-close-btn\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13520385'}]}]},{id:'com.jianshu.haruki',name:'简书',groups:[{key:1,name:'全屏广告-VIP弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baiji.jianshu.ui.splash.SplashScreenActivity',matches:'[id=\"com.jianshu.haruki:id/dialog_lucky_prize_close\"]',snapshotUrls:'https://i.gkd.li/i/13327286'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.jianshu.wireless.articleV2.X5ArticleDetailActivity',rules:[{key:0,matches:'@[checked=false] + [text=\"忽略此版本\"]',exampleUrls:'https://e.gkd.li/23662d6a-1858-4d97-9bc7-ef03ede9f316',snapshotUrls:'https://i.gkd.li/i/15989275'},{preKeys:[0],key:1,matches:'[text=\"取消\"]',exampleUrls:'https://e.gkd.li/23662d6a-1858-4d97-9bc7-ef03ede9f316',snapshotUrls:'https://i.gkd.li/i/15989275'}]},{key:3,name:'局部广告-首页信息流广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.baiji.jianshu.MainActivity',matches:'ImageView[vid=\"nativeAdClose\"]',snapshotUrls:'https://i.gkd.li/i/16201541'}]}]},{id:'com.tipsoon.android',name:'简讯',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/7ba2a5cd-12e8-4ac3-a867-8d0f81247d93',snapshotUrls:'https://i.gkd.li/i/14568317'}],order:-10},{key:0,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.tipsoon.android.activity.MainActivity',matches:'[id=\"com.tipsoon.android:id/cardview\"] + [id=\"com.tipsoon.android:id/img_close\"]',snapshotUrls:'https://i.gkd.li/i/13426997'}]}]},{id:'com.jdd.newjdd.app',name:'匠多多师傅版',groups:[{key:1,name:'开屏广告',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"jump\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/10dd2d8b-e48a-4554-a748-c9e156b003d9',snapshotUrls:'https://i.gkd.li/i/23294048'}],order:-10},{key:2,name:'全屏广告',rules:[{fastQuery:true,activityIds:'.activity.MainActivity',matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/557eefdd-fd75-4a93-8f68-6ae8f042270a',snapshotUrls:'https://i.gkd.li/i/23294049'}]},{key:3,name:'通知提示-公告弹窗',desc:'点击[查看详情]-返回关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.MainActivity',rules:[{key:0,matches:['[text=\"系统公告\"][visibleToUser=true]','[text=\"点击查看详情\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/146c27dc-9e92-4074-930f-d099c65c44f2',snapshotUrls:'https://i.gkd.li/i/23295736'},{preKeys:[0],matches:'@View[clickable=true] >2 [childCount=0][text=\"\"][visibleToUser=true] <<n [vid=\"webviewschool\"]',exampleUrls:'https://e.gkd.li/dff1e373-76eb-43d7-9bec-229eebae511d',snapshotUrls:'https://i.gkd.li/i/23295738'}]}]},{id:'com.tmri.app.main',name:'交管12123',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6bbf28ed-9e78-4006-9225-49c07954ee45',snapshotUrls:'https://i.gkd.li/i/25207240'}],order:-10},{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.tmri.app.ui.activity.main.MainTabHostNewActivity','com.tmri.app.ui.activity.main.TmriNewActivity'],matches:'ImageButton[id=\"com.tmri.app.main:id/btn_cancel\"]',snapshotUrls:['https://i.gkd.li/i/13315944','https://i.gkd.li/i/13779215']}]},{key:2,name:'功能类-确认退出',desc:'点击[确认]',rules:[{fastQuery:true,activityIds:'com.tmri.app.ui.activity.main.MainTabHostNewActivity',matches:['[text=\"是否确认退出?\"]','[text=\"确认\"]'],snapshotUrls:'https://i.gkd.li/i/15597285'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tmri.app.ui.activity.main.MainTabHostNewActivity',matches:['[text=\"立即更新\"]','[text=\"以后再说\"]'],snapshotUrls:'https://i.gkd.li/i/15751656'}]}]},{id:'com.bankcomm.Bankcomm',name:'交通银行',groups:[{key:0,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.bankcomm.module.biz.home.MainActivity',matches:'[vid=\"popup_close\"]',snapshotUrls:'https://i.gkd.li/i/15046998'}]},{key:1,name:'更新提示',desc:'点击 暂不更新',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bankcomm.module.biz.webcontainer.BCMHtml5Activity',matches:'[id = \"com.bankcomm.Bankcomm:id/tvNotNow\" && text = \"暂不更新\"]',snapshotUrls:'https://i.gkd.li/i/12842484'}]},{key:2,name:'通知提示-网络代理提示弹窗',desc:'点击[继续使用]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.bankcomm.module.biz.home.MainActivity',matches:'[text=\"继续使用\"]',exampleUrls:'https://e.gkd.li/b9854883-ed3c-4a55-bd8e-7af7c02d59ba',snapshotUrls:'https://i.gkd.li/i/17556284'}]}]},{id:'com.hello.pet',name:'街猫',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text^=\"开启通知\"] +2 [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14622639'}]}]},{id:'com.fileunzip.zxwknight',name:'解压专家',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,name:'字节广告',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'Image < @View[visibleToUser=true] +4 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13328194'},{key:2,name:'腾讯广告',fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13391833'}]},{key:2,name:'全屏广告-升级专业版弹窗',rules:[{fastQuery:true,activityIds:['com.fileunzip.zxwknight.activity.MainActivity','com.fileunzip.zxwknight.activity.VideoPlayActivity'],matches:'@[vid=\"ziputil_dialog_imageview\"] < * > [text=\"升级到专业版\"]',snapshotUrls:['https://i.gkd.li/i/13328212','https://i.gkd.li/i/14885336']}]},{key:3,name:'全屏广告-软件推广',desc:'全能保险箱',fastQuery:true,rules:[{key:0,matches:'[vid=\"dialog_recommend_back\"]',exampleUrls:'https://m.gkd.li/57941037/de127f4b-5de6-41ab-a1ea-5a98f7eeab58',snapshotUrls:'https://i.gkd.li/i/14472568'},{key:1,activityIds:'com.fileunzip.zxwknight.activity.MainActivity',matches:'@[text=\"本次启动不再提示\"][checked=false]',exampleUrls:'https://m.gkd.li/57941037/57e29faf-2806-4166-a21d-839f1479960d',snapshotUrls:'https://i.gkd.li/i/14885425'},{preKeys:[1],key:2,activityIds:'com.fileunzip.zxwknight.activity.MainActivity',matches:'[vid=\"promote_vault_full_screen_close\"]',exampleUrls:'https://m.gkd.li/57941037/57e29faf-2806-4166-a21d-839f1479960d',snapshotUrls:'https://i.gkd.li/i/14885425'}]},{key:4,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[vid=\"ziputil_dialog_imageview\"] + [text=\"有新版本啦\"]',exampleUrls:'https://m.gkd.li/57941037/a428a59c-5cdd-47e9-bfc5-492b43ed169a',snapshotUrls:'https://i.gkd.li/i/14900121'}]}]},{id:'camera.timestamp.mark.watermark',name:'今日水印相机',groups:[{key:1,name:'全屏广告-谷歌广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.google.android.gms.ads.AdActivity',matches:'@ImageButton[desc=\"Interstitial close button\"][visibleToUser=true] < FrameLayout <2 RelativeLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/1ab940d5-88b8-4088-81fe-9cb72c4cbd53',snapshotUrls:'https://i.gkd.li/i/17058992'}]}]},{id:'com.ss.android.article.news',name:'今日头条',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,activityIds:['com.bytedance.ies.outertest.cn.OuterTestGuideDialogActivity','com.ss.android.article.base.feature.ugc.story.StoryVideoActivity'],matches:'@[desc=\"关闭\"] -(2,3) [text*=\"版本更新\" || text*=\"升级版本\"]',snapshotUrls:['https://i.gkd.li/i/13316081','https://i.gkd.li/i/17681710']},{key:1,activityIds:'.activity.MainActivity',matches:'[text=\"以后再说\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/79b75132-9d6f-4e4c-a95b-56dbaca1965d',snapshotUrls:'https://i.gkd.li/i/18194356'}]},{key:2,name:'局部广告-浮窗广告',rules:[{key:0,name:'首页-浮窗广告',activityIds:'com.ss.android.article.news.activity.MainActivity',matches:'FrameLayout > FrameLayout > FrameLayout[childCount=2] > @ImageView + ImageView[clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13762123'},{key:1,name:'视频页-浮窗广告',activityIds:'com.ss.android.ugc.detail.activity.TikTokActivity',matches:'FrameLayout > FrameLayout > FrameLayout[childCount=2] > ImageView + ImageView[clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13761236'}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.MainActivity',rules:[{key:0,matches:'[text^=\"开启通知\"] + LinearLayout > [text=\"暂不开启\"]',snapshotUrls:'https://i.gkd.li/i/12706699'},{key:1,matches:'[text^=\"开启通知\"] < LinearLayout +2 ImageView[desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/12840217'}]},{key:11,name:'全屏广告-竖屏视频广告',desc:'点击右上角[更多]图标按钮,点击不感兴趣',activityIds:'com.ss.android.ugc.detail.activity.TikTokActivity',rules:[{key:0,name:'点击右上角[更多]图标按钮',matches:'ImageView[clickable=true][desc=\"更多\"]',snapshotUrls:['https://i.gkd.li/i/12679280','https://i.gkd.li/i/12733282','https://i.gkd.li/i/12763251','https://i.gkd.li/i/12763252','https://i.gkd.li/i/12733281','https://i.gkd.li/i/13185633','https://i.gkd.li/i/13186082','https://i.gkd.li/i/13930050']},{key:-1,preKeys:[0],actionCd:35000,name:'点击不感兴趣',matches:'@LinearLayout[clickable=true] > RelativeLayout + TextView[text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12679277'}]},{key:12,name:'分段广告-信息流广告',desc:'点击右上角x按钮,点击[不感兴趣]',fastQuery:true,activityIds:['com.ss.android.article.news.activity.MainActivity','com.bytedance.ugc.innerfeed.impl.PostInnerFeedActivity'],rules:[{key:0,name:'点击右上角x按钮',matches:'UIView[text^=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12836272','https://i.gkd.li/i/13093576','https://i.gkd.li/i/16624480']},{preKeys:[0],key:1,name:'点击不感兴趣',matches:'@[clickable=true] >(1,2) [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/12733152','https://i.gkd.li/i/12755265','https://i.gkd.li/i/16624474','https://i.gkd.li/i/16624395','https://i.gkd.li/i/17893117']}]},{key:13,name:'局部广告-底部话题推荐弹窗',rules:[{activityIds:'com.ss.android.article.news.activity.MainActivity',name:'话题谈论',matches:'FlattenUIText[text=\"参与讨论\"] + FlattenUIImage[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12706699'}]},{key:14,name:'功能类-自动观看广告视频',desc:'自动观看广告并等待30s后关闭',fastQuery:true,rules:[{key:0,name:'点击\"看视频\"',activityIds:'com.ss.android.article.news.activity.MainActivity',matches:'[id=\"com.bytedance.novel.api:id/component_ad_dialog_button_video\"]',snapshotUrls:'https://i.gkd.li/i/13402468'},{preKeys:[0],name:'等待30s点击\"关闭\"',actionDelay:30000,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'UIText[text=\"广告\"] +n UIText[text=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13402480'}]},{key:15,name:'局部广告-底部热榜弹窗',desc:'点击X',rules:[{activityIds:'com.ss.android.article.news.activity.MainActivity',matches:'FrameLayout[childCount=8] > FlattenUIImage[index=7]',snapshotUrls:'https://i.gkd.li/i/13828331'}]},{key:16,name:'功能类-[关联抖音账号]弹窗',desc:'点击关闭',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ss.android.article.news.activity.MainActivity',matches:'@[desc=\"关闭\"] + [text^=\"关联\"]',exampleUrls:'https://m.gkd.li/57941037/c938001e-f39b-4ece-ad0e-2c93ba41aa94',snapshotUrls:'https://i.gkd.li/i/14717889'}]},{key:17,name:'功能类-[下次打开APP默认进入发现频道]弹窗',desc:'点击取消',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ss.android.article.news.activity.MainActivity',matches:'[text^=\"下次打开APP默认进入\"]',exampleUrls:'https://m.gkd.li/57941037/6166519d-d38d-49c0-b54b-72c25670aa24',snapshotUrls:'https://i.gkd.li/i/15102876'}]},{key:18,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.MainActivity',matches:'[id=\"android:id/content\"] > FrameLayout[childCount=3] > ImageView[clickable=true][visibleToUser=true][index=2]',exampleUrls:'https://e.gkd.li/c3889d29-7260-4ab1-8070-75a6a68e4e2c',snapshotUrls:'https://i.gkd.li/i/15314921'},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.MainActivity',matches:'@FlattenUIImage[text=\"\"] -10 FlattenUIText[text=\"恭喜获得惊喜奖励\"]',exampleUrls:'https://e.gkd.li/057d40f6-f94e-4b54-857f-b5b11de245a5',snapshotUrls:'https://i.gkd.li/i/17681713'}]}]},{id:'com.wisedu.cpdaily',name:'今日校园',groups:[{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'com.wisorg.wisedu.home.ui.HomeActivity',matches:'[id=\"com.wisedu.cpdaily:id/btn_update\"] + [id=\"com.wisedu.cpdaily:id/tv_ignore\"]',snapshotUrls:'https://i.gkd.li/i/13643565'}]}]},{id:'cn.wps.yun',name:'金山文档',groups:[{key:1,name:'局部广告-列表卡片广告',desc:'点击右侧x',rules:[{fastQuery:true,activityIds:'cn.wps.yun.ui.IndexActivity',matches:'[id=\"cn.wps.yun:id/rootGroup\"][childCount=5] >  [text^=\"实用技巧\"] +3 [id=\"cn.wps.yun:id/moreIconRight\"]',exampleUrls:'https://m.gkd.li/47232102/bc97cb52-aad0-4114-a548-5831edbe342d',snapshotUrls:'https://i.gkd.li/i/13495062',excludeSnapshotUrls:'https://i.gkd.li/i/14333322'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.IndexActivity',matches:'[text=\"发现新版本\"] +3 [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14333103'}]},{key:3,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.IndexActivity',matches:'[text=\"开启推送通知\"] +2 * > [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14333362'}]}]},{id:'com.jin10',name:'金十数据',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.lgd.update.UpdateActivity',matches:'@[id=\"com.jin10:id/update_cancel\"] + [id=\"com.jin10:id/iv_pic\"]',snapshotUrls:'https://i.gkd.li/i/12706043'}]},{key:2,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.jin10.lgd.biz.MainActivity',matches:'[id=\"com.jin10:id/iv_body\"] + [id=\"com.jin10:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12706045'}]},{key:3,name:'全屏广告-快讯页面弹窗广告',rules:[{activityIds:'com.jin10.lgd.biz.MainActivity',matches:'@[id=\"com.jin10:id/iv_close\"] + [id=\"com.jin10:id/iv_pic\"]',snapshotUrls:'https://i.gkd.li/i/12706047'}]},{key:10,name:'局部广告-会员页面顶部广告',rules:[{activityIds:'com.jin10.lgd.biz.MainActivity',matches:'[id=\"com.jin10:id/iv_header\"] + [id=\"com.jin10:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12706051'}]}]},{id:'com.jingdong.app.mall',name:'京东',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,excludeActivityIds:'com.jd.lib.search.view.Activity.SearchActivity',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/16323111',excludeSnapshotUrls:'https://i.gkd.li/i/16323115'},{key:1,excludeActivityIds:'com.jd.lib.search.view.Activity.SearchActivity',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17602356',excludeSnapshotUrls:'https://i.gkd.li/i/16323115'}],order:-10},{key:1,name:'局部广告-购物车页面砸金蛋',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.jingdong.app.mall.MainFrameActivity',matches:'[id=\"com.jd.lib.cart.feature:id/iv_egg_close\"]',snapshotUrls:'https://i.gkd.li/i/14731003'}]},{key:2,name:'局部广告-悬浮广告',activityIds:'com.jingdong.app.mall.MainFrameActivity',rules:[{key:0,matches:'FrameLayout + RelativeLayout > RelativeLayout > ImageView + ImageView[desc=null][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12642270','https://i.gkd.li/i/12774910'],excludeSnapshotUrls:'https://i.gkd.li/i/15110548'},{key:1,matches:'@ImageView[id!=null] + FrameLayout[childCount=3] > ImageView + LinearLayout + TextView',snapshotUrls:'https://i.gkd.li/i/13242002'},{key:2,matches:'[desc=\"关闭浮层icon\"][clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13165659','https://i.gkd.li/i/12837870','https://i.gkd.li/i/13072091','https://i.gkd.li/i/12837870','https://i.gkd.li/i/15077913']}]},{key:4,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['.MainFrameActivity','com.jd.lib.message.messagecenter'],matches:'@ImageView[index=parent.childCount.minus(1)][clickable=true][visibleToUser=true] -n [text=\"开启消息通知\"]',snapshotUrls:['https://i.gkd.li/i/13917163','https://i.gkd.li/i/13463618','https://i.gkd.li/i/14692570','https://i.gkd.li/i/18060234']},{key:1,activityIds:'com.jd.lib.message.messagecenter',matches:'@[clickable=true] + [text^=\"打开系统通知\"]',snapshotUrls:'https://i.gkd.li/i/12839865'}]},{key:5,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.jingdong.app.mall.MainFrameActivity',matches:'@FrameLayout[clickable=true] > [desc=\"关闭\"]',excludeMatches:'[text=\"确定\" || text=\"加入购物车\" || text*=\"购买\" || text*=\"下单\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13165721','https://i.gkd.li/i/15364514'],excludeSnapshotUrls:'https://i.gkd.li/i/18455760'},{key:1,fastQuery:true,activityIds:['com.jd.lib.cashier.complete.view.CashierCompleteActivity','com.jd.lib.jshop.jshop.JshopMainShopActivity'],matches:'[vid=\"close\"][desc=\"关闭页面\"]',snapshotUrls:['https://i.gkd.li/i/13218034','https://i.gkd.li/i/14927060']},{key:2,fastQuery:true,activityIds:['com.jingdong.app.mall.MainFrameActivity','com.jd.lib.jshop.jshop.JshopMainShopActivity'],excludeMatches:['ImageView[desc=\"关闭页面\"] - [text=\"优惠券\"]','TextView[text=\"退换/售后\"][id=null]','[text=\"立即购买\"][visibleToUser=true]'],matches:'[desc=\"关闭页面\" || desc=\"关闭按钮\"][clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13241883','https://i.gkd.li/i/13258996','https://i.gkd.li/i/13336847','https://i.gkd.li/i/15416926','https://i.gkd.li/i/15862131','https://i.gkd.li/i/16818580','https://i.gkd.li/i/24170046']},{key:3,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',action:'back',activityIds:'.MainFrameActivity',matches:'[text^=\"惊喜福利来袭\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/580d3cb5-503e-47a9-ba88-056e91c2f084',snapshotUrls:'https://i.gkd.li/i/17974166'}]},{key:6,name:'局部广告-横幅广告',activityIds:'com.jingdong.app.mall.MainFrameActivity',rules:[{key:0,matches:'ImageView < FrameLayout - FrameLayout > ImageView[desc=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/13258973','https://i.gkd.li/i/13258980','https://i.gkd.li/i/13258981']},{key:1,fastQuery:true,matches:'@ViewGroup[clickable=true] - * > [text=\"去续费\"]',snapshotUrls:'https://i.gkd.li/i/15047238'},{key:2,matches:'[desc=\"吸顶楼层\"] > [desc=\"关闭按钮\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15112953'},{key:3,fastQuery:true,matches:'[id=\"com.jd.lib.cart.feature:id/plus_close\"]',snapshotUrls:'https://i.gkd.li/i/15229577'}]},{key:10,name:'功能类-京东账号登录授权',desc:'自动点击\"确认登录\"',activityIds:'com.jingdong.app.mall.WebActivity',rules:'[text=\"京东登录\"] > [desc=\"确认登录\"]',snapshotUrls:'https://i.gkd.li/i/12901734'},{key:11,name:'局部广告-支付页面产品推荐',desc:'自动点击右上角\"x\"',activityIds:'com.jd.lib.settlement.fillorder.activity.NewFillOrderActivity',rules:'ImageView[clickable=true && desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13191146'},{key:12,name:'全屏广告-购物车页面支付成功弹窗广告',desc:'自动点击正下方的\"x\"',fastQuery:true,rules:[{activityIds:'com.jd.lib.cart.ShoppingCartNewActivity',matches:'@ImageView - ViewGroup >2 TextView[text=\"查看订单\"]',snapshotUrls:'https://i.gkd.li/i/13446362'}]},{key:13,name:'全屏广告-加入购物车后出现的弹窗',desc:'点击[继续逛]',rules:[{fastQuery:true,activityIds:'com.jd.lib.productdetail.ProductDetailActivity',matches:'[text=\"继续逛\"]',snapshotUrls:'https://i.gkd.li/i/15047243'}]},{key:14,name:'功能类-支付订单后点击[完成]',rules:[{fastQuery:true,activityIds:'.bundle.cashierfinish.view.CashierUserContentCompleteActivity',matches:'[vid=\"lib_cashier_finish_back_page_text\"]',exampleUrls:'https://e.gkd.li/ab886df0-2b34-4804-be7d-742a06fadda9',snapshotUrls:'https://i.gkd.li/i/17358003'}]},{key:15,name:'功能类-支付订单后跳过开通[刷脸支付]',matchTime:10000,actionMaximum:1,resetMatch:'activity',rules:[{fastQuery:true,activityIds:'com.wangyin.payment.jdpaysdk.counter.ui.pay.CounterActivity',action:'back',matches:'[text=\"开启刷脸支付\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bad5489e-0ec6-4039-8e4e-52b4b444f019',snapshotUrls:'https://i.gkd.li/i/20709175'}]},{key:16,name:'功能类-展开全部订单信息',desc:'订单已完成-点击全部订单信息',rules:[{actionMaximum:1,resetMatch:'match',fastQuery:true,matches:'[text=\"全部订单信息\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e1a3b6f7-b6cb-4379-90b5-cb4b927dacc4',snapshotUrls:'https://i.gkd.li/i/24372039'}]}]},{id:'com.jingdong.pdj',name:'京东到家',groups:[{key:1,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'pdj.main.MainActivity',rules:[{key:0,matches:'WebView[text=\"京东到家\"] >5 @View[clickable=true][childCount=1][visibleToUser=true] > View[childCount=1] > TextView[childCount=0] <<n [id=\"com.jingdong.pdj:id/mWebView\"]',snapshotUrls:'https://i.gkd.li/i/13217796'},{key:1,matches:'[id=\"com.jingdong.pdj:id/ivClose\"][desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13223282'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.plunginupdate.update.UpdateDialogActivity',matches:'Button[text=\"暂不安装\"]',snapshotUrls:'https://i.gkd.li/i/13217634'}]}]},{id:'com.jd.app.reader',name:'京东读书',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://m.gkd.li/57941037/6f4561e5-b998-43f9-8848-b6b43d045a3d',snapshotUrls:'https://i.gkd.li/i/14189228'},{key:1,fastQuery:true,matches:'[vid=\"mJumpBtn\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/28a83ffc-ba28-4d0e-8f28-b48a4a542f23',snapshotUrls:'https://i.gkd.li/i/16486457'},{key:2,fastQuery:true,position:{left:'width * 0.9007',top:'width * 0.1603'},matches:'[id=\"com.jd.app.reader:id/animation_view\"]',exampleUrls:'https://m.gkd.li/57941037/ab677b66-4681-4672-a1d6-3b5938e7f374',snapshotUrls:'https://i.gkd.li/i/13264389'}],order:-10},{key:2,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.jingdong.app.reader.main.ui.JdMainActivity',matches:'[vid=\"mCloseBtn\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ac85ef54-5180-4740-b12d-608b37ad5502',snapshotUrls:'https://i.gkd.li/i/16486458'}]},{key:3,name:'全屏广告-阅读页面弹窗广告',rules:[{activityIds:'com.jd.read.engine.activity.EngineReaderActivity',matches:'[id$=\"ad_read_close\"]',snapshotUrls:['https://i.gkd.li/i/12881810','https://i.gkd.li/i/12893631']}]}]},{id:'com.jd.jrapp',name:'京东金融',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.bm.mainbox.main.MainActivity',matches:'TextView[text^=\"打开通知\"] +2 [id=\"com.jd.jrapp:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13249998'},{key:1,activityIds:'.bm.common.web.ui.WebActivity',matches:'@View - * > [visibleToUser=true][text=\"开启并订阅通知\"] <<n [id=\"com.jd.jrapp:id/webview\"]',snapshotUrls:'https://i.gkd.li/i/13255656'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.bm.mainbox.main.MainActivity',matches:'@ImageButton[id=\"com.jd.jrapp:id/ib_close\"] + RelativeLayout [text^=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/13628364'}]},{key:3,name:'评价提示-满意度打分弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.dy.api.JRDynamicPickerActivity',matches:'@ImageView[clickable=true] - [text$=\"满意度打几分？\"]',snapshotUrls:'https://i.gkd.li/i/13804561'}]}]},{id:'com.jdcar.jch',name:'京东养车',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'@[vid^=\"tv_jump\"][visibleToUser=true] - [vid=\"splash_ad_layout\"]',exampleUrls:'https://e.gkd.li/123daf14-31ac-4b5f-93cf-8b05efa26d03',snapshotUrls:'https://i.gkd.li/i/18308609'}],order:-10},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.jingdong.app.mall.MainFrameActivity',matches:'[id=\"com.jd.jdjch.lib.aurahome.feature:id/img_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/70efe1ea-0456-4438-b046-3494393191d7',snapshotUrls:'https://i.gkd.li/i/18287988'}]}]},{id:'com.jdcloud.mt.smartrouter',name:'京东云无线宝',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'[vid=\"iv_close\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/26521f31-ee9b-4bab-8275-fab75a76c96e',snapshotUrls:'https://i.gkd.li/i/14432168'}]}]},{id:'com.jd.jxj',name:'京粉',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.jd.jxj.modules.main.SlidingTabActivity',matches:'[vid=\"popup_close_imgid\"]',exampleUrls:'https://m.gkd.li/57941037/ac5a04ef-3199-4ae5-8863-ea365b5efbab',snapshotUrls:'https://i.gkd.li/i/15369226'}]}]},{id:'com.jd.pingou',name:'京喜',groups:[{key:1,name:'权限提示-定位权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.jd.jdlite.MainFrameActivity',matches:'@ImageView[clickable=true][visibleToUser=true] -2 [text^=\"开启定位授权\"]',exampleUrls:'https://e.gkd.li/311e64ee-e775-41fb-b981-ceead0280ac7',snapshotUrls:'https://i.gkd.li/i/13804515'}]}]},{id:'com.jd.jdlite',name:'京喜特价',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.jd.jdlite.MainFrameActivity',matches:'@[desc=\"关闭页面\"] - FrameLayout >n [text=\"极速版弹窗\"]',snapshotUrls:'https://i.gkd.li/i/12727396'}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainFrameActivity',matches:'@ImageView[clickable=true] - LinearLayout > [text=\"开启消息通知\"]',snapshotUrls:'https://i.gkd.li/i/13062969'}]}]},{id:'com.llmm.huiyuanuxiang',name:'囧次元',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text!=null][childCount=0][visibleToUser=true] - View >2 [text=\"恭喜获得优惠券\"]',exampleUrls:'https://e.gkd.li/12d1cfdb-9aa0-4688-8997-733611c0faaf',snapshotUrls:'https://i.gkd.li/i/18129413'}]}]},{id:'com.tingfeng.tool',name:'囧次元',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{fastQuery:true,activityIds:['com.windmill.sdk.widget.InterstitialView','app.video.guoguo.MainActivity'],matches:'[vid=\"tobid_interstitial_skip_ll\" || vid=\"tobid_splash_skip_ll\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/64670315-c171-42f9-a55a-5bedf29f24c3',snapshotUrls:['https://i.gkd.li/i/21278557','https://i.gkd.li/i/21282765']}]}]},{id:'com.viva.note',name:'囧次元',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'[desc=\"不再显示\"]',snapshotUrls:'https://i.gkd.li/i/12888361'}]},{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.sigmob.sdk.base.common.TransparentAdActivity',matches:'[id=\"ad_area\"] [id=\"close_btn\"]',snapshotUrls:['https://i.gkd.li/i/12888388','https://i.gkd.li/i/12888419','https://i.gkd.li/i/12888578','https://i.gkd.li/i/12888647']},{key:1,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'TextView[text=\"反馈\"] + @ImageView[clickable=true] + TextView',snapshotUrls:'https://i.gkd.li/i/12888945'},{key:2,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\" || text=\"打开快应用\"]',snapshotUrls:'https://i.gkd.li/i/13213661'}]}]},{id:'com.juduoduo.app',name:'剧多多',groups:[{key:6,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13705650'},{key:1,matches:'[id=\"com.juduoduo.app:id/ksad_tk_view\"] @ViewGroup[clickable=true] > [text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/13705662'}]}]},{id:'com.example.yr',name:'剧兔',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/be778e3c-e2fd-4223-842d-9cbbc0fb0bbb',snapshotUrls:'https://i.gkd.li/i/16115831'},{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/3c5ff634-fe35-4ceb-8e67-565ab3367313',snapshotUrls:'https://i.gkd.li/i/16115830'}]}]},{id:'cn.trinea.android.developertools',name:'开发助手',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'c.b.a',matches:'View[childCount=2] > View[childCount=1] + @Button[childCount=0] <<n [vid=\"alayout\"]',exampleUrls:'https://m.gkd.li/57941037/6236d6de-c4e1-44d1-b6ff-f472996464a1',snapshotUrls:'https://i.gkd.li/i/15140643'}]}]},{id:'com.nursinghome.monitor',name:'看护家',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.activity.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[clickable=true][childCount=1] < ViewGroup <6 ViewGroup + ViewGroup >3 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/12316698-b92f-4a78-be55-5d9a90700f4a',snapshotUrls:'https://i.gkd.li/i/17504953'},{key:2,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][childCount=0] + RelativeLayout >2 [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24979384'},{key:3,fastQuery:true,activityIds:'com.ja.adx.qiming.ad.activity.InterstitialActivity',matches:'[vid=\"qiming_widget_iv_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24979391'}]}]},{id:'com.bx.game.dgg',name:'看剧',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -2 @View > Image[childCount=0][text=\"\"]',snapshotUrls:'https://i.gkd.li/i/15335006'},{key:1,fastQuery:true,activityIds:'com.anythink.basead.ui.ATPortraitTranslucentActivity',matches:'[vid=\"anythink_myoffer_btn_close_id\"]',snapshotUrls:'https://i.gkd.li/i/15362931'},{key:2,fastQuery:true,activityIds:'com.bx.game.dgg.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/15362927'},{key:3,fastQuery:true,activityIds:'com.bx.game.dgg.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/15400143'}]},{key:2,name:'通知提示-[温馨提示]弹窗',desc:'点击[我知道了]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bx.game.dgg.MainActivity',matches:'@Button[desc=\"我知道了\"][visibleToUser=true] < View <2 View < View < View < View < View < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/8a825661-5595-4577-835c-2a0b2d41bc14',snapshotUrls:'https://i.gkd.li/i/15362930'}]}]},{id:'com.kaoshibaodian.app',name:'考试宝',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['ksbd.quiz.QuizActivity','ksbd.app.practice.QuizActivity'],matches:'FrameLayout[childCount=5] > @FrameLayout[childCount=1][text=null] > ImageView[childCount=0][text=null] <<n [vid=\"ad_layout\"]',exampleUrls:'https://e.gkd.li/c55cd473-21fa-4843-9778-89a3f5c8e073',snapshotUrls:['https://i.gkd.li/i/16492043','https://i.gkd.li/i/21617553']},{key:1,fastQuery:true,activityIds:['ksbd.quiz.QuizActivity','ksbd.app.practice.QuizActivity'],matches:'[vid=\"close_iv\"]',exampleUrls:'https://e.gkd.li/c55cd473-21fa-4843-9778-89a3f5c8e073',snapshotUrls:['https://i.gkd.li/i/16492043','https://i.gkd.li/i/21617553']}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'ksbd.app.home.HomeActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/92252573-11c8-4ce8-a0df-4c7e94b7c101',snapshotUrls:'https://i.gkd.li/i/16492018'},{key:1,fastQuery:true,activityIds:'ksbd.app.lib.libOrExam.ExerciseAct',matches:'[vid=\"img_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bc0fdaa3-a33e-48ba-83aa-28a28da60d3a',snapshotUrls:'https://i.gkd.li/i/21617539'}]}]},{id:'com.copymanga.app',name:'拷貝漫畫',groups:[{key:1,name:'全屏广告-弹窗广告',actionDelay:400,rules:[{key:0,name:'快手广告-1',fastQuery:true,activityIds:'com.copymanga.app.MainActivity',matches:['[text=\"广告\"]','@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]'],snapshotUrls:'https://i.gkd.li/i/13259085'},{key:1,name:'快手广告-2',fastQuery:true,activityIds:['com.copymanga.app.MainActivity','com.kwad.components.ad.interstitial'],matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/13625486','https://i.gkd.li/i/12504488','https://i.gkd.li/i/13344156']},{key:2,name:'快手广告-3',fastQuery:true,activityIds:'com.copymanga.app.MainActivity',matches:['ViewGroup > [text=\"广告\"]','@ViewGroup[clickable=true] > [text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13696292'},{key:3,name:'腾讯广告-1',fastQuery:true,activityIds:'com.copymanga.app.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12504520','https://i.gkd.li/i/12661019','https://i.gkd.li/i/13193877','https://i.gkd.li/i/12892156','https://i.gkd.li/i/12504501','https://i.gkd.li/i/13259082']},{key:4,name:'腾讯广告-2',fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/13246786'},{key:5,name:'腾讯广告-3',fastQuery:true,activityIds:'com.copymanga.app.MainActivity',matches:'[id=\"com.copymanga.app:id/interact_ad_root\"] > [id=\"com.copymanga.app:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/13521801','https://i.gkd.li/i/13332719']},{key:6,name:'腾讯广告-4',fastQuery:true,matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13233178'},{key:7,name:'字节广告-1',fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@View[clickable=true] < FrameLayout[desc*=\"close\"] +4 FrameLayout[desc!=null] >2 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13372542'},{key:8,fastQuery:true,activityIds:'com.beizi.ad.v2.activity.BeiZiNewInterstitialActivity',matches:'@[clickable=true] > ImageView[vid=\"beizi_interstitial_ad_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/25049918'},{key:9,name:'字节广告-3',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12925052','https://i.gkd.li/i/12925095']},{key:10,name:'百度广告-1',fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true] - RelativeLayout >2 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/25189723'}]},{key:2,name:'局部广告-卡片广告',rules:[{key:0,name:'快手广告-1',activityIds:'com.copymanga.app.MainActivity',matches:'[id^=\"com.copymanga.app:id/ad_flag_source\"] - * > [id=\"com.copymanga.app:id/close\"]',snapshotUrls:'https://i.gkd.li/i/12504525'},{key:1,name:'快手广告-2',activityIds:'com.copymanga.app.MainActivity',fastQuery:true,matches:'[id=\"com.copymanga.app:id/close_m_image_left_text_right_no_compliance\"]',snapshotUrls:'https://i.gkd.li/i/13761154'},{key:2,name:'腾讯广告',activityIds:'com.copymanga.app.MainActivity',matches:'FrameLayout[childCount=3] > LinearLayout + FrameLayout[childCount=1] > ImageView[id=null]',snapshotUrls:['https://i.gkd.li/i/12851671','https://i.gkd.li/i/12909005']}]},{key:3,name:'全屏广告-关闭赞助提示',activityIds:'com.copymanga.app.MainActivity',rules:[{matches:'@[desc=\"就这样吧\"] + [desc^=\"赞助免广告\"]',snapshotUrls:'https://i.gkd.li/i/12851627'}]},{key:4,name:'功能类-自动确认线路',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"进入拷贝漫画\"]',snapshotUrls:'https://i.gkd.li/i/13233179'}]},{key:5,name:'通知提示-公告弹窗',matchTime:30000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"系统提示\"] +2 [desc=\"确定\"]',exampleUrls:'https://m.gkd.li/57941037/7577dafa-9e3e-44de-bd20-c52f8a30e9c6',snapshotUrls:'https://i.gkd.li/i/13233180'}]}]},{id:'com.keke.ysh1.tz08051h',name:'可可影视',groups:[{key:1,name:'通知提示-公告弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.salmon.film.main.ui.MainActivity',rules:[{key:1,matches:'[text=\"朕知道了\"]',snapshotUrls:'https://i.gkd.li/i/13548412'}]}]},{id:'com.kk.ysk3.tz12063k',name:'可可影视',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击[朕知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.salmon.film.main.ui.MainActivity',matches:'[text=\"朕知道了\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/c93d9be8-559a-46aa-8416-f52a7c99df4b',snapshotUrls:'https://i.gkd.li/i/14321907'}]}]},{id:'com.kurogame.kjq',name:'库街区',groups:[{key:1,name:'功能类-自动签到',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.kurogame.kjq.MainActivity',rules:[{key:0,matches:'[vid=\"sign_click\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15521224'},{preKeys:[0],key:1,matches:'[vid=\"bt_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15521225'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.kurogame.kjq.MainActivity',matches:'[vid=\"close\"]',exampleUrls:'https://m.gkd.li/57941037/d9c598fc-5bd4-4773-8db1-316b8f7155c3',snapshotUrls:'https://i.gkd.li/i/15629864'}]},{key:3,name:'功能类-鸣潮自动签到',activityIds:'com.kurogame.kjq.profile.ui.activity.WebViewShareActivity',rules:[{key:0,matches:'[text=\"《鸣潮》每日签到工具\"] >6 ListView[childCount=12] > @View[childCount=3][visibleToUser=true] > TextView[width<150] <3 * + View[childCount=2]',snapshotUrls:['https://i.gkd.li/i/15632005','https://i.gkd.li/i/15632902']},{preKeys:[0],key:1,matches:'@TextView - * > [text=\"签到成功！\"]',snapshotUrls:'https://i.gkd.li/i/15632138'},{preKeys:[1],key:2,action:'back',matches:'View[text=\"《鸣潮》每日签到工具\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15632250'}]}]},{id:'com.coolapk.market',name:'酷安',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,excludeActivityIds:['.view.search.','.view.feed.','.view.node.DynamicNodePageActivity'],rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/12503773','https://i.gkd.li/i/13247610','https://i.gkd.li/i/13264779','https://i.gkd.li/i/13826359','https://i.gkd.li/i/13827095']},{key:1,fastQuery:true,matches:'[!(id=\"com.coolapk.market:id/item_view\") && !(vid=\"card_view\")] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12917990','https://i.gkd.li/i/13211392','https://i.gkd.li/i/23097140'],excludeSnapshotUrls:['https://i.gkd.li/i/13247733','https://i.gkd.li/i/13296816','https://i.gkd.li/i/18245546']}],order:-10},{key:0,name:'分段广告-信息流广告',fastQuery:true,activityIds:['.view.feed.FeedDetailActivityV8','.view.main.MainActivity','.view.node.DynamicNodePageActivity','.view.base.SimpleAlphaActivity','.view.search.SuperSearchResultActivity'],rules:[{key:0,matches:'@[vid=\"close_view\"] <<n [vid=\"coolapk_card_view\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/19004644','https://i.gkd.li/i/19004652','https://i.gkd.li/i/19004663','https://i.gkd.li/i/19005176','https://i.gkd.li/i/20776874','https://i.gkd.li/i/21693917'],excludeSnapshotUrls:['https://i.gkd.li/i/14996359','https://i.gkd.li/i/15159886','https://i.gkd.li/i/15587119','https://i.gkd.li/i/20768037']},{preKeys:[0,2],key:1,anyMatches:['@[clickable=true] >(1,2) [text=\"不感兴趣\"][visibleToUser=true]','[text=\"不感兴趣\"][clickable=true][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/19004649','https://i.gkd.li/i/19643258','https://i.gkd.li/i/19643262','https://i.gkd.li/i/19534649','https://i.gkd.li/i/20776872','https://i.gkd.li/i/21693916','https://i.gkd.li/i/23046625']},{preKeys:[0,1],key:2,matches:'[text=\"不感兴趣\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/21036817'}]},{key:1,name:'更新提示',actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,action:'back',fastQuery:true,activityIds:'.view.main.MainActivity',matches:'[text=\"立即更新\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15511206'},{key:1,matchTime:10000,activityIds:'.view.main.MainActivity',matches:'[text=\"立即更新\"]',exampleUrls:'https://e.gkd.li/19b5d743-3632-4c64-8e51-b55c85070512',snapshotUrls:'https://i.gkd.li/i/23096630'}]},{key:3,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.view.main.MainActivity','.view.splash.SplashActivity'],matches:'[text=\"去开启\"] - [text=\"以后再说\"]',snapshotUrls:['https://i.gkd.li/i/13296465','https://i.gkd.li/i/20708984']}]},{key:4,name:'局部广告-[大家还下载了]应用推荐',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['.view.search.SuperSearchResultActivity','.view.node.DynamicNodePageActivity'],matches:'[text=\"大家还下载了\"] + [vid=\"close_view\"]',exampleUrls:'https://e.gkd.li/0cfa8038-dc74-46c3-9e06-998965d73711',snapshotUrls:['https://i.gkd.li/i/16448265','https://i.gkd.li/i/16448385']}]},{key:5,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.view.search.SuperSearchResultActivity',matches:'@[desc=\"关闭\"] <<n [vid=\"item_view\"] <<n [vid=\"to_native_ad_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/efd366d9-1c66-4c35-b164-6f91a623e2f2',snapshotUrls:'https://i.gkd.li/i/19643150'}]}]},{id:'com.kugou.android.lite',name:'酷狗概念版',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/94c7fc27-891f-4206-b933-f26661041b99',snapshotUrls:'https://i.gkd.li/i/21451911'},{key:1,matches:'[desc*=\"跳过\"][desc.length<10][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7aa8bc5b-e14c-4cef-9eae-b89aac8ef459',snapshotUrls:'https://i.gkd.li/i/21750055'}],order:-10},{key:2,name:'全屏广告-VIP弹窗',rules:[{key:0,fastQuery:true,activityIds:'com.kugou.android.app.setting.YoungModeTipsActivity',matches:'[text^=\"新人限时开通\"] +3 [text=\"放弃优惠\"]',snapshotUrls:'https://i.gkd.li/i/14321698'},{key:1,fastQuery:true,activityIds:['com.kugou.android.app.setting.YoungModeTipsActivity','com.kugou.common.useraccount.app.KgUserLoginAndRegActivity'],matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 ViewGroup[childCount=3] < [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/14321700','https://i.gkd.li/i/25018524']},{key:2,fastQuery:true,activityIds:'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',matches:['[text*=\"已过期\"][visibleToUser=true]','[text=\"狠心拒绝\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/25020137'},{key:3,activityIds:'com.kugou.framework.musicfees.ui.feeintercept.FeeInterceptWebActivity',matches:'WebView > [id=\"body\"] > [id=\"root\"] >2 View > Image[index=0][clickable=true][visibleToUser=true][width<70 && width<70]',snapshotUrls:'https://i.gkd.li/i/25022292'}]},{key:3,name:'分段广告-我的页面-右侧悬浮反馈图标',rules:[{key:0,activityIds:'com.kugou.android.app.MediaActivity',matches:'FrameLayout > RelativeLayout > @ImageView[vid!=null][clickable=true][visibleToUser=true] +(2,3) ImageView[vid!=null]',snapshotUrls:['https://i.gkd.li/i/14321713','https://i.gkd.li/i/14321718']},{key:1,preKeys:0,activityIds:'com.kugou.android.app.MediaActivity',fastQuery:true,matches:'[text=\"是否取消？\"] +4 * > [text=\"确认\"]',snapshotUrls:'https://i.gkd.li/i/14321724'}]},{key:4,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.kugou.android.app.MediaActivity',matches:'@ImageView - * > [text=\"立即升级\"]',snapshotUrls:'https://i.gkd.li/i/14622566'}]},{key:5,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.kugou.android.app.MediaActivity',matches:'@[text*=\"跳过\"] + [text*=\"广告\"]',exampleUrls:'https://e.gkd.li/64dd159b-bff5-4dff-a4b9-d63f5b34acb7',snapshotUrls:'https://i.gkd.li/i/16407631'},{key:1,fastQuery:true,activityIds:'com.kugou.android.app.MediaActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true][width<160 && height<160] <2 ViewGroup[childCount=3] < FrameLayout < LinearLayout < LinearLayout <2 LinearLayout < FrameLayout < FrameLayout <2 FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/0776da1e-3ff6-4fba-a7e9-de8fa1fe5344',snapshotUrls:'https://i.gkd.li/i/23619626'}]},{key:6,name:'功能类-播放页听歌领VIP',fastQuery:true,rules:[{key:0,activityIds:'com.kugou.android.app.MediaActivity',matches:'@LinearLayout[clickable=true] > TextView[text=\"听歌领VIP\"]',exampleUrls:'https://e.gkd.li/df927124-4e7a-43bd-8d42-3eb428eecf78',snapshotUrls:'https://i.gkd.li/i/16554695'},{key:1,activityIds:'com.kugou.android.app.MediaActivity',matches:'@ImageView[clickable=true] - FrameLayout >2 [text=\"立即领取福利\"]',exampleUrls:'https://e.gkd.li/51fbe6aa-d0da-4f08-aae0-2eed4e6c0ad1',snapshotUrls:'https://i.gkd.li/i/16594001'}]},{key:7,name:'评价提示',rules:[{key:0,fastQuery:true,activityIds:'com.kugou.android.app.MediaActivity',matches:'@ImageView[clickable=true][childCount=0] - LinearLayout > [text*=\"求五星鼓励\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25002911'}]},{key:8,name:'分段广告-评论区广告',fastQuery:true,activityIds:'com.kugou.android.app.MediaActivity',rules:[{key:0,matches:'@[clickable=true] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/25020531'},{preKeys:[0],matches:'[text=\"关闭这条广告\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/25020623'}]},{key:9,name:'局部广告',rules:[{key:0,fastQuery:true,activityIds:'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',matches:'@[text*=\"跳过\"] + [text*=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25021020'},{key:1,activityIds:'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',matches:'@ImageView[clickable=true][childCount=0][parent.childCount<4][index=parent.childCount.minus(1)][width<60 && height<60] - [!(text=null)]',snapshotUrls:['https://i.gkd.li/i/25021318','https://i.gkd.li/i/25021659']}]}]},{id:'com.kugou.android',name:'酷狗音乐',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[desc=\"跳过\"||desc=\"GdtCountDownView\"]',snapshotUrls:['https://i.gkd.li/i/12775410','https://i.gkd.li/i/13426030','https://i.gkd.li/i/13468987']},{key:1,position:{left:'width * 0.6858',top:'width * 0.3906'},matches:'[desc=\"createSkipView\"]',exampleUrls:'https://m.gkd.li/57941037/fc4a38c9-20aa-4cfc-9a92-c20e9194418b',snapshotUrls:'https://i.gkd.li/i/14609953'}],order:-10},{key:1,name:'局部广告-卡片广告',matchRoot:true,rules:[{key:0,fastQuery:true,forcedTime:10000,activityIds:'.app.MediaActivity',matches:'ViewGroup[childCount=2] > ImageView + @FrameLayout[clickable=true] > LinearLayout > ImageView <<n [id=\"android:id/list\"]',snapshotUrls:'https://i.gkd.li/i/16434752'},{key:1,fastQuery:true,activityIds:'.app.MediaActivity',matches:'@ImageView[desc=\"关闭\"][visibleToUser=true][clickable=true] <n ViewGroup < LinearLayout <3 [id=\"android:id/list\"]',snapshotUrls:['https://i.gkd.li/i/14964889','https://i.gkd.li/i/15024041','https://i.gkd.li/i/15468481','https://i.gkd.li/i/16200618']},{key:2,activityIds:'.app.MediaActivity',matches:'[desc=\"关闭广告\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15024812'},{key:3,fastQuery:true,activityIds:'.app.MediaActivity',matches:'@ImageView[clickable=true] - [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/15520336'},{key:4,forcedTime:10000,activityIds:'.app.MediaActivity',matches:'RelativeLayout > @RelativeLayout[clickable=true] > [desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/16114590'},{key:5,fastQuery:true,activityIds:'.app.MediaActivity',matches:'@ImageButton[clickable=true][childCount=0][visibleToUser=true] - LinearLayout > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/fcb3e4d2-73bf-49b5-9157-08cac0c11584',snapshotUrls:'https://i.gkd.li/i/18207953'},{key:6,fastQuery:true,activityIds:'.app.MediaActivity',matches:'@ImageButton[childCount=0][clickable=true] < RelativeLayout - LinearLayout > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/13b95c9a-1e6c-4d63-8372-1cff2261253c',snapshotUrls:'https://i.gkd.li/i/23687213'}]},{key:2,name:'全屏广告-VIP弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,matches:'@ImageView[clickable=true][visibleToUser=true] + RelativeLayout >2 [text*=\"豪华VIP已过期\"]',exampleUrls:'https://e.gkd.li/cab683ac-801d-4089-8b5d-548954761c08',snapshotUrls:'https://i.gkd.li/i/13548005'},{key:1,activityIds:'.app.MediaActivity',matches:'WebView[text=\"开通会员\"] >7 @TextView[clickable=true][childCount=0] +2 [text=\"当前歌曲支持蝰蛇全景声\"]',exampleUrls:'https://e.gkd.li/86e4a797-5366-4579-81ee-bc5354e95568',snapshotUrls:'https://i.gkd.li/i/17177377'},{key:2,activityIds:'.app.MediaActivity',matches:'@[clickable=true][childCount=0] < View <(1,2) View <(1,2) View < WebView < WebView < FrameLayout < FrameLayout < RelativeLayout < RelativeLayout < FrameLayout[!(id=\"android:id/content\")] < FrameLayout < [parent=null]',exampleUrls:'https://e.gkd.li/f32ed6b7-e396-45a5-9849-f8a8ae99cb99',snapshotUrls:['https://i.gkd.li/i/18070974','https://i.gkd.li/i/22310624']}]},{key:3,name:'全屏广告-[看广告免费听歌]弹窗',desc:'点击关闭',rules:[{activityIds:'com.kugou.android.app.MediaActivity',matches:'[desc=\"看广告，免费听会员歌\"] +2 [desc=\"关闭\"]',exampleUrls:'https://m.gkd.li/57941037/dfd70c7c-3200-493e-9afa-404de5fcd2ff',snapshotUrls:'https://i.gkd.li/i/14722104'}]},{key:4,name:'全屏广告-[开启音乐DJ]弹窗',desc:'勾选[今日不再提醒]-点击[关闭]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'@[checked=false] + [text=\"今日不再提醒\"]',exampleUrls:'https://m.gkd.li/57941037/69f564e9-464a-488b-a181-f1085176b49f',snapshotUrls:'https://i.gkd.li/i/14722457'},{preKeys:[0],key:1,matches:'@ImageView - * > [text=\"今日不再提醒\"]',exampleUrls:'https://m.gkd.li/57941037/69f564e9-464a-488b-a181-f1085176b49f',snapshotUrls:'https://i.gkd.li/i/14722457'}]},{key:5,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.kugou.android.app.MediaActivity',matches:'ViewGroup > FrameLayout >2 FrameLayout[childCount=2] > FrameLayout > FrameLayout[childCount=2] > ImageView[index=1][clickable=true][childCount=0][width<80&&height<80]',exampleUrls:'https://e.gkd.li/2b240676-4dac-4375-b238-2d570962efd1',snapshotUrls:['https://i.gkd.li/i/17004903','https://i.gkd.li/i/18057265']}]},{key:6,name:'全屏广告-签到弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{position:{left:'width * 0.9287',top:'width * 0.8935'},activityIds:'.app.flexowebview.uploadvideo.ContributeWebActivity',matches:'@FrameLayout > WebView > WebView[text=\"金币中心\"] > View[id=\"body\"] > TextView[id=\"root\"][childCount=0]',exampleUrls:'https://e.gkd.li/f2a44161-d0a2-421d-a5e7-26fcf005daf2',snapshotUrls:'https://i.gkd.li/i/18071067'}]},{key:7,name:'功能类-自动关闭速听模式',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.app.MediaActivity',rules:[{key:1,fastQuery:true,matches:'@[desc=\"关闭\"][visibleToUser=true] < RelativeLayout < RelativeLayout + FrameLayout >3 ViewGroup[desc=\"速听卡片\"] >2 [text=\"喜欢\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e24dda6a-c5fa-4c93-9026-cda7a4d9e205',snapshotUrls:'https://i.gkd.li/i/18164732'},{preKeys:[1],matches:'@FrameLayout[clickable=true][visibleToUser=true] < RelativeLayout - [desc=\"暂停\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ffb25ec5-35b0-47ff-9387-54c757c90f29',snapshotUrls:'https://i.gkd.li/i/18165065'}]}]},{id:'cn.kuwo.player',name:'酷我音乐',groups:[{key:1,name:'全屏广告-酷我会员日弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.kuwo.player.activities.MainActivity',matches:'[id=\"cn.kuwo.player:id/iv_business_personal_dia_close\"]',snapshotUrls:'https://i.gkd.li/i/13974483'}]}]},{id:'com.quark.browser',name:'夸克浏览器',groups:[{key:2,name:'其他-设置默认浏览器提示',desc:'点击取消',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ucpro.BrowserActivity',matches:'@Button[text=\"取消\"] + Button[text=\"去设置\"]',snapshotUrls:'https://i.gkd.li/i/13249469'}]},{key:3,name:'更新提示',desc:'点击取消',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ucpro.BrowserActivity',matches:['[text*=\"版本更新\" || text^=\"优化升级\" || text^=\"发现新版本\"]','[text=\"取消\" || text=\"暂不更新\"][clickable=true]'],snapshotUrls:['https://i.gkd.li/i/13292512','https://i.gkd.li/i/13455360','https://i.gkd.li/i/24786251','https://i.gkd.li/i/16643051']}]},{key:4,name:'全屏广告-弹窗广告',rules:[{fastQuery:true,actionMaximum:1,activityIds:'com.ucpro.BrowserActivity',matches:'ImageView[id=\"com.quark.browser:id/close_img\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13292571'}]},{key:5,name:'局部广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.ucpro.BrowserActivity',matches:'[vid=\"ad_close_layout_container\" || vid=\"rel_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/77db7983-bfe0-4701-a580-d5d77a017624',snapshotUrls:['https://i.gkd.li/i/21967140','https://i.gkd.li/i/21967204']},{key:1,fastQuery:true,activityIds:'com.ucpro.BrowserActivity',matches:'[vid=\"append_element_view_remove_ad_ll\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3a89486e-83c4-4032-bc07-4531921c9d09',snapshotUrls:'https://i.gkd.li/i/21967126'}]}]},{id:'com.kuaikan.comic',name:'快看漫画',groups:[{key:2,name:'局部广告-漫画界面底部弹窗广告',activityIds:'com.kuaikan.comic.infinitecomic.view.ComicInfiniteActivity',rules:'[id=\"com.kuaikan.comic:id/adBannerClose\"]',snapshotUrls:'https://i.gkd.li/i/12910268'}]},{id:'com.kkeji.news.client',name:'快科技',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.kkeji.news.client:id/tv_counter\"]',snapshotUrls:'https://i.gkd.li/i/13197536'}],order:-10}]},{id:'world.letsgo.booster.android.pro',name:'快连 VPN',groups:[{key:1,name:'通知提示-各种提示弹窗',rules:[{fastQuery:true,activityIds:['world.letsgo.booster.android.pages.home.HomeActivity','world.letsgo.booster.android.pages.guide.GuideActivity'],matches:'[text=\"我会设置\" || text=\"快快收下\" || text=\"知道了\"][visibleToUser=true]',exampleUrls:['https://e.gkd.li/0fe731a4-bf4c-4d35-a157-c1304e8df4ba','https://e.gkd.li/efeb874b-f3bf-4899-a069-387d020eb1f5','https://e.gkd.li/5868f38e-b929-4423-adfc-82b05ea1733c'],snapshotUrls:['https://i.gkd.li/i/23619426','https://i.gkd.li/i/23619427','https://i.gkd.li/i/23619428']}]}]},{id:'com.smile.gifmaker',name:'快手',groups:[{key:10,name:'全屏广告-首页红包弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.yxcorp.gifshow.HomeActivity',rules:[{key:1,name:'老友回归红包弹窗',matches:'@ImageView[id=null][clickable=true] + ViewGroup > [text!=null] + [text!=null]',snapshotUrls:['https://i.gkd.li/i/12708649','https://i.gkd.li/i/12708660']},{key:2,name:'限时高额奖励弹窗',matches:'@ImageView[id=null][clickable=true] < ViewGroup + ViewGroup >2 [text=\"立即领取\"]',snapshotUrls:'https://i.gkd.li/i/12708681'}]},{key:11,name:'局部广告-首页左侧红包悬浮控件',desc:'点击关闭',activityIds:'com.yxcorp.gifshow.HomeActivity',rules:[{matches:'[id=\"com.smile.gifmaker:id/pendant_mask_bg\"] + [id=\"com.smile.gifmaker:id/pendant_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12708671','https://i.gkd.li/i/12708676']}]},{key:12,name:'功能类-推荐关注',desc:'自动点击\"关闭/隐藏\"',activityIds:'com.yxcorp.gifshow.HomeActivity',rules:[{key:0,name:'消息页面-你可能感兴趣的人',matches:'[id=\"com.smile.gifmaker:id/close_pymk\"]',snapshotUrls:'https://i.gkd.li/i/12708707'},{key:1,name:'我的页面-你可能感兴趣的人',fastQuery:true,matches:'ViewGroup[childCount=3] > [text=\"隐藏\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14001536'},{key:2,name:'朋友推荐弹窗',fastQuery:true,matches:'[text=\"朋友推荐\"] + [vid=\"close_btn\"]',snapshotUrls:'https://i.gkd.li/i/14232217'}]},{key:13,name:'评价提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.yxcorp.gifshow.HomeActivity',matches:'@[vid=\"close\"] +2 * > [text=\"喜欢就给个好评吧\"]',exampleUrls:'https://m.gkd.li/57941037/da412e0f-47db-4cc0-8821-184c6ba42882',snapshotUrls:'https://i.gkd.li/i/14343547'}]},{key:14,name:'全屏广告-直播间广告',rules:[{fastQuery:true,action:'back',activityIds:'com.kuaishou.live.core.basic.activity.LiveSlideActivity',matches:'[visibleToUser=true][text=\"幸运奖池\"] <<n [vid=\"webView\"]',exampleUrls:'https://m.gkd.li/57941037/338df1c2-8789-435b-8970-c837b00fc0f5',snapshotUrls:'https://i.gkd.li/i/15629334'}]},{key:15,name:'分段广告-信息流广告',fastQuery:true,activityIds:'com.yxcorp.gifshow.HomeActivity',rules:[{key:0,action:'longClick',matches:'@FrameLayout[desc$=\"作品\"][longClickable=true][visibleToUser=true] >(4,5) [text$=\"旗舰店\" || text=\"广告\"]',exampleUrls:'https://e.gkd.li/f199ffaf-9ff8-49f5-a3fe-3fc5bbae8f7c',snapshotUrls:['https://i.gkd.li/i/24022468','https://i.gkd.li/i/24024010']},{preKeys:[0],matches:'@[clickable=true] > [text=\"重复出现\"]',exampleUrls:'https://e.gkd.li/a93df9c1-7abe-4bd0-9d7b-ca6cce5f2286',snapshotUrls:['https://i.gkd.li/i/24024009','https://i.gkd.li/i/24024011']}]}]},{id:'com.kuaishou.nebula',name:'快手极速版',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"splash_skip_text\"]',exampleUrls:'https://e.gkd.li/5d393b9b-c327-4429-9759-8c18a097453a',snapshotUrls:'https://i.gkd.li/i/17631261'}],order:-10},{key:2,name:'全屏广告-朋友推荐弹窗',rules:[{key:0,fastQuery:true,activityIds:'com.yxcorp.gifshow.HomeActivity',matches:'[vid=\"popup_view\" || vid=\"content_wrapper\"] > [vid=\"close_btn\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14310639','https://i.gkd.li/i/15061832']}]},{key:3,name:'全屏广告-红包弹窗',rules:[{fastQuery:true,activityIds:'com.yxcorp.gifshow.HomeActivity',matches:'@ImageView[clickable=true] -(1,2) ViewGroup > [text=\"点击立得奖励\" || text^=\"邀请\"]',exampleUrls:'https://m.gkd.li/101449500/f7bbd1db-f519-4ff9-96cb-4cb5b2f483a2',snapshotUrls:['https://i.gkd.li/i/14879912','https://i.gkd.li/i/15061662','https://i.gkd.li/i/25200787']}]},{key:4,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.yxcorp.gifshow.HomeActivity',matches:'[vid=\"close_icon\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/12059549-21c2-47b7-9acf-ec221cc14f25',snapshotUrls:'https://i.gkd.li/i/15747381'}]},{key:5,name:'分段广告-悬浮广告',fastQuery:true,activityIds:'com.yxcorp.gifshow.HomeActivity',rules:[{key:0,matches:'[vid=\"close_pendant\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8f56e57f-b2d7-457c-8376-6351568ec14a',snapshotUrls:'https://i.gkd.li/i/23431963'},{preKeys:[0],matches:'[text=\"确定\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/89294dbb-4398-4561-91b7-4943ec7c98c7',snapshotUrls:'https://i.gkd.li/i/23431964'}]},{key:6,name:'评价提示',desc:'x掉',rules:[{fastQuery:true,activityIds:'com.yxcorp.gifshow.HomeActivity',matches:'@[vid=\"close\"][clickable=true] +2 * > [text*=\"给个好评吧\"]',snapshotUrls:'https://i.gkd.li/i/22851896'}]}]},{id:'com.dewmobile.kuaiya',name:'快牙',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:'com.dewmobile.kuaiya.act.MainActivity',matches:'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][visibleToUser=true] <<n [id=\"com.dewmobile.kuaiya:id/sdk_container\"]',snapshotUrls:'https://i.gkd.li/i/13477048'}]}]},{id:'com.voyah.fassistant',name:'岚图汽车',groups:[{key:1,name:'功能类-自动签到',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[text=\"签到\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/80aa2e89-de9e-45aa-b2cb-5194eaac849a',snapshotUrls:'https://i.gkd.li/i/20742927',excludeSnapshotUrls:'https://i.gkd.li/i/20727658'}]}]},{id:'com.loyea.adnmb',name:'蓝岛',groups:[{key:5,name:'通知提示-通知弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.MainActivity',rules:[{key:0,matches:'[text=\"不再显示该条通知\"][checked=false]',exampleUrls:'https://e.gkd.li/81cc5b1b-d0a6-44e9-be99-7897cceb491a',snapshotUrls:'https://i.gkd.li/i/13623450'},{preKeys:[0],key:1,matches:'[text=\"确定\"]',exampleUrls:'https://e.gkd.li/81cc5b1b-d0a6-44e9-be99-7897cceb491a',snapshotUrls:'https://i.gkd.li/i/13623450'}]}]},{id:'com.lanlanys.app',name:'懒懒视频',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.view.BaseActivity',matches:'@ImageView[index=3][childCount=0][clickable=true][visibleToUser=true][text=null][id=null] <4 RelativeLayout[childCount>7] < RelativeLayout[childCount=1] < [parent=null]',exampleUrls:'https://e.gkd.li/42ac7c76-362c-4f47-b4d8-ab9677246165',snapshotUrls:['https://i.gkd.li/i/17632595','https://i.gkd.li/i/18699720']}]}]},{id:'bubei.tingshu',name:'懒人听书',groups:[{key:1,name:'局部广告-悬浮广告',rules:[{key:0,name:'播放列表-右侧悬浮广告',fastQuery:true,activityIds:'bubei.tingshu.listen.book.detail.activity.DetailActivity',matches:'[id=\"bubei.tingshu:id/closeIcon\"][desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13348489'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.home.ui.HomeActivity',matches:'[text=\"暂不升级\"]',snapshotUrls:'https://i.gkd.li/i/13545953'}]}]},{id:'com.mm.android.lc',name:'乐橙',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,ignoreGlobalGroupMatch:true,rules:[{fastQuery:true,matches:'[vid=\"advert_countdown_view\"]',exampleUrls:'https://m.gkd.li/57941037/b30750e1-92ca-452b-8467-a0074989ec92',snapshotUrls:'https://i.gkd.li/i/14586621'}],order:-10}]},{id:'com.zhl.bmi',name:'乐看视频',groups:[{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,activityIds:'com.zhl.bmi.MainActivity',rules:[{key:0,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13255787','https://i.gkd.li/i/13255786']},{key:1,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/13542343'}]}]},{id:'client.android.yixiaotong',name:'乐校通',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:'client.android.yixiaotong.v3.ui.appcontrol.bath.BathDetailActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13055837'},{key:1,name:'快手广告-1',activityIds:'client.android.yixiaotong.v3.ui.appcontrol.bath.BathDetailActivity',matches:'[id=\"client.android.yixiaotong:id/ksad_tk_view\"] >n ViewGroup + ViewGroup > @ViewGroup > ImageView',snapshotUrls:'https://i.gkd.li/i/13060116'},{key:2,name:'快手广告-2',fastQuery:true,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13625511'}]},{key:2,name:'局部广告-卡片广告',activityIds:['client.android.yixiaotong.v3.ui.V3MainActivity','client.android.yixiaotong.v3.ui.appcontrol.bath.BathControlActivity','client.android.yixiaotong.v3.ui.appcontrol.bath.BathDetailActivity'],rules:[{key:0,name:'腾讯广告',matches:'ImageView - FrameLayout - FrameLayout[childCount=1] > ImageView[childCount=0]',snapshotUrls:'https://i.gkd.li/i/13451010'},{key:1,name:'快手广告',fastQuery:true,matches:'@TextView[clickable=true][childCount=0][visibleToUser=true] + View > [visibleToUser=true][text=\"广告\"] <<n [id=\"client.android.yixiaotong:id/ksad_container\"]',snapshotUrls:'https://i.gkd.li/i/13450887'},{key:2,fastQuery:true,matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/ad8a1bbf-61b5-4a7e-8e16-5e0092f04b8c',snapshotUrls:'https://i.gkd.li/i/14469848'},{key:3,fastQuery:true,position:{left:'width * 0.9585',top:'width * 0.0424'},matches:'[vid=\"native_ad_tpbt_image_iv\"]',exampleUrls:'https://m.gkd.li/57941037/ed6c2c12-ac17-40cc-9842-3dbc2a477d15',snapshotUrls:['https://i.gkd.li/i/14469800','https://i.gkd.li/i/14469876','https://i.gkd.li/i/14469878']}]}]},{id:'com.nn.accelerator.box',name:'雷神加速器',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[vid=\"tobid_splash_skip_ll\" || vid=\"ms_skipView\"]',exampleUrls:'https://e.gkd.li/03b70de9-9e1d-4362-83df-08a95c2c224f',snapshotUrls:['https://i.gkd.li/i/16451775','https://i.gkd.li/i/18668837']},{key:1,matches:'ImageView[desc=\"skip_button\"] + ViewGroup > TextView[text=\"跳过\"]',exampleUrls:'https://e.gkd.li/625debfb-faa5-438a-a5ba-5175233ea1d2',snapshotUrls:'https://i.gkd.li/i/16828285'},{key:2,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/d5777afa-927b-4d6d-be67-e92fd2f206cd',snapshotUrls:'https://i.gkd.li/i/18668718'},{key:3,matches:'@View[clickable=true] - [text=\"互动广告\"]',exampleUrls:'https://e.gkd.li/d32ca677-f0c4-49e4-8dfe-f105a9ab1cb9',snapshotUrls:'https://i.gkd.li/i/18668852'},{key:4,anyMatches:['[text*=\"跳过\"][text.length<10][clickable=true][visibleToUser=true]','@[clickable=true] > [text*=\"跳过\"][text.length<10][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/bff8f543-e262-4db1-b99b-32e2988fb47b',snapshotUrls:['https://i.gkd.li/i/23096608','https://i.gkd.li/i/24695040']}],order:-10},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:['.activity.MainActivity','.activity.WelcomeActivity'],matches:'[vid=\"iv_activity\"] + [vid=\"iv_close\"]',exampleUrls:'https://e.gkd.li/a65304c0-0abe-4fc6-8eda-03f8d51ad62d',snapshotUrls:['https://i.gkd.li/i/16869245','https://i.gkd.li/i/24694978']}]},{key:2,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.activity.MainActivity',matches:['[text*=\"打开通知\"]','[vid=\"iv_close\"]'],exampleUrls:'https://e.gkd.li/18e591d7-56cf-490d-bca8-d6eda269525d',snapshotUrls:'https://i.gkd.li/i/16870058'}]}]},{id:'com.zb.sph.zaobaosingapore',name:'联合早报',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{activityIds:'com.google.android.gms.ads.AdActivity',matches:'[id=\"mys-content\"] > View[childCount=2] > View[index=1][childCount=1] > Button[clickable=true][childCount=0][visibleToUser=true][text=\"\"]',exampleUrls:'https://e.gkd.li/6892e4e4-a765-415d-9c23-5587472b6f6e',snapshotUrls:'https://i.gkd.li/i/18297111'}],order:-10},{key:2,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'sg.com.sph.app.views.bnavigation.MainActivity',matches:'@Button[id=\"cbb\"][text=\"\"][clickable=true][visibleToUser=true] - [visibleToUser=true][id=\"abgb\"] <<n [vid=\"adsLayout\"]',exampleUrls:'https://e.gkd.li/f3d93356-2762-4547-b5eb-abf9cc83eb6a',snapshotUrls:'https://i.gkd.li/i/18297090'}]}]},{id:'com.iflytek.womusicclient',name:'联通视频彩铃',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'android.womusic.com.songcomponent.MainActivity',matches:'[vid=\"iv_img\"] + [vid=\"btn_close\"]',exampleUrls:'https://m.gkd.li/57941037/64eb594e-f764-4080-a3e6-620e7174602f',snapshotUrls:'https://i.gkd.li/i/14680681'}]}]},{id:'com.chinaunicom.bol.cloudapp',name:'联通云盘',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',desc:'点击取消',rules:[{matches:'[vid=\"update_button_cancel\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13998612'}]}]},{id:'com.lenovo.browser.hd',name:'联想浏览器HD',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.zui.launcher.drawer.NormalLauncher',matches:'[text=\"发现新版本\"] - * > [id=\"com.lenovo.browser.hd:id/fl_close\"]',snapshotUrls:'https://i.gkd.li/i/13401982'}]},{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.zui.launcher.drawer.NormalLauncher',matches:'[text=\"开启消息通知\"] +n * > [id=\"com.lenovo.browser.hd:id/tv_cancle\"]',snapshotUrls:'https://i.gkd.li/i/13401980'}]}]},{id:'com.lenovo.leos.appstore',name:'联想应用中心',groups:[{key:0,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'com.zui.launcher.drawer.NormalLauncher',matches:'@[id=\"com.lenovo.leos.appstore:id/dialog_cancel\"] + [text$=\"版本更新\"]',snapshotUrls:'https://i.gkd.li/i/13401992'}]},{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activities.NotificationGuideActivity',matches:['[text$=\"打开应用中心通知\"]','[text=\"知道了\"]'],snapshotUrls:'https://i.gkd.li/i/13401991'}]}]},{id:'com.lolaage.tbulu.tools',name:'两步路户外助手',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.upgrade',matches:'[id=\"com.lolaage.tbulu.tools:id/tvFullUpgrade\"] + [id=\"com.lolaage.tbulu.tools:id/tvCancel\"]',snapshotUrls:'https://i.gkd.li/i/12882550'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,forcedTime:10000,activityIds:['com.lolaage.tbulu.tools.ui.activity.WelcomeActivity','com.lolaage.tbulu.tools.ui.activity.main.MainActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13627861','https://i.gkd.li/i/13650732','https://i.gkd.li/i/14866147']},{key:1,fastQuery:true,activityIds:'com.lolaage.tbulu.tools.ui.activity.main.MainActivity',matches:'[vid=\"ivClose\"]',snapshotUrls:'https://i.gkd.li/i/14952807'},{key:2,forcedTime:10000,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -4 View[childCount=1] > Image[childCount=0][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0ed488e1-f0d8-4c5f-a507-af9c2cedd2a1',snapshotUrls:'https://i.gkd.li/i/16812345'}]},{key:3,name:'权限提示-通知权限',desc:'点击[取消]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.main.MainActivity',matches:'[text=\"发送通知\"] + * >3 [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14952803'}]}]},{id:'cn.timesneighborhood.app.c',name:'邻里邦',groups:[{key:1,name:'功能类-自动签到',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.zkty.modules.engine.activity.XEngineWebActivity',matches:'[text=\"立即签到\"]',exampleUrls:'https://m.gkd.li/57941037/e02dac87-41dc-45eb-bf7e-8daa0b69f517',snapshotUrls:'https://i.gkd.li/i/14545251'}]}]},{id:'com.yfoo.listen',name:'聆听音乐',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.yfoo.listenx.activity.HomeActivity',matches:'@[text=\"取消\"] < * > [text=\"下载\"]',snapshotUrls:'https://i.gkd.li/i/15856014'}]}]},{id:'com.topgether.sixfoot',name:'六只脚',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'Pro.biz.home.ProMainActivity',matches:'[vid=\"iv_close\"]',exampleUrls:'https://e.gkd.li/fc4a468d-407f-4a70-add8-26487f35933f',snapshotUrls:'https://i.gkd.li/i/17265831'},{key:1,activityIds:'Pro.biz.record.RecordMainActivity',matches:'[id=\"android:id/content\"] >4 FrameLayout[childCount=2] > FrameLayout[childCount=3] > FrameLayout[childCount=1] > ImageView[childCount=0][text=null]',exampleUrls:'https://e.gkd.li/01fd3dff-c1e9-42b3-bdb1-05124a67504b',snapshotUrls:'https://i.gkd.li/i/17265832'}]},{key:2,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'Pro.biz.home.ProMainActivity',matches:'@ImageView[childCount=0][text=null] < FrameLayout[childCount=1] - LinearLayout > [text=\"下载应用\" || text=\"立即申请\"]',exampleUrls:'https://e.gkd.li/32475c6e-888a-4048-b7ed-5b3bc3c1c580',snapshotUrls:['https://i.gkd.li/i/17268235','https://i.gkd.li/i/17303774']}]}]},{id:'com.android.soundrecorder',name:'录音机',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.RecordPreviewActivity',matches:'@[text=\"以后再说\"] + [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/14140552'}]}]},{id:'com.sina.oasis',name:'绿洲',groups:[{key:1,name:'分段广告-首页推荐广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'ImageView[id=\"com.sina.oasis:id/gdt_v2_banner_ad_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/13434468'},{preKeys:[0],matches:'@LinearLayout > [text*=\"关闭此广告\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/13498631'}]}]},{id:'com.maque.app',name:'麻雀省钱',groups:[{key:1,name:'全屏广告-首页活动弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.uzmap.pkg.EntranceActivity',matches:'ViewGroup[childCount=2] > ImageView[clickable=true] + ViewGroup[clickable=true][childCount=1] > ImageView[id=null][clickable=false]',snapshotUrls:'https://i.gkd.li/i/12640100'}]}]},{id:'cn.com.thit.wxmetro',name:'码上行',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.bwton.metro.bwtadui.business.popup.PopDialogFixActivity','com.bwton.metro.tabindicator.business.MainTabActivity'],matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/398fe885-755b-4929-82f6-92a14157bac7',snapshotUrls:['https://i.gkd.li/i/20655916','https://i.gkd.li/i/20665105']}]}]},{id:'com.android.tnaant',name:'蚂蚁加速器',groups:[{key:5,name:'通知提示-公告弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dd.antss.ui.activity.LaunchActivity',matches:'[text=\"公告\"] +2 [text=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13713449'}]}]},{id:'com.bankcomm.maidanba',name:'买单吧',groups:[{key:1,name:'评价提示-好评弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.account.activity.AutoLoginGuideActivity',matches:['[text=\"给好评\"][visibleToUser=true]','[vid=\"rl_close\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/18a99aed-445a-4f4d-9b41-2e51f14ecc8b',snapshotUrls:'https://i.gkd.li/i/18296891'}]},{key:2,name:'通知提示-网络代理提示弹窗',desc:'点击[继续使用]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.activity.MainActivity',matches:'[text=\"继续使用\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/22674cc8-5a46-49a0-9654-e77c0f13823e',snapshotUrls:'https://i.gkd.li/i/19652606'}]}]},{id:'com.mcdonalds.gma.cn',name:'麦当劳',groups:[{key:1,name:'权限提示-通知权限',desc:'点击[取消]',fastQuery:true,rules:[{key:0,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.MainActivity',matches:['[text*=\"开启通知服务\"]','[text=\"取消\"]'],exampleUrls:'https://e.gkd.li/64df0999-cd85-48c3-871f-5e65e9131d6e',snapshotUrls:'https://i.gkd.li/i/13259242'},{key:1,activityIds:'com.mcd.order.activity.OrderDetailActivity',matches:'@[vid=\"v_cancel\"] + [vid=\"v_open\"]',exampleUrls:'https://e.gkd.li/123fc7d2-b2a3-41fb-8e4c-50f625b195c4',snapshotUrls:'https://i.gkd.li/i/17092374'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,forcedTime:10000,activityIds:'.activity.MainActivity',matches:'[vid=\"iv_ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6a95fcb7-3f9c-43f8-80bb-bdd034c81252',snapshotUrls:'https://i.gkd.li/i/17967920'},{key:2,fastQuery:true,activityIds:'com.mcd.order.activity.OrderActivity',matches:'[vid=\"recommend_product_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8f3670e7-a0c9-47a5-b708-163a94ac2a8f',snapshotUrls:'https://i.gkd.li/i/17967943'}]},{key:3,name:'功能类-关闭[开通免密支付]弹窗',rules:[{fastQuery:true,activityIds:'com.mcd.order.activity.OrderDetailActivity',matches:'@[vid=\"iv_close\"] - * >2 [text*=\"免密支付\"]',exampleUrls:'https://m.gkd.li/57941037/4b26dc9e-06d9-43a2-a105-6fb711c9aedb',snapshotUrls:'https://i.gkd.li/i/14798873'}]},{key:4,name:'权限提示-设备信息权限',desc:'点击[不允许]',fastQuery:true,resetMatch:'app',actionMaximum:1,rules:[{activityIds:'com.mcdonalds.gma.cn.activity.LaunchActivity',matches:'[text$=\"获取您的设备信息\"] + * > [text=\"不允许\"]',exampleUrls:'https://m.gkd.li/101449500/121c7e65-780e-41aa-acf8-34c491d4be41',snapshotUrls:'https://i.gkd.li/i/15944357'}]}]},{id:'com.manmanbuy.bijia',name:'慢慢买',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text^=\"关闭\"][text.length=4]',snapshotUrls:'https://i.gkd.li/i/13214974'}],order:-10},{key:1,name:'功能类-从剪贴板查历史价-拒绝',desc:'点击[默默拒绝]',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@[clickable=true] > [text=\"默默拒绝\"]',exampleUrls:'https://e.gkd.li/73a7e5bb-35e1-4025-bfca-8f2714d1a58a',snapshotUrls:'https://i.gkd.li/i/25073813'}]}]},{id:'com.jisu.manhua',name:'漫画人极速版',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ilike.cartoon.activities.HomeActivity',matches:'[id=\"com.jisu.manhua:id/iv_promotion\"] + [id=\"com.jisu.manhua:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13688186'}]}]},{id:'ltd.sky.okay.cn',name:'漫天星',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯广告',fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13625479'},{key:1,name:'字节广告',actionDelay:1500,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13759331'}]}]},{id:'com.hunantv.imgo.activity',name:'芒果TV',groups:[{key:1,name:'分段广告-首页推荐广告',activityIds:'com.hunantv.imgo.activity.MainActivity',rules:[{key:0,matches:'@[id=\"com.hunantv.imgo.activity:id/layout_logo\"] > [id=\"com.hunantv.imgo.activity:id/tv_ad_logo\"]',snapshotUrls:'https://i.gkd.li/i/12472616'},{preKeys:0,key:1,matches:'[id=\"com.hunantv.imgo.activity:id/close_ad\"]',snapshotUrls:'https://i.gkd.li/i/12472615'}]},{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.hunantv.imgo.activity.MainActivity',matches:'[id=\"com.hunantv.imgo.activity:id/imgPromotion\"] + [id=\"com.hunantv.imgo.activity:id/vClosePromotionView\"]',snapshotUrls:'https://i.gkd.li/i/12818464'},{key:1,activityIds:'com.hunantv.imgo.activity.MainActivity',matches:'@TextView[id=null][text=\"\"] - View > Image[id=\"hotGif\"]',snapshotUrls:'https://i.gkd.li/i/12818528'},{key:2,activityIds:'com.hunantv.imgo.activity.MainActivity',fastQuery:true,matches:'[id=\"com.hunantv.imgo.activity:id/ivPromotion\"] + [id=\"com.hunantv.imgo.activity:id/btnClose\"]',snapshotUrls:'https://i.gkd.li/i/13761169'}]},{key:3,name:'局部广告-右侧悬浮广告',activityIds:'com.hunantv.imgo.activity.MainActivity',rules:[{key:0,matches:'@[id=\"com.hunantv.imgo.activity:id/apperience_close\"] + [id=\"com.hunantv.imgo.activity:id/apperience_enter\"]',snapshotUrls:'https://i.gkd.li/i/12818430'},{key:1,matches:'@[id=\"com.hunantv.imgo.activity:id/iv_float_close\"] + [id=\"com.hunantv.imgo.activity:id/iv_float_content\"]',snapshotUrls:'https://i.gkd.li/i/12818481'}]},{key:4,name:'全屏广告-视频播放时的广告',desc:'点击[关闭广告]',rules:[{key:0,fastQuery:true,activityIds:'com.mgtv.ui.videoplay.MGVideoPlayActivity',matches:'[text=\"关闭广告\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/386d0906-f81f-43d2-af7f-adc3ab0ea5a6',snapshotUrls:'https://i.gkd.li/i/14322017'}]}]},{id:'com.sankuai.movie',name:'猫眼',groups:[{key:1,name:'权限提示-开启通知弹窗',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{matches:'@ImageView[clickable=true][visibleToUser=true] - * > [text=\"开启通知\"]',snapshotUrls:'https://i.gkd.li/i/18455375'}]}]},{id:'com.romielf.mrsc',name:'每日赛车',groups:[{key:1,name:'分段广告-新闻页面摇一摇广告',desc:'点击准确率灵敏度不太高',activityIds:'com.romielf.mrsc.MainActivity',rules:[{key:1,matches:'@Image < View -n View >2 View[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12667539'},{preKeys:[1],key:2,matches:'[id=\"com.byted.pangle:id/tt_item_tv\"][text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12667549'}]}]},{id:'com.eusoft.ting.en',name:'每日英语听力',groups:[{key:1,name:'全屏广告-优惠券弹窗',desc:'点击[暂不需要]',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.eusoft.ting.ui.v2.TabActivityV2',matches:'[text=\"我的优惠券\"] +2 * > [text=\"暂不需要\"]',exampleUrls:'https://m.gkd.li/57941037/87566d74-abe0-46b6-a376-d1231c6a025a',snapshotUrls:'https://i.gkd.li/i/14583029'}]}]},{id:'com.dailyyoga.inc',name:'每日瑜伽',groups:[{key:1,name:'全屏广告',rules:[{fastQuery:true,activityIds:'.session.fragment.UploadSessionResultActivity',matches:'[visibleToUser=true] - [vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3395e6cc-6776-4c86-ac6d-4411faced360',snapshotUrls:'https://i.gkd.li/i/21563972',excludeSnapshotUrls:'https://i.gkd.li/i/21705377'}]},{key:2,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.session.fragment.UploadSessionResultActivity',matches:'[vid=\"iv_guide_share_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a4e4e4c8-401a-47d7-8765-d5f0aa915af5',snapshotUrls:'https://i.gkd.li/i/21705377'}]}]},{id:'com.mt.mtxx.mtxx',name:'美图秀秀',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"升级新版客户端\"] - [text=\"取消\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13238352'}]},{key:2,name:'全屏广告-VIP弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mt.mtxx.mtxx.MainActivity',matches:'[vid=\"iv_close\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/d98355c6-1308-4ed1-bf29-56499e22446d',snapshotUrls:'https://i.gkd.li/i/14368853'}]},{key:3,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.cosmos.album.album3.XXAlbumMainActivity',matches:'@ImageView[clickable=true] - * > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/15076408'}]}]},{id:'com.sankuai.meituan',name:'美团',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.meituan.android.upgrade.UpgradeDialogActivity','com.meituan.android.pt.homepage.activity.MainActivity'],matches:['[vid=\"update_logo\" || text=\"立即升级\"]','[vid=\"btn_close\" || text=\"暂不升级\"]'],snapshotUrls:['https://i.gkd.li/i/18375410','https://i.gkd.li/i/23165455']}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,name:'美团买菜-折扣弹窗',activityIds:'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',matches:'ViewGroup > ViewGroup[childCount=6] > ViewGroup[childCount=1] > ImageView[childCount=0][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12639717'},{key:1,name:'美团买菜-红包弹窗',activityIds:'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',matches:'@ImageView < ViewGroup +3 ViewGroup > ViewGroup > TextView[text^=\"红包已到账\"]',snapshotUrls:'https://i.gkd.li/i/12892626'},{key:2,name:'美团买菜-支付成功后-红包弹窗',activityIds:'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',matches:'TextView[text=\"恭喜你获得以下权益\"] + ViewGroup > ImageView',snapshotUrls:'https://i.gkd.li/i/12646768'},{key:3,name:'超市便利-弹窗广告',fastQuery:true,activityIds:'com.sankuai.waimai.store.poi.list.newp.PoiVerticalityHomeActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13694877'},{key:4,name:'骑行卡-红包弹窗',activityIds:'com.meituan.mmp.lib.HeraActivity',matches:'View[childCount=3] > View + TextView + TextView[text=\"\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12739204'},{key:5,name:'订单完成后的红包弹窗',fastQuery:true,activityIds:'com.sankuai.waimai.bussiness.order.detail.WMOrderDetailActivity',matches:'@ImageView[clickable=true] - * >3 [text=\"开心收下\"]',snapshotUrls:'https://i.gkd.li/i/13695703'},{key:6,name:'邀请好友提现弹窗',activityIds:'com.meituan.msc.modules.container.MSCActivity',matches:'WebView > View > View[childCount=1] >(1,2) View[childCount=2] > View + Image[text=\"\"][childCount=0][left>0][width<200]',snapshotUrls:['https://i.gkd.li/i/14964911','https://i.gkd.li/i/15400951'],excludeSnapshotUrls:['https://i.gkd.li/i/16487898','https://i.gkd.li/i/20553947']},{key:7,name:'首页-半价神券弹窗',fastQuery:true,activityIds:'com.meituan.android.pt.homepage.activity.MainActivity',matches:'@ViewGroup[clickable=true][width <120 && width<120][childCount=0] <2 ViewGroup < ViewGroup < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/24842488'}]},{key:3,name:'评价提示-订单调查弹窗',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:1,name:'我的页面-小调查',action:'back',activityIds:'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',matches:'TextView[text=\"小调查\"]',snapshotUrls:'https://i.gkd.li/i/12639723'},{key:2,name:'订单详情页匿名调查',action:'back',activityIds:'com.sankuai.waimai.bussiness.order.detail.WMOrderDetailActivity',matches:'[id=\"com.sankuai.meituan:id/questionnaireTitle\"]',snapshotUrls:'https://i.gkd.li/i/13682336'}]},{key:4,name:'局部广告-悬浮广告',rules:[{key:0,activityIds:['com.meituan.android.pt.homepage.activity.MainActivity','com.miui.home.launcher.Launcher'],matches:'FrameLayout > @ImageView + ImageView[desc=\"资质与规则\"]',snapshotUrls:['https://i.gkd.li/i/12639815','https://i.gkd.li/i/12639734']},{key:1,fastQuery:true,activityIds:'com.sankuai.waimai.business.page.homepage.TakeoutActivity',matches:'[vid=\"marking_sidebar_close\"]',snapshotUrls:'https://i.gkd.li/i/16079638'},{key:2,fastQuery:true,activityIds:'com.sankuai.waimai.business.restaurant.poicontainer.WMRestaurantActivity',matches:'@ImageView[visibleToUser=true] - [text^=\"收藏店铺领\"]',exampleUrls:'https://e.gkd.li/20bbae61-859b-478d-9032-8213c79dec39',snapshotUrls:'https://i.gkd.li/i/16632959'},{key:3,fastQuery:true,activityIds:'com.sankuai.waimai.store.drug.home.NewDrugHomeActivity',matches:'@ImageView[width<80 && height<80][clickable=true] <n * < [vid=\"novel_float_view_new\"]',snapshotUrls:'https://i.gkd.li/i/23165473'},{key:4,fastQuery:true,activityIds:'com.sankuai.waimai.store.drug.home.NewDrugHomeActivity',matches:'[vid=\"live_float_view_container\"] > [vid=\"close_btn\"]',snapshotUrls:'https://i.gkd.li/i/23165473'}]},{key:7,name:'权限提示-定位权限',desc:'首页/外卖界面-\"打开位置开关弹窗\"-点击右侧x关闭',actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,fastQuery:true,activityIds:'com.meituan.android.pt.homepage.activity.MainActivity',matches:'[vid=\"location_close\"]',exampleUrls:'https://m.gkd.li/57941037/da856996-b128-486a-a6d4-964183b0c719',snapshotUrls:'https://i.gkd.li/i/14472663'},{key:1,activityIds:'com.sankuai.waimai.business.page.homepage.TakeoutActivity',matches:'[id=\"com.sankuai.meituan:id/location_layer_close\"]',exampleUrls:'https://m.gkd.li/57941037/3071d3a4-f8ca-4c6f-8aa2-cf9573dbed3d',snapshotUrls:'https://i.gkd.li/i/12910211'},{key:2,activityIds:'com.sankuai.meituan.MPMainActivity',matches:'[text=\"定位服务尚未开启\"] +3 TextView',exampleUrls:'https://m.gkd.li/57941037/3bb08a42-5d88-4f9d-8cbe-cb913e136ec6',snapshotUrls:'https://i.gkd.li/i/14472614'}]},{key:8,name:'权限提示-通知权限',desc:'点击跳过',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.meituan.android.pt.homepage.activity.MainActivity',matches:'@[vid=\"iv_close\" || text=\"跳过\"] -(1,2) [text^=\"开启通知\"]',snapshotUrls:['https://i.gkd.li/i/13439134','https://i.gkd.li/i/15047918']}]},{key:10,name:'全屏广告-新人返场特惠',desc:'点击左上角返回',rules:[{matchTime:10000,fastQuery:true,activityIds:'com.meituan.android.base.knb.KNBWebViewActivity',matches:'@TextView[text=\"\"][clickable=true][childCount=0] < View[id=\"shareNav\"] <2 View < View < WebView < WebView < [vid=\"mil_container\"]',snapshotUrls:'https://i.gkd.li/i/13800691'}]},{key:11,name:'全屏广告-视频页弹窗广告',desc:'点击X',fastQuery:true,activityIds:'com.meituan.android.pt.homepage.activity.MainActivity',rules:[{key:0,name:'视频页-签到弹窗',matches:'@ImageView[index=5] +n ViewGroup[clickable=true] >n [text=\"签到必得现金\"]',snapshotUrls:'https://i.gkd.li/i/14033982',excludeSnapshotUrls:'https://i.gkd.li/i/24705788'},{key:1,name:'视频页-领现金弹窗',matches:'@ImageView[visibleToUser=true] - ViewGroup[childCount=3] > [text^=\"签到成功\"]',snapshotUrls:'https://i.gkd.li/i/14034073'}]},{key:12,name:'功能类-付款后自动点击完成',fastQuery:true,rules:[{key:0,activityIds:'com.sankuai.waimai.platform.machpro.container.WMMPActivity',matches:['[text=\"商家已接单\" || text=\"等待商家接单\"][visibleToUser=true]','[text=\"完成\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/14163717','https://i.gkd.li/i/17158063']},{key:1,action:'clickCenter',activityIds:'com.meituan.android.hybridcashier.HybridCashierActivity',matches:'[text=\"支付成功\"] >5 @[visibleToUser=true][text=\"完成\"] <<n [vid=\"mil_container\"]',snapshotUrls:'https://i.gkd.li/i/14392284'}]},{key:13,name:'局部广告-直播讲解悬浮窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.sankuai.waimai.business.restaurant.poicontainer.WMRestaurantActivity',matches:'@ImageView[clickable=true][visibleToUser=true] + [text=\"正在讲解\"]',exampleUrls:'https://e.gkd.li/42b1d2c5-ca75-4a89-adca-9e5c4f489165',snapshotUrls:'https://i.gkd.li/i/17182888'}]}]},{id:'com.sankuai.meituan.takeoutnew',name:'美团外卖',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.sankuai.waimai.business.page.homepage.MainActivity',matches:'[id=\"com.sankuai.meituan.takeoutnew:id/wm_upgrade_force_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13415044'}]},{key:3,name:'全屏广告-弹窗广告',rules:[{key:1,activityIds:'com.sankuai.waimai.bussiness.order.detail.WMOrderDetailActivity',matches:'@ImageView[clickable=true] - FrameLayout > FrameLayout > FrameLayout TextView[text=\"点我领取\"]',snapshotUrls:'https://i.gkd.li/i/13175526'}]},{key:4,name:'局部广告-直播悬浮窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.sankuai.waimai.business.restaurant.poicontainer.WMRestaurantActivity',matches:'@ImageView[clickable=true][visibleToUser=true] + [text=\"正在讲解\"]',exampleUrls:'https://e.gkd.li/d7119268-6710-4bf4-a46c-eaefa4105791',snapshotUrls:'https://i.gkd.li/i/16359035'}]}]},{id:'com.sankuai.meituan.dispatch.crowdsource',name:'美团众包',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:['com.meituan.banma.main.activity.MainActivity','com.meituan.banma.main.activity.ImageAdActivity'],matches:'[vid=\"image_ad_close\"]',snapshotUrls:['https://i.gkd.li/i/13694935','https://i.gkd.li/i/14818737']}]},{key:2,name:'其他-[保级成功]弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.meituan.banma.usercenter.activity.UserGradeUpgradeKNBActivity',matches:'[vid=\"btn_close\"]',exampleUrls:'https://m.gkd.li/57941037/11dd0efd-5872-47de-a307-c3dd0c0009a9',snapshotUrls:'https://i.gkd.li/i/14822280'}]}]},{id:'com.lingan.seeyou',name:'美柚',groups:[{key:1,name:'局部广告-评论区上方卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.lingan.seeyou.ui.activity.community.topicdetail.TopicDetailActivity',matches:'[id=\"com.lingan.seeyou:id/v_close\"]',snapshotUrls:'https://i.gkd.li/i/14034770'}]}]},{id:'com.mmzztt.app',name:'美之图',groups:[{key:1,name:'其他-提示[切换高清]时点击[取消]',rules:[{fastQuery:true,activityIds:'com.uzmap.pkg.EntranceActivity',matches:['[text=\"切换高清\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ea71f47e-13e3-4980-a6d6-d8e8faf27541',snapshotUrls:'https://i.gkd.li/i/23146683'}]}]},{id:'com.jc.avatar.mm',name:'萌妹',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.jc.avatar.mm.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13188475'}]}]},{id:'cn.emagsoftware.gamehall',name:'咪咕快游',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.migugame.home_module.ui.activity.HomeActivity',matches:'[id=\"cn.emagsoftware.gamehall:id/btn_update\"] -2 [id=\"cn.emagsoftware.gamehall:id/btn_cancle\"]',snapshotUrls:'https://i.gkd.li/i/13448894'}]}]},{id:'com.cmcc.cmvideo',name:'咪咕视频',groups:[{key:2,name:'局部广告-右下角小广告',fastQuery:true,activityIds:'com.cmcc.cmvideo.main.application.CompatibleMainActivity',rules:'[id=\"com.cmcc.cmvideo:id/iv_right_bottom_close\"]',snapshotUrls:'https://i.gkd.li/i/12498315'},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.cmcc.cmvideo:id/btn_update_close\"]',snapshotUrls:'https://i.gkd.li/i/13276116'}]},{key:4,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13276127'}]},{key:5,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matchRoot:true,activityIds:'com.cmcc.cmvideo.main.application.CompatibleMainActivity',matches:'[vid=\"iv_big_close\"]',exampleUrls:'https://e.gkd.li/ece7eb54-9b9b-40e2-9402-fc350f4734bb',snapshotUrls:'https://i.gkd.li/i/16503612'}]}]},{id:'cmccwm.mobilemusic',name:'咪咕音乐',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:'.ui.base.MainActivity',matches:'[text=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/13448898'}]}]},{id:'com.xiaomi.smarthome',name:'米家',groups:[{key:0,name:'局部广告-卡片广告',rules:[{activityIds:'com.xiaomi.smarthome.SmartHomeMainActivity',matches:'RelativeLayout[childCount=2] > ImageView[id!=null] + ImageView[clickable=true][id!=null]',snapshotUrls:'https://i.gkd.li/i/12639658'}]},{key:1,name:'更新提示-设备固件升级提示弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text*=\"检测到\"&&text*=\"升级\"] < ViewGroup + ViewGroup > Button > [text = \"取消\"]',snapshotUrls:'https://i.gkd.li/i/12639671'}]}]},{id:'com.mihoyo.hyperion',name:'米游社',groups:[{key:3,name:'功能类-自动打卡',desc:'点击[打卡],切换板块自动签到',rules:[{fastQuery:true,activityIds:'com.mihoyo.hyperion.main.HyperionMainActivity',matches:'TextView[id=\"com.mihoyo.hyperion:id/signTv\"][text=\"打卡\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13721772','https://i.gkd.li/i/13721776']}]},{key:6,name:'全屏广告-游戏版本活动',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.main.popup.HomePopupDialogActivity',matches:'[vid=\"closeIv\"]',exampleUrls:'https://e.gkd.li/5c54c1cc-95ae-420d-b3af-37e8553a6327',snapshotUrls:'https://i.gkd.li/i/16818949'}]},{key:7,name:'分段广告-游戏版本活动',desc:'点击关闭',fastQuery:true,activityIds:'.main.HyperionMainActivity',exampleUrls:'https://e.gkd.li/197dfb66-6b42-4fbd-b60c-4d801a8c729c',rules:[{key:0,name:'点击关闭',matches:'[vid=\"bottomBarBgIv\"] + * > [vid=\"close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/16996311'},{preKeys:[0],key:1,name:'点击确定',matches:'[vid=\"rootLayout\"] > [vid=\"confirmTv\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/16996319'}]},{key:8,name:'功能类-米游自动签到全家桶',desc:'包含崩坏3、绝区零、原神、星穹铁道',forcedTime:10000,activityIds:'.web2.MiHoYoWebActivity',rules:[{key:0,name:'点击签到',excludeMatches:'[text^=\"请在此绑定你的\"][visibleToUser=true]',anyMatches:['WebView[text*=\"签到\"] >4 View[childCount=11] > @View[childCount=3][visibleToUser=true] > Image[index=0][text!=null]','WebView[text*=\"签到\"] >4 View[childCount=10] > View + TextView[childCount=0][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/53d22dc7-b368-46c0-85d2-fe132b0832a9',snapshotUrls:['https://i.gkd.li/i/17601269','https://i.gkd.li/i/17601338','https://i.gkd.li/i/17611619','https://i.gkd.li/i/17611613','https://i.gkd.li/i/14967627','https://i.gkd.li/i/19586048','https://i.gkd.li/i/19586142'],excludeSnapshotUrls:['https://i.gkd.li/i/17601295','https://i.gkd.li/i/17601347','https://i.gkd.li/i/17611621','https://i.gkd.li/i/19581359','https://i.gkd.li/i/17611617','https://i.gkd.li/i/19586048','https://i.gkd.li/i/19586142','https://i.gkd.li/i/19587714']},{preKeys:[0],key:1,name:'关闭签到后的弹窗',matches:'@TextView[visibleToUser=true][text=\"\"] - View[childCount=2] >2 [text*=\"签到成功\"]',exampleUrls:'https://e.gkd.li/ef30277a-bd5d-444a-a9d5-ce63406d1269',snapshotUrls:['https://i.gkd.li/i/17601273','https://i.gkd.li/i/17601340','https://i.gkd.li/i/17611620','https://i.gkd.li/i/17611616','https://i.gkd.li/i/14967631']},{preKeys:[1],key:2,name:'关闭签到提醒',matches:'[text=\"不用了\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/56299b94-01fb-4d83-9796-ec9bd6bbae64',snapshotUrls:['https://i.gkd.li/i/17601283','https://i.gkd.li/i/17601345']},{preKeys:[1,2],key:3,name:'从签到页返回',excludeMatches:'[text=\"不用了\"][visibleToUser=true]',matches:'WebView[text*=\"签到\"] > View >3 View[index=0][childCount=1] > TextView[childCount=0][text=\"\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/cc68f623-5dc7-4703-9768-28826c4f16f6',snapshotUrls:['https://i.gkd.li/i/17601295','https://i.gkd.li/i/17601347','https://i.gkd.li/i/17611621','https://i.gkd.li/i/17611617','https://i.gkd.li/i/17629453'],excludeSnapshotUrls:['https://i.gkd.li/i/17601283','https://i.gkd.li/i/17601345']}]},{key:9,name:'权限提示-通知权限',rules:[{fastQuery:true,activityIds:'.main.HyperionMainActivity',matches:['[text^=\"开启通知提醒\"]','@[clickable=true] > [text$=\"拒绝\"]'],snapshotUrls:'https://i.gkd.li/i/24489020'}]}]},{id:'com.mxbc.mxsa',name:'蜜雪冰城',groups:[{key:2,name:'全屏广告-主界面弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:'com.mxbc.mxsa.modules.main.MainActivity',matches:'[id=\"com.mxbc.mxsa:id/close\"]',snapshotUrls:'https://i.gkd.li/i/12929345'}]}]},{id:'com.mxbc.ohsa',name:'蜜雪冰城鸿蒙版',groups:[{key:3,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mxbc.ohsa.modules.main.MainAbilityShellActivity',matches:'@UIComponent[id=\"Id_close\"] <2 UIComponentContainer < UIComponentContainer < UIComponentContainer < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13728113'}]}]},{id:'com.jf.my',name:'蜜源',groups:[{key:0,name:'更新提示-版本升级弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,activityIds:['.MainActivity','com.lbe.security.ui.CountdownDialogActivity'],matches:'[id=\"com.jf.my:id/btn_ok\"][text=\"更新\"] - [id=\"com.jf.my:id/btn_cancel\"][text=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/12838034','https://i.gkd.li/i/12840591']},{key:1,matches:'[id=\"com.jf.my:id/toUpgradeTv\"] - [id=\"com.jf.my:id/cancelTv\"]',snapshotUrls:'https://i.gkd.li/i/13786867'}]},{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.jf.my.main.ui.dialog.HomeRedPackageDialog',matches:'[id=\"com.jf.my:id/iv_back\"]',snapshotUrls:'https://i.gkd.li/i/12840619'}]}]},{id:'com.sjm.zhuanzhuan.mcy',name:'喵次元',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,action:'back',matches:'[text=\"立即升级\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13392514'}]}]},{id:'com.paokeji.yiqu',name:'喵趣漫画',groups:[{key:2,name:'更新提示',desc:'点击\"暂不\"',matchTime:10000,fastQuery:true,resetMatch:'app',actionMaximum:1,rules:[{activityIds:'com.aster.comic.app.view.bookdetails.BookdetailsActivity',matches:'[id=\"com.paokeji.yiqu:id/btnCancel\"]',exampleUrls:'https://m.gkd.li/57941037/2ce54292-bfc6-41c6-b2e5-e7d8302fc522',snapshotUrls:'https://i.gkd.li/i/14140265'}]},{key:3,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] + @View[childCount=2] > [text*=\"跳过\"]',snapshotUrls:['https://i.gkd.li/i/13829749','https://i.gkd.li/i/14362119']},{key:1,activityIds:['com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity','com.aster.comic.app.view.MainActivity'],matches:'[text=\"反馈\"] -(2,4) @View[childCount=1][visibleToUser=true] > Image[childCount=0][text=\"\"]',snapshotUrls:['https://i.gkd.li/i/13809578','https://i.gkd.li/i/14717730','https://i.gkd.li/i/16062358']},{key:2,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@LinearLayout[clickable=true] - * > [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/14847142'},{key:3,fastQuery:true,activityIds:'com.aster.comic.app.view.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/15374245'},{key:4,activityIds:['com.aster.comic.app.view.MainActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'[text=\"反馈\"] + View[childCount=1] > Image[childCount=0][text=\"\"]',snapshotUrls:['https://i.gkd.li/i/15711106','https://i.gkd.li/i/17301509']},{key:5,fastQuery:true,activityIds:'com.kwad.sdk.api.proxy.app.KsRewardVideoActivity',matches:'@[id=\"com.kwad.dy.sdk:id/ksad_end_close_btn\"] - [text=\"免费获取\"]',snapshotUrls:'https://i.gkd.li/i/16369203'},{key:6,fastQuery:true,activityIds:'com.kwad.sdk.api.proxy.app.KsRewardVideoActivity',matches:'@ViewGroup[clickable=true] +3 ViewGroup > [text*=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/16401930'},{key:7,name:'腾讯SDK-1',fastQuery:true,activityIds:['com.aster.comic.app.view.MainActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13830354','https://i.gkd.li/i/13842966']},{key:8,name:'腾讯SDK-2',fastQuery:true,activityIds:'com.aster.comic.app.view.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/15173845'},{key:9,name:'字节SDK',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'FrameLayout[desc*=\"close\"] > View',snapshotUrls:'https://i.gkd.li/i/13839519'},{key:10,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[id=\"com.byted.pangle.m:id/tt_reward_full_count_down\"]',snapshotUrls:'https://i.gkd.li/i/13810767'},{key:11,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'Image[childCount=0][text=\"\"] < @View + View > [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13810150'},{key:12,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',matches:['[text*=\"广告\"]','[text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13809629'}]},{key:4,name:'功能类-漫画页链接断开提示',desc:'点击[点我重试]',actionMaximum:3,rules:[{fastQuery:true,activityIds:'com.aster.comic.app.view.reader.ReaderActivity',matches:'@[clickable=true] > [text=\"点我重试\"]',exampleUrls:'https://m.gkd.li/57941037/d71c73bb-289f-4205-a253-fcd8bd32f196',snapshotUrls:'https://i.gkd.li/i/14572053'}]}]},{id:'com.sjm.xiaodesecond.mw',name:'喵物次元',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭/跳过',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.sjm.xiaodesecond.mw.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/5332e99f-d47b-44ad-b8df-fcd9ec564df4',snapshotUrls:'https://i.gkd.li/i/14353263'},{key:1,fastQuery:true,activityIds:'com.sjm.xiaodesecond.mw.MainActivity',matches:'@[clickable=true] > [text=\"跳过\"]',exampleUrls:'https://m.gkd.li/57941037/a52ba4bb-0838-4c08-b771-78205786b016',snapshotUrls:['https://i.gkd.li/i/14203087','https://i.gkd.li/i/14354395']},{key:2,fastQuery:true,activityIds:'com.sjm.xiaodesecond.mw.MainActivity',matches:'@ViewGroup[clickable=true][childCount=1] < ViewGroup +2 ViewGroup[childCount=2] > [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/46e28728-570e-4fef-9c38-d561813d1c63',snapshotUrls:['https://i.gkd.li/i/14203600','https://i.gkd.li/i/14203327']},{key:3,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <(2,3) FrameLayout[childCount=4] +(1,2) FrameLayout[childCount=2] >2 [text^=\"立即\" || text=\"去逛逛\"]',exampleUrls:'https://e.gkd.li/0b695e8c-c998-49bb-a416-27cf0f3a8f30',snapshotUrls:'https://i.gkd.li/i/14345580'}]}]},{id:'com.modian.app',name:'摩点',groups:[{key:1,name:'局部广告-[我的]界面广告条',rules:[{fastQuery:true,activityIds:'com.modian.app.ui.activity.MainActivity',matches:'[id=\"com.modian.app:id/fl_banner_layout\"] > [id=\"com.modian.app:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13610188'}]}]},{id:'com.jdd.motorfans',name:'摩托范',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:['.MTMainActivity','.modules.detail.DetailActivity2','.search.SearchMainActivity','.modules.base.FragmentContainerActivity','.message.ChatDetailActivity'],matches:'[id=\"com.jdd.motorfans:id/ad_content\"] >n [id=\"com.jdd.motorfans:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/12733646','https://i.gkd.li/i/12798654','https://i.gkd.li/i/12878843','https://i.gkd.li/i/12913956','https://i.gkd.li/i/13188861','https://i.gkd.li/i/14546613']},{key:1,matches:'@ImageView - RelativeLayout > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12826288'},{key:2,fastQuery:true,activityIds:['com.jdd.motorfans.MTMainActivity','.modules.detail.DetailActivity2'],matches:'[vid=\"iv_right_top_close\" || vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0f4b8d7d-fda4-43ee-b892-3a85d6dae278',snapshotUrls:['https://i.gkd.li/i/17002101','https://i.gkd.li/i/17078108','https://i.gkd.li/i/20918047']}]},{key:2,name:'分段广告-信息流广告',activityIds:'com.jdd.motorfans.MTMainActivity',rules:[{key:0,name:'点关闭按钮',matches:'[id=\"com.jdd.motorfans:id/recyclerView\"] > FrameLayout[id=\"com.jdd.motorfans:id/container\"] > FrameLayout[childCount=3] > ImageView[clickable=true][id=null] + ImageView[clickable=true][id=null]',snapshotUrls:'https://i.gkd.li/i/12826382'},{preKeys:[0],name:'点击不感兴趣',matches:'TextView[id=\"com.jdd.motorfans:id/beizi_dislike_item_multi_one_title\"][text*=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12829069'}]},{key:3,name:'全屏广告-文章内容页面弹窗广告',activityIds:'com.jdd.motorfans.modules.zone.search.ZoneInsideSearchActivity',rules:[{key:0,name:'点x按钮',matches:'[id=\"com.jdd.motorfans:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12888087'}]},{key:4,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['.MTMainActivity','.modules.detail.DetailActivity2','.cars.MotorDetailActivity2','.modules.carbarn.brand.detail.MBrandDetailActivity'],matches:'[vid=\"close_b_t_a_i_b_no_compliance\"]',exampleUrls:'https://e.gkd.li/daf8ea52-a935-4e58-9e27-c5cb28fa9cf0',snapshotUrls:['https://i.gkd.li/i/16685033','https://i.gkd.li/i/16859608','https://i.gkd.li/i/17162753','https://i.gkd.li/i/17533553']}]}]},{id:'com.feiyu.morin',name:'魔音MORIN',groups:[{key:0,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.feiyu.morin.view.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13521556'},{key:1,name:'快手广告',fastQuery:true,activityIds:'com.feiyu.morin.view.main.MainActivity',matches:['[text=\"广告\"]','@ViewGroup > [text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13546184'},{key:2,fastQuery:true,activityIds:'com.feiyu.morin.view.main.MainActivity',matches:'@ViewGroup[clickable=true][childCount=1] < ViewGroup +2 ViewGroup > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/52f8dddd-3604-4144-96ce-804c66e77a19',snapshotUrls:'https://i.gkd.li/i/16621747'},{key:3,fastQuery:true,activityIds:'.view.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/a3929d91-2da9-423e-8733-7a933a611ca5',snapshotUrls:'https://i.gkd.li/i/16621748'}]},{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:['com.feiyu.morin.view.main.MainActivity','com.feiyu.morin.view.main.PlayerBottomControlActivity'],matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13521680','https://i.gkd.li/i/13625476']}]}]},{id:'com.maxhom.weibu',name:'暮瑟',groups:[{key:3,name:'局部广告-交友页面底部广告',activityIds:['com.maxhom.weibu.tool.home.activity.NewMainActivity','com.maxhom.weibu.WelcomeActivity'],rules:[{key:0,fastQuery:true,activityIds:['.tool.home.activity.NewMainActivity','.WelcomeActivity'],matches:['@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"com.maxhom.weibu:id/flAd\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13377607','https://i.gkd.li/i/13377810','https://i.gkd.li/i/13728552']},{key:2,fastQuery:true,activityIds:'.tool.home.activity.NewMainActivity',matches:'[id=\"com.maxhom.weibu:id/anythink_myoffer_banner_close\"]',snapshotUrls:['https://i.gkd.li/i/13702305','https://i.gkd.li/i/13702339','https://i.gkd.li/i/13702345']}]},{key:4,name:'全屏广告-漂流瓶页面提示弹窗',rules:[{key:0,fastQuery:true,activityIds:['.tool.home.activity.ToolBottleActivity','.tool.home.activity.NewMainActivity'],matches:'[id=\"com.maxhom.weibu:id/ivClose\"]',snapshotUrls:['https://i.gkd.li/i/13377649','https://i.gkd.li/i/13457015']},{key:1,fastQuery:true,activityIds:'.tool.home.activity.NewMainActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] + FrameLayout >2 [text=\"立即下载\"]',snapshotUrls:'https://i.gkd.li/i/13377611'}]},{key:5,name:'权限提示-定位权限',desc:'自动点击取消',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.maxhom.weibu.tool.home.activity.ToolBottleActivity','com.maxhom.weibu.tool.msg.MyBottleActivity','com.maxhom.weibu.tool.home.activity.NewMainActivity'],matches:'[text=\"去设置\"] + [text=\"取消\"]',snapshotUrls:['https://i.gkd.li/i/13377685','https://i.gkd.li/i/13457033','https://i.gkd.li/i/13457038']}]}]},{id:'com.csair.mbp',name:'南方航空',groups:[{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.CSMBPActivity',matches:'[id=\"com.csair.mbp:id/close_btn\"]',exampleUrls:'https://e.gkd.li/c6aeaf1c-e4d6-4b9c-a4bf-ee5b05d2bb30',snapshotUrls:'https://i.gkd.li/i/13197497'}]},{key:4,name:'功能类-长辈版弹窗',desc:'点击[暂不开启]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.csair.mbp.CSMBPActivity',matches:'[text=\"开启长辈版\"] -2 [text=\"暂不开启\"]',exampleUrls:'https://m.gkd.li/57941037/8744f8c6-7f9a-4f7b-a5c7-68de1701cd7b',snapshotUrls:'https://i.gkd.li/i/14810700'}]}]},{id:'com.csg.palmhall',name:'南网在线',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@[text=\"关闭\"] + [text=\"升级\"]',snapshotUrls:'https://i.gkd.li/i/12700060'}]},{key:2,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.csg.palmhall.MainActivity',matches:'View > Image +(3) [text=\"不再显示\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12700075'}]},{key:3,name:'通知提示-公告弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.csg.palmhall.MainActivity',matches:'[text$=\"公告\"] - View[childCount=2] > Image[childCount=0][text=\"\"]',exampleUrls:'https://e.gkd.li/0ecc2a4e-6ab9-4c00-80fe-bbd23d181be8',snapshotUrls:'https://i.gkd.li/i/16478559'}]}]},{id:'com.xhgd.jx',name:'柠檬解析',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{key:0,name:'腾讯SDK',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13762226'}]}]},{id:'com.rocoplayer.app.nm',name:'柠檬听书',groups:[{key:1,name:'通知提示-温馨提示弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.e4a.runtime.android.mainActivity',matches:'[text=\"温馨提示\"] +2 [text=\"确定\"]',snapshotUrls:'https://i.gkd.li/i/14304132'}]},{key:2,name:'全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:'com.e4a.runtime.android.mainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/14304134'}]}]},{id:'com.schunshang.bij.niuniu',name:'牛牛视频',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯广告-1',activityIds:'com.sexy.goddess.tab.RootActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13635127'},{key:1,name:'腾讯广告-2',activityIds:'com.sexy.goddess.tab.RootActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13635128'}]}]},{id:'com.xiaohu.olevodmobile',name:'欧乐影院',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@[id=\"com.xiaohu.olevodmobile:id/init_time_text\"] + [text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/12826256'}],order:-10}]},{id:'com.qiekj.user',name:'胖乖生活',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.MainActivity',matches:'[id=\"com.qiekj.user:id/btn_cancelUpdate\"][text*=\"暂不更新\"]',snapshotUrls:'https://i.gkd.li/i/13435011'}]},{key:2,name:'功能类-开启[自动抵扣]开关',rules:[{fastQuery:true,activityIds:'.ui.activity.scan.AfterPayUseAct',matches:'@[vid=\"switchView\"][checked=false] - [vid=\"tv_automatic_use\"]',exampleUrls:'https://e.gkd.li/85bbfba2-5011-4f48-a08a-45386836ebd6',snapshotUrls:'https://i.gkd.li/i/17260785'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,activityIds:'.ui.activity.home.MyDeviceAct',matches:['[text*=\"广告\"][visibleToUser=true]','[text=\"关闭\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/bccff301-de1c-4d70-8b99-f9acf8e04efa',snapshotUrls:'https://i.gkd.li/i/18032031'},{key:2,fastQuery:true,activityIds:'com.tianmu.biz.activity.InterstitialActivity',matches:'[vid=\"tianmu_widget_iv_close\"]',exampleUrls:'https://e.gkd.li/3f3d3462-7121-4f37-8252-1ef82e74f626',snapshotUrls:'https://i.gkd.li/i/18033023'},{key:3,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',exampleUrls:'https://e.gkd.li/343016ff-dd8f-4a19-8e3c-63520b087e98',snapshotUrls:'https://i.gkd.li/i/12903095'},{key:4,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] + RelativeLayout >2 [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/501c8360-a261-40fb-b361-f1c6493289d7',snapshotUrls:'https://i.gkd.li/i/18094642'},{key:5,fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"iv_cancel\" || vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/13b65be1-e126-4a32-a4d8-efc0f20623bc',snapshotUrls:['https://i.gkd.li/i/24045175','https://i.gkd.li/i/24100793']},{key:6,fastQuery:true,activityIds:'com.octopus.ad.AdActivity',matches:'@ImageView[clickable=true][childCount=0][width<100 && height<100] - [text=\"反馈\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c5363e69-4206-4266-9e45-3ce1cc650bd2',snapshotUrls:'https://i.gkd.li/i/24100775'}]}]},{id:'com.wondertek.paper',name:'澎湃新闻',groups:[{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.thepaper.paper.ui.main.MainActivity',matches:'[id=\"com.wondertek.paper:id/relative_layout\"] + [id=\"com.wondertek.paper:id/close_photo\"]',snapshotUrls:'https://i.gkd.li/i/12899226'}]}]},{id:'cn.xiaochuankeji.zuiyouLite',name:'皮皮搞笑',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/14546304'},{key:1,fastQuery:true,matches:'[text*=\"跳过\"][text.length<=10]',snapshotUrls:['https://i.gkd.li/i/12745095','https://i.gkd.li/i/13387320']},{key:2,fastQuery:true,position:{left:'width * 0.8778',top:'width * 0.1667'},matches:'[id$=\"spalsh_ad_view\"] >4 [id$=\"native_container\"] >2 [id=\"cn.xiaochuankeji.zuiyouLite:id/contentView\"]',exampleUrls:'https://m.gkd.li/57941037/485963ab-07b1-412a-a932-badc50cb2688',snapshotUrls:'https://i.gkd.li/i/13399391'}],order:-10},{key:2,name:'分段广告-信息流广告',fastQuery:true,activityIds:'cn.xiaochuankeji.zuiyouLite.ui.slide.ActivitySlideDetail',rules:[{key:0,name:'点击关闭',matches:'[id=\"cn.xiaochuankeji.zuiyouLite:id/ad_remove\"]',snapshotUrls:'https://i.gkd.li/i/13387116'},{preKeys:[0],name:'点击[不喜欢广告主]',matches:'@LinearLayout[clickable=true] > [text=\"不喜欢广告主\"]',snapshotUrls:'https://i.gkd.li/i/13387155'}]}]},{id:'com.gentle.ppcat',name:'皮皮喵',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'@FrameLayout - LinearLayout >2 [text$=\"惊喜奖励\"]',snapshotUrls:['https://i.gkd.li/i/12777048','https://i.gkd.li/i/12858015']},{key:1,fastQuery:true,matches:'[text=\"放弃奖励离开\"]',snapshotUrls:'https://i.gkd.li/i/15008493'},{key:2,matches:'@ImageView - WebView > [text=\"优量汇-插屏视频endcard\"]',snapshotUrls:'https://i.gkd.li/i/12777051'},{key:3,matches:'[desc=\"关闭喵\"]',snapshotUrls:'https://i.gkd.li/i/13797494'}],order:-10},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/68c0ad3a-0f25-43bb-a6d4-ab45d49e8db7',snapshotUrls:'https://i.gkd.li/i/20950433'},{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][visibleToUser=true][width<100 && height<100] < FrameLayout[childCount=1] <2 FrameLayout[childCount=3] < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/7002f432-f9cb-45c1-a120-5458b94782b3',snapshotUrls:'https://i.gkd.li/i/20950403'},{key:2,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][visibleToUser=true][width<80 && height<80] < View[childCount=1] < View[childCount=1] + View > [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/f3ad0b42-3c85-4742-9326-8a4b221fb433',snapshotUrls:'https://i.gkd.li/i/20960114'}]}]},{id:'com.sup.android.superb',name:'皮皮虾',groups:[{key:1,name:'青少年模式',actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'com.sup.superb.m_teenager.view.EnterTeenagerModeDialogActivity',matches:'[text$=\"青少年模式\"] + [text=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13796869'}]},{key:5,name:'权限提示-通知权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"开启推送通知\"] +2 * > [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13691081'}]},{key:6,name:'局部广告-右上角红包悬浮窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.sup.android.base.MainActivity',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] < RelativeLayout[childCount=2] < FrameLayout - [id=\"com.sup.android.superb:id/tab_container\"]',snapshotUrls:'https://i.gkd.li/i/13624220'}]},{key:7,name:'更新提示',desc:'点击[我再想想]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"发现新版本\"] +2 * > [text=\"我再想想\"]',snapshotUrls:'https://i.gkd.li/i/13858490'}]},{key:8,name:'评价提示',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.sup.android.base.MainActivity','com.sup.android.base.praise.PraiseDialogActivity'],matches:['[text^=\"喜欢皮皮虾吗\"]','[text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/14005608','https://i.gkd.li/i/15285383']}]},{key:9,name:'全屏广告-集五福弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.sup.android.base.MainActivity',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] <2 RelativeLayout[childCount=2] < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/246d1d0b-d493-4d40-bbb7-9c04ae6b457d',snapshotUrls:'https://i.gkd.li/i/14151026'}]},{key:10,name:'局部广告-卡片广告',desc:'点击[关闭广告]',rules:[{fastQuery:true,activityIds:'com.sup.android.base.MainActivity',matches:'[text=\"关闭广告\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/af1e7624-540b-4646-b812-3b748966e903',snapshotUrls:'https://i.gkd.li/i/14471869'}]},{key:11,name:'分段广告-信息流广告',desc:'点击展开-点击[不感兴趣]',fastQuery:true,activityIds:'com.sup.android.base.MainActivity',rules:[{key:0,matches:'RecyclerView > FrameLayout[id!=null] >4 FrameLayout[childCount=5] > ViewGroup[childCount=1] > @ImageView[clickable=true][childCount=0] <<n [vid=\"view_pager\"]',snapshotUrls:'https://i.gkd.li/i/14886478'},{preKeys:[0],key:1,matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/14886477'}]}]},{id:'com.xunmeng.pinduoduo',name:'拼多多',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:['.ui.activity.HomeActivity','.ui.activity.MainFrameActivity'],matches:'@Image[clickable=true] +5 [text=\"立即升级\"]',snapshotUrls:['https://i.gkd.li/i/13195645','https://i.gkd.li/i/23936506','https://i.gkd.li/i/24786015']}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:3,fastQuery:true,action:'back',activityIds:['.ui.activity.HomeActivity','.ui.activity.MainFrameActivity'],excludeMatches:'[text=\"我的订单\" || text=\"聊天\"][bottom<500][visibleToUser=true]',matches:'[text=\"开心收下\" || text=\"去抢购\" || text=\"立即抽免单\" || text=\"去刮奖\" || text=\"立即领取\" || text=\"去领大额金币\" || text=\"送你大额现金\" || text*=\"红包助手\" || text=\"刮刮卡发来的消息通知\" || text=\"立即充值\" || text=\"打款金额\"][top>600][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13625441','https://i.gkd.li/i/13761182','https://i.gkd.li/i/13944165','https://i.gkd.li/i/14456101','https://i.gkd.li/i/14596990','https://i.gkd.li/i/14614135','https://i.gkd.li/i/15360330','https://i.gkd.li/i/15032649','https://i.gkd.li/i/15076322','https://i.gkd.li/i/17564786','https://i.gkd.li/i/17585645','https://i.gkd.li/i/17625608','https://i.gkd.li/i/18481318'],excludeSnapshotUrls:['https://i.gkd.li/i/23352586','https://i.gkd.li/i/23607429']},{key:4,fastQuery:true,activityIds:'com.xunmeng.pinduoduo.ui.activity.HomeActivity',matches:'@ViewGroup[clickable=true] - ViewGroup[childCount=3] >2 [text=\"其他\"]',snapshotUrls:'https://i.gkd.li/i/15103543'},{key:5,fastQuery:true,activityIds:'com.xunmeng.pinduoduo.activity.NewPageMaskActivity',matches:['[text=\"继续拼单\"]','@[clickable=true] > [text=\"先去逛逛\"]'],snapshotUrls:['https://i.gkd.li/i/15197527','https://i.gkd.li/i/15211473']},{key:7,activityIds:['.ui.activity.HomeActivity','.ui.activity.MainFrameActivity'],matches:'ImageView[childCount=0][width<130&&height<130] < ViewGroup[childCount=1] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] <(1,2) ViewGroup <(1,2) ViewGroup < ViewGroup < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout <(1,2,3) [parent=null]',exampleUrls:'https://e.gkd.li/f74b5f58-e518-4e33-bbb4-0bf28e2b79d8',snapshotUrls:['https://i.gkd.li/i/17528782','https://i.gkd.li/i/17655498','https://i.gkd.li/i/17893977','https://i.gkd.li/i/22741566']},{key:8,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.activity.HomeActivity',matches:'@ViewGroup[childCount=1][clickable=true] < ViewGroup[childCount=2] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] <2 FrameLayout <2 [parent=null]',exampleUrls:'https://e.gkd.li/e5428072-9ee3-47e9-87ad-d8b47e24f173',snapshotUrls:'https://i.gkd.li/i/17773799'},{key:9,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.activity.HomeActivity',matches:'@ImageView[index=0][vid=\"pdd\"][childCount=0][visibleToUser=true][width<120&&height<120] < RelativeLayout[childCount=2] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [parent=null]',exampleUrls:'https://e.gkd.li/64f35ab7-37e1-4060-aa91-468116a42cae',snapshotUrls:'https://i.gkd.li/i/18375615'},{key:10,activityIds:'.activity.NewPageActivity',matches:'[desc=\"关闭按钮\"]',snapshotUrls:'https://i.gkd.li/i/23383792'}]},{key:6,name:'局部广告-悬浮广告',desc:'点击关闭',activityIds:'com.xunmeng.pinduoduo.ui.activity.HomeActivity',rules:[{key:0,matches:'@TextView[id=null][clickable=true] + Image[id=null][text=\"webp\"]',exampleUrls:'https://e.gkd.li/20f77125-b223-4d65-b61e-826871e0032b',snapshotUrls:'https://i.gkd.li/i/12642058'},{key:1,matches:'[id=\"unactive_watch_video_pendant\"] > TextView[clickable=true][text=\"\"][childCount=0]',snapshotUrls:'https://i.gkd.li/i/12642058'},{key:2,activityIds:'com.xunmeng.pinduoduo.ui.activity.HomeActivity',matches:'RelativeLayout[childCount=2] > RelativeLayout[vid=\"pdd\"] + @FrameLayout[childCount=1][clickable=true][visibleToUser=true][text=null][vid=\"pdd\"] > ImageView[childCount=0][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0f850878-2b6a-46c7-86aa-28329df0993c',snapshotUrls:'https://i.gkd.li/i/15140800'},{key:3,name:'多多视频金币提示',activityIds:'.ui.activity.HomeActivity',matches:'[text^=\"看5分钟视频\"] -2 Image',snapshotUrls:'https://i.gkd.li/i/25088623'}]},{key:8,name:'局部广告-商品详情页视频讲解窗口',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.xunmeng.pinduoduo.activity.NewPageActivity',matches:'[vid=\"iv_float_window_close\"]',exampleUrls:'https://e.gkd.li/f81a45e4-09b4-498f-be72-ca84cdd0db83',snapshotUrls:'https://i.gkd.li/i/14549415'}]},{key:9,name:'功能类-多多视频每日自动签到',fastQuery:true,matchTime:10000,actionMaximum:1,activityIds:'com.xunmeng.pinduoduo.ui.activity.HomeActivity',rules:[{key:0,name:'自动签到',matches:'@[clickable=true] >2 [text=\"领取今日现金\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13201422','https://i.gkd.li/i/13372677']},{preKeys:[0],key:1,name:'在签到后关闭弹窗',matches:'@[clickable=true] >2 [text=\"明日继续来领\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13205634'}]},{key:10,name:'全屏广告-多多视频划到广告自动跳过',desc:'点击返回自动刷新，从而跳过广告',fastQuery:true,activityIds:'com.xunmeng.pinduoduo.ui.activity.HomeActivity',rules:[{key:0,matches:['TextView[text=\"正在直播\"]','@ImageView[desc=\"返回\"] <4 ViewGroup < * < * < [id=\"android:id/content\"]'],snapshotUrls:'https://i.gkd.li/i/13446291'},{key:1,matches:['TextView[text=\"查看更多低价商品\"]','@ImageView[desc=\"返回\"] <4 ViewGroup < * < * < [id=\"android:id/content\"]'],snapshotUrls:'https://i.gkd.li/i/13791119'}]},{key:11,name:'功能类-发送图片时自动勾选原图',fastQuery:true,rules:[{activityIds:'com.xunmeng.pinduoduo.app_album.album.MultiImageSelectorActivity',matches:'@[text=\"原图\"][checked=false] + [text=\"发送\"]',snapshotUrls:['https://i.gkd.li/i/13925378','https://i.gkd.li/i/13925380']}]},{key:12,name:'全屏广告-下单后出现的弹窗',desc:'点击关闭',rules:[{key:0,activityIds:['com.xunmeng.pinduoduo.activity.NewPageMaskActivity','com.xunmeng.pinduoduo.ui.activity.HomeActivity'],action:'clickCenter',matches:'Button[text=\"关闭弹窗\" || desc=\"关闭弹窗\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13927594','https://i.gkd.li/i/14434154','https://i.gkd.li/i/14456017','https://i.gkd.li/i/13308175','https://i.gkd.li/i/23256823']}]},{key:16,name:'青少年模式',desc:'点击[我知道了]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.HomeActivity',matches:'[text=\"青少年模式\"] < FrameLayout +5 ViewGroup [text=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13809053'}]},{key:17,name:'权限提示-通知权限',actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.ui.activity.HomeActivity',matches:'FrameLayout > ViewGroup[vid=\"pdd\"] > ViewGroup > ViewGroup[childCount<3] > ViewGroup[childCount=3 || childCount=2] >(1,2) ImageView[clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14109435','https://i.gkd.li/i/14549423','https://i.gkd.li/i/14662202']},{key:1,fastQuery:true,action:'back',activityIds:['.ui.activity.HomeActivity','.activity.NewPageActivity','.ui.activity.MainFrameActivity'],matches:'[text=\"及时获取物流消息\" || text=\"开启通知\" || text=\"允许通知\"]',snapshotUrls:['https://i.gkd.li/i/15004580','https://i.gkd.li/i/15048085','https://i.gkd.li/i/16643295','https://i.gkd.li/i/18371979']}]},{key:19,name:'全屏广告-[个性化推荐]弹窗',desc:'点击[取消]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xunmeng.pinduoduo.ui.activity.HomeActivity',matches:['[text=\"个性化推荐未开启\"]','[text=\"取消\"]'],exampleUrls:'https://e.gkd.li/816070f2-035d-4702-87e3-441cca8b5430',snapshotUrls:'https://i.gkd.li/i/14964851'}]},{key:20,name:'其他-登录提现页面点击[跳过]',rules:[{fastQuery:true,activityIds:'.login.LoginActivity',matches:['[text=\"已获得现金\"]','[text=\"跳过\"]'],exampleUrls:'https://e.gkd.li/4197b363-3492-4f87-a9dd-109da67bb3bf',snapshotUrls:'https://i.gkd.li/i/17450614'}]},{key:21,name:'功能类-关闭截图后的弹窗',rules:[{fastQuery:true,action:'back',activityIds:'.activity.NewPageActivity',matches:'[text=\"搜索图片同款商品\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/19340768'}]}]},{id:'com.spdbccc.app',name:'浦大喜奔',groups:[{key:1,name:'通知提示-代理提示弹窗',desc:'点击[确定]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.sp.splash.activity.SplashActivity',matches:['[text=\"提示\"][visibleToUser=true]','[text=\"确定\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/e582c5d4-bce3-46a2-ad69-7d0ac4e2fb52',snapshotUrls:'https://i.gkd.li/i/18275651'}]},{key:2,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.sp.main.MainActivity',rules:[{key:1,matches:'[vid=\"ckb_not_show_again\"][checked=false][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bb770917-9fbb-4910-9c9e-8bf58437bb1e',snapshotUrls:'https://i.gkd.li/i/18275682'},{preKeys:[1],matches:'[vid=\"iv_kfc_image_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bb770917-9fbb-4910-9c9e-8bf58437bb1e',snapshotUrls:'https://i.gkd.li/i/18275682'}]},{key:3,name:'局部广告-悬浮广告',rules:[{fastQuery:true,activityIds:'.sp.main.MainActivity',matches:'[vid=\"ll_quolity_float_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4cb41225-609a-4b7f-8ff4-ecca03d37c38',snapshotUrls:'https://i.gkd.li/i/18275729'}]}]},{id:'cn.com.spdb.mobilebank.per',name:'浦发银行',groups:[{key:1,name:'权限提示-通知权限',desc:'自动点击关闭。',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.web.stage.StageCommonWebActivity',matches:'[text=\"去开启\"] + View > Image[text.length=0]',snapshotUrls:'https://i.gkd.li/i/13458535'}]}]},{id:'com.kmxs.reader',name:'七猫免费小说',groups:[{key:2,name:'分段广告-阅读页面广告',fastQuery:true,rules:[{key:0,activityIds:'org.geometerplus.android.fbreader.FBReader',matches:'[vid=\"ad_direct_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17355000'},{preKeys:[0],activityIds:'org.geometerplus.android.fbreader.FBReader',matches:'[text=\"直接关闭\"]',snapshotUrls:'https://i.gkd.li/i/17354753'}]},{key:3,name:'全屏广告-阅读结束后显示的广告',fastQuery:true,activityIds:'org.geometerplus.android.fbreader.FBReader',rules:[{matches:'[id=\"com.kmxs.reader:id/ad_direct_close\"]',snapshotUrls:['https://i.gkd.li/i/12640303','https://i.gkd.li/i/13362269','https://i.gkd.li/i/13362272']}]},{key:4,name:'全屏广告-签到弹窗',activityIds:'org.geometerplus.android.fbreader.FBReader',rules:'@TextView[id=null] < View +(2) TextView[text^=\"已连签\"&&text*=\"天\"]',snapshotUrls:['https://i.gkd.li/i/12640320']},{key:99,name:'局部广告-右侧悬浮红包',activityIds:'com.kmxs.reader.home.ui.HomeActivity',rules:{matches:'[id=\"com.kmxs.reader:id/red_packet_img\"] + [id=\"com.kmxs.reader:id/close_red_packet\"]',action:'clickCenter'},snapshotUrls:['https://i.gkd.li/i/12640287']},{key:5,name:'全屏广告-字节视频广告',desc:'点击关闭',actionDelay:300,rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text*=\"跳过\"][text.length<=10]',snapshotUrls:['https://i.gkd.li/i/13459157','https://i.gkd.li/i/13459172','https://i.gkd.li/i/13459174']},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',fastQuery:true,matches:'[id=\"com.byted.pangle:id/tt_reward_full_count_down_after_close\"]',snapshotUrls:'https://i.gkd.li/i/13459182'},{key:2,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 RelativeLayout[childCount=4] < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13472957'},{key:3,fastQuery:true,activityIds:'com.qq.e.ads.PortraitADActivity',matches:'@ImageView[visibleToUser=true][childCount=0] < FrameLayout[childCount=1] < FrameLayout[childCount=1] + FrameLayout >3 [text^=\"摇动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13472955'}]},{key:8,name:'局部广告-卡片广告',rules:[{key:1,fastQuery:true,activityIds:'com.kmxs.reader.home.ui.HomeActivity',matches:'[id=\"com.kmxs.reader:id/bookshelf_book_item_direct_close\"]',snapshotUrls:'https://i.gkd.li/i/13489942'},{key:2,fastQuery:true,activityIds:'org.geometerplus.android.fbreader.FBReader',matches:'[vid=\"iv_ad_direct_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/9217fd14-1ca6-49b8-8f8b-bff7a98745dd',snapshotUrls:'https://i.gkd.li/i/17574170'}]},{key:9,name:'全屏广告-今日专属推荐弹窗',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'[id=\"com.kmxs.reader:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13941276'}]}]},{id:'com.xstore.sevenfresh',name:'七鲜',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.modules.MainActivity',matches:'[vid=\"closed_img\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fd3abb40-d339-49cf-a6c8-83eedf1451b4',snapshotUrls:'https://i.gkd.li/i/23021853'}]}]},{id:'com.magicalstory.AppStore',name:'奇妙应用',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'软件详情页',fastQuery:true,actionDelay:300,activityIds:['com.magicalstory.AppStore.appDetails.AppDetailsActivity','com.magicalstory.AppStore.main.fragments.square.section.forumDetailsActivity'],matches:['[vid=\"itemUser\"][visibleToUser=true]','FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][visibleToUser=true] <<n [vid=\"bannerLayout\"]'],snapshotUrls:['https://i.gkd.li/i/14771070','https://i.gkd.li/i/14771175'],excludeSnapshotUrls:['https://i.gkd.li/i/14771110','https://i.gkd.li/i/17879219']},{key:1,name:'搜索页面',activityIds:'com.magicalstory.AppStore.search.searchActivity',matches:'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView < FrameLayout +2 *[visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14771429'},{key:2,name:'首页',fastQuery:true,activityIds:'com.magicalstory.AppStore.main.MainActivity',matches:'[vid=\"button_close_ad\"]',snapshotUrls:'https://i.gkd.li/i/14668408'},{key:3,name:'评论区顶部',fastQuery:true,actionDelay:300,activityIds:'com.magicalstory.AppStore.main.fragments.square.section.forumDetailsActivity',matches:['[vid=\"title_browse\"][visibleToUser=true]','FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView <<n [vid=\"banner\"]'],snapshotUrls:['https://i.gkd.li/i/14758809','https://i.gkd.li/i/14783076']}]},{key:2,name:'通知提示-公告弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:'[text=\"隐藏\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17892865'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.cretin.www.cretinautoupdatelibrary.activity.UpdateType10Activity',matches:'[id=\"com.magicalstory.AppStore:id/tv_update\"] <2 * + * > [id=\"com.magicalstory.AppStore:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13459373'}]},{key:4,name:'局部广告-首页横幅广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.main.MainActivity',matches:'[vid=\"item_broadcast\"] >2 [vid=\"button_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c885f80c-9fd5-4fcc-9117-e8fed04ee300',snapshotUrls:'https://i.gkd.li/i/20259691'}]}]},{id:'com.android.icredit',name:'企查查',groups:[{key:1,name:'全屏广告-VIP弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.android.icredit.ui.MainMenuActivity',matches:'@Image[childCount=0][visibleToUser=true] <2 View < View < WebView[text$=\"限时返场\" || text=\"首单有礼\"] < WebView < LinearLayout < LinearLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/eb232325-12e4-495f-a9f3-5f853d5e66f9',snapshotUrls:['https://i.gkd.li/i/14720494','https://i.gkd.li/i/15112280']}]}]},{id:'com.tencent.wework',name:'企业微信',groups:[{key:1,name:'功能类-自动领红包',desc:'自己发的红包不领',rules:[{key:0,name:'点击别人发的红包',fastQuery:true,activityIds:['.msg.controller.ExternalContactMessageListActivity','.msg.controller.MessageListActivity'],matches:'RelativeLayout[childCount=2] > ImageView[childCount=0] + RelativeLayout >2 @RelativeLayout[clickable=true][childCount=4] > LinearLayout[index=1][getChild(0).childCount=1] + RelativeLayout[childCount=1] > TextView[text=\"红包\"]',snapshotUrls:['https://i.gkd.li/i/14151095','https://i.gkd.li/i/24560890','https://i.gkd.li/i/24577241'],excludeSnapshotUrls:'https://i.gkd.li/i/14151131'},{preKeys:[0],key:1,name:'开红包',activityIds:'.enterprise.redenvelopes.controller.RedEnvelopeCollectorActivity',matches:'RelativeLayout[childCount=3] > FrameLayout + RelativeLayout[childCount=3] + ImageView[clickable=true][childCount=0][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24560289','https://i.gkd.li/i/24588743']},{preKeys:[0,1],key:2,name:'从金额页面返回到聊天页面',fastQuery:true,action:'back',activityIds:'.enterprise.redenvelopes.controller.RedEnvelopeDetailActivity',matches:'[text=\"已存入绑定的微信零钱账户\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14151120'}]},{key:2,name:'分段广告-顶部卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.tencent.wework.launch.WwMainActivity',matches:'ImageView[clickable=true][childCount=0] < ViewFlipper[childCount=1] + @ImageView[clickable=true][visibleToUser=true][width<140 && height<140] <n RelativeLayout <<n RecyclerView[childCount>10] <n FrameLayout <n ViewGroup - RelativeLayout >4 [text=\"工作台\"]',exampleUrls:'https://e.gkd.li/e0c4aa4a-fd8b-4440-920b-f96eec60baa1',snapshotUrls:['https://i.gkd.li/i/16977927','https://i.gkd.li/i/24099806']},{preKeys:[0],fastQuery:true,activityIds:'com.tencent.wework.launch.WwMainActivity',matches:'[text=\"关闭\"]',exampleUrls:'https://e.gkd.li/e4a71c0c-c0ce-4822-ae69-4a3330a28a84',snapshotUrls:'https://i.gkd.li/i/16977929'}]},{key:3,name:'权限提示-悬浮窗',rules:[{fastQuery:true,activityIds:'com.tencent.wework.common.controller.DialogActivityUtil',matches:['[text^=\"请开启悬浮窗\"]','[text=\"取消\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/24230054'}]}]},{id:'com.qidian.QDReader',name:'起点读书',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]) || ([vid=\"splash_skip_button\"][visibleToUser=true])',exampleUrls:'https://e.gkd.li/3e2357fd-dced-4929-85e0-a9a06ce5fea0',snapshotUrls:['https://i.gkd.li/i/19580847','https://i.gkd.li/i/19633020']}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:'.framework.widget.dialog.judian',matches:'[text$=\"新版本\"] +2 * >2 [id=\"com.qidian.QDReader:id/cancel\"]',snapshotUrls:'https://i.gkd.li/i/12641026'},{key:2,activityIds:'com.tencent.upgrade.ui.UpgradeDialogActivity',matches:'[id=\"com.qidian.QDReader:id/upgrade_dialog_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/13116821'}]},{key:2,name:'青少年模式',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.bll.helper.z0','.ui.activity.MainGroupActivity','.framework.widget.dialog.judian'],matches:'[vid=\"btnEnterTeen\"] + [vid=\"btnCancel\"]',snapshotUrls:['https://i.gkd.li/i/12640241','https://i.gkd.li/i/12709168','https://i.gkd.li/i/12905817','https://i.gkd.li/i/17879416']}]},{key:3,name:'全屏广告',fastQuery:true,rules:[{activityIds:['com.qidian.QDReader.ui.activity.MainGroupActivity','com.tencent.mm.plugin.webview.ui.tools.SDKOAuthUI','com.qidian.QDReader.framework.widget.dialog.judian','com.qidian.QDReader.ui.activity.BookLastPageNewActivity'],matches:'[vid=\"imgClose\" || vid=\"btnClose\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12640195','https://i.gkd.li/i/12640158','https://i.gkd.li/i/12818198','https://i.gkd.li/i/13469004','https://i.gkd.li/i/23210736','https://i.gkd.li/i/23249358']}]},{key:4,name:'权限提示-通知权限',desc:'点击顶部提醒左侧关闭按钮',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.afollestad.materialdialogs.MaterialDialog',matches:'@[id=\"com.qidian.QDReader:id/ivClose\"] + [text^=\"开启推送\"]',snapshotUrls:'https://i.gkd.li/i/12640242'}]},{key:5,name:'局部广告-悬浮广告',rules:[{key:1,fastQuery:true,activityIds:['com.qidian.QDReader.ui.activity.QDBookDetailActivity','com.qidian.QDReader.ui.activity.MainGroupActivity'],matches:'[id=\"com.qidian.QDReader:id/ivAdClose\"]',snapshotUrls:['https://i.gkd.li/i/12717032','https://i.gkd.li/i/13459031']}]},{key:10,name:'功能类-起点中文网登录自动确认',desc:'自动点击\"登录\"',rules:[{activityIds:'com.qidian.QDReader.ui.activity.QDBrowserActivity',matches:'[id=\"scanLogin\"]',snapshotUrls:'https://i.gkd.li/i/12903081'}]},{key:11,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{activityIds:'com.qidian.QDReader.flutter.DailyReadingMainPageActivity',matches:'View[desc=\"更多游戏\"] - ImageView[clickable=true]',snapshotUrls:'https://i.gkd.li/i/13406169'}]},{key:12,name:'功能类-福利中心看完广告-知道了',desc:'点击[知道了]',rules:[{fastQuery:true,activityIds:'.ui.activity.QDBrowserActivity',matches:'@TextView[childCount=0][text$=\"知道了\"][visibleToUser=true] <<n [id=\"com.qidian.QDReader:id/webViewContainer\"]',exampleUrls:'https://e.gkd.li/54f41a5a-1c71-4618-bdab-5335172ab7f5',snapshotUrls:['https://i.gkd.li/i/13606901','https://i.gkd.li/i/22909666','https://i.gkd.li/i/24339296']}]},{key:13,name:'全屏广告-红包弹窗',desc:'点击X',rules:[{fastQuery:true,activityIds:'com.qidian.QDReader.ui.activity.hongbao_square.NewHongBaoSquareActivity',matches:'[id=\"com.qidian.QDReader:id/rootView\"] > [id=\"com.qidian.QDReader:id/btnHongbaoClose\"]',snapshotUrls:'https://i.gkd.li/i/13918466'}]},{key:14,name:'功能类-移动网络下自动点击播放视频',rules:[{fastQuery:true,activityIds:'com.qidian.QDReader.ui.activity.QDBrowserActivity',matches:['[text^=\"当前处于移动网络\"]','@[clickable=true] >2 [text=\"播放\"]'],exampleUrls:'https://m.gkd.li/57941037/ea612e44-12a9-405f-aa03-60a19cebef57',snapshotUrls:'https://i.gkd.li/i/15857381'}]},{key:15,name:'功能类-自动签到',rules:[{key:0,fastQuery:true,activityIds:'.ui.activity.MainGroupActivity',excludeMatches:'[vid=\"tvTipNum\"][text=\"--\"][visibleToUser=true]',matches:'@[vid=\"btnCheckIn\"] >2 [text=\"签到\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22634962',excludeSnapshotUrls:['https://i.gkd.li/i/23210761','https://i.gkd.li/i/23211622']},{preKeys:[0],fastQuery:true,activityIds:'.ui.activity.QDBrowserActivity',matches:'@View[id=null][childCount=0][clickable=true] < View < View < WebView[text=\"福利中心\"] < WebView < FrameLayout < [vid=\"webViewContainer\"]',snapshotUrls:'https://i.gkd.li/i/24012947'}]}]},{id:'com.cubic.autohome',name:'汽车之家',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.cubic.autohome.MainActivity',matches:'[id=\"com.cubic.autohome:id/operate_show_exit_layout\"]',snapshotUrls:'https://i.gkd.li/i/12836324'}]},{key:2,name:'局部广告',rules:[{key:0,name:'领福利悬浮窗',fastQuery:true,activityIds:'com.cubic.autohome.MainActivity',matches:'@ImageView[visibleToUser=true] < * <2 * - [id=\"android:id/tabhost\"]',snapshotUrls:'https://i.gkd.li/i/13885414'},{key:1,name:'直播悬浮窗',activityIds:'com.cubic.autohome.MainActivity',matches:'[id=\"com.autohome.main.car:id/image_live_close\" || id=\"com.autohome.main.car:id/view_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/24221462'}]}]},{id:'com.luna.music',name:'汽水音乐',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/14232395'},{key:1,fastQuery:true,matches:'[text^=\"跳过\"][text.length<10][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15087528','https://i.gkd.li/i/15148298']}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.luna.biz.ad.AdActivity','com.luna.biz.main.main.MainActivity'],matches:'@[text=\"稍后再说\"] + [text=\"立即升级\"]',snapshotUrls:['https://i.gkd.li/i/14790279','https://i.gkd.li/i/21427972']}]},{key:2,name:'全屏广告-VIP弹窗',desc:'直接关闭所有底部半屏弹窗',fastQuery:true,activityIds:['com.luna.biz.main.main.MainActivity','com.luna.biz.ad.AdActivity'],rules:[{key:0,name:'底部半屏弹窗',action:'back',excludeMatches:'FlattenUIText[text=\"立得全天畅听\" || text=\"立即解锁 今日畅听\"][visibleToUser=true]',matches:'FlattenUIText[text=\"开会员听整月\" || text=\"购买汽水会员\" || text*=\"免费听\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/43099439-a0ab-4da0-a686-5c960df92607',snapshotUrls:['https://i.gkd.li/i/13533795','https://i.gkd.li/i/13660652','https://i.gkd.li/i/13533797','https://i.gkd.li/i/14767233','https://i.gkd.li/i/16280954','https://i.gkd.li/i/16342691','https://i.gkd.li/i/17580823','https://i.gkd.li/i/18183749'],excludeSnapshotUrls:['https://i.gkd.li/i/13613296','https://i.gkd.li/i/14237527','https://i.gkd.li/i/18242457']},{key:2,name:'全屏弹窗',matches:'@LynxFlattenUI[clickable=true] -2 FlattenUIText[text=\"立即抢购\"]',snapshotUrls:'https://i.gkd.li/i/16278152'}]},{key:8,name:'功能类-全自动看广告获取听歌时长',rules:[{key:0,fastQuery:true,actionDelay:12000,position:{left:'width * 7.45',top:'height * 0.5'},activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'@FlattenUIText[text=\"广告\"] + [text$=\"声音\"] + [text=\"反馈\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24521423','https://i.gkd.li/i/24521440']},{key:1,activityIds:'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTRewardVideoActivity',matches:'[visibleToUser=true][text=\"奖励已领取\"]',snapshotUrls:'https://i.gkd.li/i/24522627'},{preKeys:[0,1],fastQuery:true,actionDelay:500,activityIds:['com.bytedance.sdk.openadsdk.core.component.reward.activity.TTRewardVideoActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity','com.ss.android.excitingvideo.ExcitingVideoActivity'],matches:'[text=\"领取奖励\" || text^=\"再看一个\" || text=\"继续观看\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15140816','https://i.gkd.li/i/24521416','https://i.gkd.li/i/24521446','https://i.gkd.li/i/24521516']},{key:99,fastQuery:true,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'@[clickable=true][width<120 && height<120] + LinearLayout > [text=\"当前无新视频\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24522244'}]},{key:9,name:'功能类-关闭广告的声音',rules:[{fastQuery:true,activityIds:'com.ss.android.excitingvideo.ExcitingVideoActivity',matches:'[text=\"开启声音\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24522999',excludeSnapshotUrls:'https://i.gkd.li/i/24521440'}]},{key:10,name:'评价提示-评分弹窗',desc:'使用返回关闭弹窗',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,action:'back',matches:'[text=\"为汽水音乐评分\"]',exampleUrls:'https://m.gkd.li/57941037/a7e53af0-8b84-4619-b369-69b949ab2ce4',snapshotUrls:'https://i.gkd.li/i/14720841'}]},{key:11,name:'局部广告-悬浮窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.luna.biz.main.main.MainActivity',matches:'[id=\"com.luna.music:id/fl_pendant_container\"] > [id=\"com.luna.music:id/view_close\"]',exampleUrls:'https://m.gkd.li/57941037/8a427d5f-680b-4562-9cf3-90b1db82df0f',snapshotUrls:'https://i.gkd.li/i/13674376'}]},{key:12,name:'其他-关闭[更多直播]推荐',desc:'直播间出现[更多直播]时点击右上角关闭',rules:[{fastQuery:true,activityIds:'com.luna.biz.live.plugin.LunaDefaultLivePlayerActivity',matches:'@[desc=\"关闭\"][clickable=true] <n RelativeLayout + FrameLayout >4 [text=\"更多直播\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/148466b5-9769-4b79-b648-f2cf7719e3e7',snapshotUrls:'https://i.gkd.li/i/22922565'}]}]},{id:'com.job.android',name:'前程无忧51Job',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.pages.apphome.AppHomeActivity',matches:'[vid=\"ivBack\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5c1e281a-f5cc-45ff-9799-828f510c78c6',snapshotUrls:'https://i.gkd.li/i/19798235'}]}]},{id:'com.finshell.wallet',name:'钱包',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.finshell.homepage.WalletNativeActionActivity',matches:'[vid=\"ivClose\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b5a04cd0-2f5a-4161-838b-422552f1ba9e',snapshotUrls:'https://i.gkd.li/i/16451563'}]}]},{id:'com.mipay.wallet',name:'钱包',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"skip\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/670b95f6-12d0-4787-9158-98ac52eb1641',snapshotUrls:['https://i.gkd.li/i/16828031','https://i.gkd.li/i/16828053']}],order:-10},{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.xiaomi.jr.app.MiFinanceActivity',matches:'FrameLayout >2 View[childCount=2] >2 View[childCount=2] > @ImageView[clickable=true][index=0][visibleToUser=true] <<n [vid=\"flutter_container\"]',exampleUrls:'https://e.gkd.li/9d8a1bb4-40ab-4312-8f5b-ef224e18720e',snapshotUrls:'https://i.gkd.li/i/16828039'}]}]},{id:'com.vivo.wallet',name:'钱包',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.bookkeep.activity.BookKeepMainActivity',matches:'@[clickable=true] > [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13440881'}]}]},{id:'com.dw.btime',name:'亲宝宝',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dw.btime.MainHomeTabActivity',matches:'[id=\"com.dw.btime:id/iv_overlay_close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12889448'}]},{key:2,name:'局部广告-横幅广告',rules:[{fastQuery:true,activityIds:'com.dw.btime.MainHomeTabActivity',matches:'[id=\"com.dw.btime:id/old_baby_close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12889450'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.base_library.dialog.DWBaseDialog',matches:'[id=\"com.dw.btime:id/iv_upgrade_close\"]',snapshotUrls:'https://i.gkd.li/i/12911011'}]}]},{id:'com.qinlin.edoor',name:'亲邻开门',groups:[{key:1,name:'局部广告-首页顶部广告',activityIds:'com.qinlin.edoor.MainActivity',rules:[{matches:['[id=\"com.qinlin.edoor:id/reaper_ad_source_layout\"]','[id=\"com.qinlin.edoor:id/close\"]'],snapshotUrls:'https://i.gkd.li/i/12707733'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.MainActivity',matches:['[text=\"广告\" || vid=\"interact_ad_root\"]','[vid=\"iv_close\"]'],snapshotUrls:['https://i.gkd.li/i/13771774','https://i.gkd.li/i/13932707']},{key:1,activityIds:'.MainActivity',matches:'@ImageView[clickable=true] - [desc=\"立即领取\" || desc=\"开心收下\"]',snapshotUrls:['https://i.gkd.li/i/12707736','https://i.gkd.li/i/12707738']},{key:2,fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/76e82ec7-70e5-47cb-91c2-4d00f33ef8ad',snapshotUrls:'https://i.gkd.li/i/18529948'},{key:3,fastQuery:true,activityIds:'.MainActivity',matches:'@[desc=\"top_close_button\"] < ViewGroup <2 ViewGroup + ViewGroup >3 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a9dc3648-339a-4925-91dd-730346711b0e',snapshotUrls:'https://i.gkd.li/i/18532541'},{key:4,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@ViewGroup + ViewGroup > [text=\"反馈\"]',exampleUrls:['https://e.gkd.li/517cc207-1e6c-4416-bbd1-193326879b68','https://e.gkd.li/e60379ac-ee45-4f0f-bb18-5d1ffa4d9210'],snapshotUrls:['https://i.gkd.li/i/18703139','https://i.gkd.li/i/18703827']},{key:5,fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/a2685f57-ec36-44a1-9529-f10d7fb481ef',snapshotUrls:'https://i.gkd.li/i/18704056'}]},{key:3,name:'通知提示-开门成功提示',desc:'点击[好的]',rules:[{activityIds:'.MainActivity',matches:'[desc^=\"开门成功\"] > [desc=\"好 的\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d8e9be78-a9d4-48f9-a6ee-9ed384a190b3',snapshotUrls:'https://i.gkd.li/i/18530006'}]}]},{id:'com.m17qcc.mm',name:'青创网',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'miuix.appcompat.app.m',matches:'[text*=\"新版本\"] +(n) LinearLayout > TextView[text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/12642297'}]}]},{id:'com.qingdaonews.bus',name:'青岛公交查询',groups:[{key:0,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.qingdaonews.bus:id/iv_native_dislike\"]',snapshotUrls:'https://i.gkd.li/i/13467193'}]}]},{id:'com.wepie.ivy',name:'青藤之恋',groups:[{key:1,name:'评价提示-好评弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,action:'back',activityIds:'.module.start.MainActivity',matches:'[text=\"我要吐槽\"] + [text=\"五星好评\"]',snapshotUrls:'https://i.gkd.li/i/14602933'}]}]},{id:'io.sbyd.app',name:'轻松阅',groups:[{key:0,name:'全屏广告-弹窗广告',activityIds:'io.sbyd.app.ui.book.read.ReadBookActivity',rules:[{key:1,fastQuery:true,matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13274336'},{key:2,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13302326','https://i.gkd.li/i/13313576','https://i.gkd.li/i/13313624','https://i.gkd.li/i/13313576']},{key:4,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"] < View[childCount=1] + View[childCount=1][text=\"\"] +n View >(1,2) View[childCount=1] > [text$=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12925095','https://i.gkd.li/i/12925052']}]}]},{id:'zhongxinjiantou.szkingdom.android.newphone',name:'蜻蜓点金',groups:[{key:1,name:'权限提示-通知权限',desc:'点击放弃通知',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.szkingdom.android.phone.ZXJTUserMainActivity',matches:'[id=\"zhongxinjiantou.szkingdom.android.newphone:id/tv_notify_confirm_off\"][text=\"放弃通知\"]',exampleUrls:'https://m.gkd.li/57941037/642582b1-f0f1-446c-b3f4-287eac62d108',snapshotUrls:'https://i.gkd.li/i/12924466'}]}]},{id:'fm.qingting.qtradio',name:'蜻蜓FM',groups:[{key:1,name:'局部广告-播放界面的广告',fastQuery:true,rules:[{key:1,activityIds:'.QTRadioActivity',matches:'[id=\"fm.qingting.qtradio:id/view_ad_close\"]',exampleUrls:'https://e.gkd.li/bef1954c-a0c8-441e-ab77-6967089e906c',snapshotUrls:'https://i.gkd.li/i/12640438'},{key:2,activityIds:'.QTRadioActivity',matches:'@[id=\"fm.qingting.qtradio:id/iv_close\"] + RelativeLayout >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/1562b618-074d-4f10-a1ae-c62c5390fd1a',snapshotUrls:'https://i.gkd.li/i/12640981'}]}]},{id:'com.quqi.quqioffice',name:'曲奇云盘',groups:[{key:1,name:'全屏广告-私人云看图弹窗广告',desc:'在线私人云看图片自动弹出自动播放可跳过广告',rules:[{key:1,activityIds:'com.qq.e.ads.PortraitADActivity',matches:'TextView[text*=\"应用名称\"] < LinearLayout -(2,3) [childCount=1] > FrameLayout[childCount=1] >(1,2) ImageView[childCount=0][id=null]',snapshotUrls:['https://i.gkd.li/i/12854650','https://i.gkd.li/i/12854723','https://i.gkd.li/i/12854664']},{key:2,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'TextView[text$=\"s\"] + TextView[text$=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/12877535'},{key:3,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'ImageView[id=\"com.byted.pangle:id/tt_reward_full_count_down_after_close\"]',snapshotUrls:'https://i.gkd.li/i/12877540'}]}]},{id:'com.Qunar',name:'去哪儿旅行',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,ignoreGlobalGroupMatch:true,rules:[{fastQuery:true,matches:'@[text^=\"关闭\"][visibleToUser=true] - RelativeLayout > [vid=\"mery_splash_ad_resource\"]',exampleUrls:'https://e.gkd.li/e5b86f58-2938-4e00-ae5b-cefe05135582',snapshotUrls:'https://i.gkd.li/i/23180019'}],order:-10},{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mqunar.atom.attemper.pupgrade.PUpgradeActivity',matches:'[text=\"残忍拒绝\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/068a6e67-572f-4cd5-a4db-ba63d760cbd0',snapshotUrls:'https://i.gkd.li/i/23742676'}]}]},{id:'com.klcxkj.zqxy',name:'趣智校园',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,activityIds:['com.klcxkj.zqxy.ui.main.MainActivity','com.anythink.basead.ui.ATPortraitTranslucentActivity'],matches:'[id=\"com.klcxkj.zqxy:id/anythink_myoffer_btn_close_id\"]',snapshotUrls:['https://i.gkd.li/i/13195649','https://i.gkd.li/i/12781415']},{key:1,name:'腾讯广告',fastQuery:true,activityIds:'com.klcxkj.zqxy.ui.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text^=\"打开或下载\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text^=\"下载或打开\"]',snapshotUrls:['https://i.gkd.li/i/12781461','https://i.gkd.li/i/13488673','https://i.gkd.li/i/13546464','https://i.gkd.li/i/13071301','https://i.gkd.li/i/13707849']},{key:5,name:'吉欣广告',fastQuery:true,activityIds:'com.klcxkj.zqxy.ui.splash.SplashActivity',matches:'@ViewGroup[clickable=true] < ViewGroup +2 ViewGroup > [text$=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13274838'},{key:6,fastQuery:true,activityIds:'.ui.device.apartment.ble.BathingBleActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/d31ed6be-1211-4d34-855c-3f454f8f4b3f',snapshotUrls:'https://i.gkd.li/i/13274836'},{key:7,fastQuery:true,activityIds:'.ui.main.MainActivity',matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/9c8af961-db98-4ef7-ad96-eff44f908481',snapshotUrls:'https://i.gkd.li/i/18108931'}]},{key:2,name:'局部广告-横幅广告',rules:[{key:0,activityIds:'com.klcxkj.zqxy.ui.device.drink.ble.DrinkingBleActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13488870'}]}]},{id:'com.tencent.tmgp.kgame.ppcr',name:'全民泡泡超人',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.tencent.ysdkcore:id/com_tencent_ysdk_icon_h5_xx\"]',snapshotUrls:'https://i.gkd.li/i/13276317'}],order:-10}]},{id:'com.tencent.karaoke',name:'全民K歌',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'动态页面-卡片广告',fastQuery:true,activityIds:'com.tencent.karaoke.module.main.ui.MainTabActivity',matches:'@ImageView[clickable=true] - [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13334798'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:1,name:'活动弹窗',activityIds:'com.tencent.karaoke.module.splash.ui.SplashBaseActivity',matches:'ViewGroup[childCount=0] < @ViewGroup[clickable=true][childCount=1] - ViewGroup > [desc*=\"双十一\"]',snapshotUrls:'https://i.gkd.li/i/13363281'}]}]},{id:'com.jincheng.supercaculator',name:'全能计算器',groups:[{key:0,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,name:'字节广告',activityIds:['com.jincheng.supercaculator.activity.MainActivity','com.jincheng.supercaculator.activity.basic.CalculatorActivity'],matches:'@Image < View < View TextView[text = \"反馈\"]',snapshotUrls:['https://i.gkd.li/i/12859523','https://i.gkd.li/i/12859545','https://i.gkd.li/i/13670598']},{key:1,name:'腾讯广告-1',fastQuery:true,activityIds:'com.jincheng.supercaculator.activity.SplashActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13261870'},{key:2,name:'腾讯广告-2',fastQuery:true,activityIds:'com.jincheng.supercaculator.activity.basic.CalculatorActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13378847'}]}]},{id:'com.black.unique',name:'全球购骑士特权',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.black.unique.feature.home.HomeActivity',matches:'@ImageView[id=\"com.black.unique:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13499502'}]}]},{id:'com.miui.virtualsim',name:'全球上网',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mobile.businesshall.ui.common.RecommendPopupActivity',matches:'[vid=\"img_close_btn\"]',exampleUrls:'https://m.gkd.li/57941037/76a7cf39-06f1-4e1b-9bb6-fd8b1ad25e8e',snapshotUrls:'https://i.gkd.li/i/15981731'}]}]},{id:'com.cnspeedtest.globalspeed',name:'全球网测',groups:[{key:1,name:'权限提示-定位权限',desc:'点击[取消]',rules:[{fastQuery:true,activityIds:'com.ruili.android.taierspeed.main.WelcomeActivity',matches:['[text*=\"开启GPS权限\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/f6668ec9-eac9-4728-9ab1-5c76ac4b1ef5',snapshotUrls:'https://i.gkd.li/i/24012859'}]}]},{id:'com.allhistory.dls.marble',name:'全知识',groups:[{key:1,name:'权限提示-通知权限',desc:'点击暂不开启',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.pwrd.dls.marble.other.notification.NotificationDialogActivity',matches:'[vid=\"v_open\"] + [vid=\"v_not\"]',snapshotUrls:'https://i.gkd.li/i/13997956'}]},{key:2,name:'局部广告-左下角参与答题卡片',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.pwrd.dls.marble.moudle.homepage.HomePageActivity',matches:['[vid=\"iv_board\"]','[vid=\"iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/13997954'}]}]},{id:'com.lbe.security.miui',name:'权限管理服务',groups:[{key:1,name:'功能类-权限授予弹窗',desc:'自动点击\"仅在使用中允许\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.android.packageinstaller.permission.ui.GrantPermissionsActivity',matches:'[text=\"仅在使用中允许\"]',snapshotUrls:'https://i.gkd.li/i/13761264'}]},{key:2,name:'权限提示-通知权限',desc:'点击拒绝',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:['[text$=\"发送通知\"]','[text=\"拒绝\"]'],exampleUrls:'https://m.gkd.li/57941037/0487a113-5b57-402e-96ca-1f351e121d82',snapshotUrls:'https://i.gkd.li/i/14321882'}]}]},{id:'com.android.permissioncontroller',name:'权限控制器',groups:[{key:1,name:'权限提示-定位权限',desc:'点击不允许',rules:[{fastQuery:true,activityIds:'.permission.ui.GrantPermissionsActivity',matches:['[text*=\"位置信息权限\"]','Button[text=\"不允许\"][clickable=true]'],exampleUrls:'https://e.gkd.li/801303af-ac30-4d06-b2f8-cfea98aa847a',snapshotUrls:'https://i.gkd.li/i/24759204'}]}]},{id:'com.tuying.kuimg.rjm',name:'热剧猫',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.tuying.kuimg.rjm.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13166088'},{key:1,activityIds:'com.tuying.kuimg.rjm.MainActivity',matches:['[text=\"广告\"]','@ViewGroup > [text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13166086'}]}]},{id:'com.facetech.konking',name:'人民日报',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12841081'}]}]},{id:'com.peopledailychina.activity',name:'人民日报',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.peopledailychina.activity.activity.MainActivity',matches:'[vid=\"advert_iv_del\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/53c28fe8-9db9-45d8-82b3-7034aa10d2ed',snapshotUrls:'https://i.gkd.li/i/15175151'}]}]},{id:'com.lcworld.haiwainet',name:'人民日报海外版',groups:[{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.main.MainActivity',matches:'[vid=\"iv_paper_close\"]',exampleUrls:'https://e.gkd.li/021a457e-6c55-4ec6-b2f2-85b33a93c5b6',snapshotUrls:'https://i.gkd.li/i/17089256'}]}]},{id:'com.example.pptv',name:'人人视频',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[text*=\"跳过\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/13669401'},{key:1,matches:'[id=\"com.example.pptv:id/view_count_shake\"]',snapshotUrls:'https://i.gkd.li/i/13761160'}],order:-10}]},{id:'com.pmph.irenwei',name:'人卫',groups:[{key:1,name:'全屏广告-抽奖弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.pmph.main.ad.AdActivity',matches:'[id=\"com.pmph.irenwei:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13897421'}]}]},{id:'com.hihonor.servicecenter',name:'荣耀快服务',groups:[{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.hihonor.servicecardcenter.activity.LauncherActivity',matches:'[vid=\"float_cancel\"]',exampleUrls:'https://m.gkd.li/57941037/b4c18338-c330-4deb-9689-3e7f2e2f32a8',snapshotUrls:'https://i.gkd.li/i/14887872'}]}]},{id:'cn.honor.qinxuan',name:'荣耀亲选',groups:[{key:1,name:'全屏广告-首页弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.honor.qinxuan.MainActivity',matches:'[id=\"cn.honor.qinxuan:id/iv_close_dlg\"]',snapshotUrls:'https://i.gkd.li/i/13930613'}]},{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[vid=\"iv_close\"] < * > [text=\"开启消息通知\"]',snapshotUrls:'https://i.gkd.li/i/14946137'}]}]},{id:'com.hihonor.vmall',name:'荣耀商城',groups:[{key:1,name:'全屏广告-应用内弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.vmall.client.base.fragment.VmallWapActivity','com.vmall.client.splash.fragment.SplashActivity'],matches:'[id=\"com.hihonor.vmall:id/gift_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/13060881'}]},{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.vmall.client.messageCenter.fragment.MessageCenterActivity','com.vmall.client.base.fragment.VmallWapActivity'],matches:['[text=\"开启消息通知\"]','[vid=\"notification_close\" || vid=\"iv_close\"]'],snapshotUrls:['https://i.gkd.li/i/13959029','https://i.gkd.li/i/16776398']}]}]},{id:'com.hihonor.android.totemweather',name:'荣耀天气',groups:[{key:1,name:'局部广告-底部卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.WeatherHome',matches:'[vid=\"ad_cancel\" || vid=\"btn_close\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/764769ff-b571-498a-ac57-f4b1ae331056',snapshotUrls:['https://i.gkd.li/i/14193808','https://i.gkd.li/i/19659583']}]},{key:2,name:'分段广告-卡片广告',fastQuery:true,activityIds:['.WeatherHome','.secondpage.activity.SecondPageActivity'],rules:[{key:0,matches:'[vid=\"ads_tag\" || vid=\"ad_flag_close_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7f9ea2fc-bb89-4aeb-b569-9ddbbd95452b',snapshotUrls:['https://i.gkd.li/i/20116008','https://i.gkd.li/i/23259843']},{preKeys:[0],matches:'[text=\"不感兴趣\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/38517cb1-c930-40cb-8c95-a4e1ecd57323',snapshotUrls:['https://i.gkd.li/i/20116013','https://i.gkd.li/i/23253602']}]}]},{id:'com.hihonor.cloudmusic',name:'荣耀音乐',groups:[{key:1,name:'分段广告-推荐页卡片广告',desc:'点击[关闭]-点击[直接关闭]',fastQuery:true,activityIds:'com.netease.cloudmusic.activity.MainActivity',rules:[{key:0,matches:'[vid=\"tag_ad_banner\"]',snapshotUrls:'https://i.gkd.li/i/15835795'},{preKeys:[0],key:1,matches:'[text=\"直接关闭\"]',snapshotUrls:'https://i.gkd.li/i/15835857'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:'com.netease.cloudmusic.activity.MainActivity',matches:'[vid=\"dsl_dialog_root\"]',snapshotUrls:'https://i.gkd.li/i/15860430'}]}]},{id:'com.hihonor.appmarket',name:'荣耀应用市场',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"tv_operation_skip\"]',exampleUrls:'https://e.gkd.li/549d5fc1-20a2-42aa-b249-4cc8896807e6',snapshotUrls:'https://i.gkd.li/i/16406381'}],order:-10},{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.hihonor.android.launcher.unihome.UniHomeLauncher','com.hihonor.appmarket.module.main.MainActivity'],matches:'[id=\"com.hihonor.appmarket:id/iv_dialog_operation_close\"]',snapshotUrls:['https://i.gkd.li/i/13063815','https://i.gkd.li/i/13168440']}]},{key:2,name:'局部广告-悬浮窗小广告',rules:[{fastQuery:true,activityIds:'.module.main.MainActivity',matches:'[id=\"com.hihonor.appmarket:id/iv_floating_close\"]',snapshotUrls:'https://i.gkd.li/i/13063928'}]},{key:3,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'.module.main.MainActivity',matches:'TextView[text=\"接收通知\"] < LinearLayout < LinearLayout +n [id=\"android:id/buttonPanel\"] Button[text=\"否\"]',snapshotUrls:'https://i.gkd.li/i/13073319'}]},{key:4,name:'通知提示-个性化内容推荐提示',desc:'点击取消',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.module.main.MainActivity',matches:['[text*=\"个性化的内容推荐\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/12825cd1-cd11-40eb-80e3-45d93c9ad058',snapshotUrls:'https://i.gkd.li/i/21884571'}]}]},{id:'com.hihonor.health',name:'荣耀运动健康',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.hihonor.health.main.MainActivity',matches:'[id=\"com.hihonor.health:id/iv_close_filled\"]',snapshotUrls:'https://i.gkd.li/i/13759407'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.hihonor.health.main.MainActivity',matches:'[vid=\"btn_close\"][desc=\"关闭弹窗\"]',exampleUrls:'https://e.gkd.li/1ab101bd-59cb-46c0-bbb1-7a0a9dccf79a',snapshotUrls:'https://i.gkd.li/i/16454150'}]}]},{id:'com.hihonor.magichome',name:'荣耀智慧空间',groups:[{key:10,name:'局部广告-首页顶部广告',activityIds:'com.hihonor.magichome.business.MainActivity',rules:'[id=\"com.hihonor.magichome:id/item_close_image\"]',snapshotUrls:'https://i.gkd.li/i/12843930'},{key:11,name:'其他-推荐服务声明',desc:'推荐服务声明弹窗。默认点击\"取消\"按钮',activityIds:'com.hihonor.magichome.business.MainActivity',rules:'[text$=\"推荐服务声明\"] < LinearLayout < LinearLayout + LinearLayout > [id=\"com.hihonor.magichome:id/negative_btn\"]',snapshotUrls:'https://i.gkd.li/i/12843976'},{key:12,name:'更新提示',desc:'点击以后再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.business.MainActivity',matches:'TextView[text=\"立即更新\"] -2 [id=\"com.hihonor.magichome:id/negative_btn\"][text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/12916700'}]}]},{id:'com.android.packageinstaller',name:'软件包安装程序',groups:[{key:1,name:'功能类-自动安装应用',fastQuery:true,forcedTime:10000,activityIds:['.PackageInstallerActivity','.FlymePackageInstallerActivity','.PackageInterceptActivity','.NewInstallInstalling','.InstallSuccess','.oplus.InstallAppProgress','.DeleteStagedFileOnResult'],rules:[{key:0,name:'点击[继续安装]',matches:'[text=\"继续安装\"][focusable=true || parent.focusable=true || parent.parent.focusable=true]',snapshotUrls:['https://i.gkd.li/i/13206444','https://i.gkd.li/i/14046749','https://i.gkd.li/i/16550275','https://i.gkd.li/i/23621117'],excludeSnapshotUrls:'https://i.gkd.li/i/23621105'},{key:1,name:'点击[完成]',matches:'[text=\"完成\"]',snapshotUrls:['https://i.gkd.li/i/13206476','https://i.gkd.li/i/13766420','https://i.gkd.li/i/13962438','https://i.gkd.li/i/14138323','https://i.gkd.li/i/14471862','https://i.gkd.li/i/16550273']},{key:2,name:'点击[安装]',matches:'[vid=\"confirm_bottom_button_layout\"]',snapshotUrls:'https://i.gkd.li/i/14228348'},{key:4,position:{left:'width * 1.5394',top:'height * 0.5'},excludeMatches:'[text=\"继续安装\" || text=\"完成\"]',matches:'LinearLayout[childCount=1] > Button[text=\"取消\"][childCount=0]',snapshotUrls:['https://i.gkd.li/i/14969116','https://i.gkd.li/i/17158050']}]},{key:2,name:'功能类-授权本次安装',rules:[{fastQuery:true,position:{left:'width * 0.4609',top:'height * 0.75'},activityIds:'.PackageInterceptActivity',matches:'[vid=\"tv_install_guide\"][text*=\"授权本次安装\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6ad6e4c6-3cb7-41b2-a37b-bcaa3c06de34',snapshotUrls:'https://i.gkd.li/i/24465121'}]},{key:3,name:'功能类-自动继续安装高危风险应用',rules:[{fastQuery:true,activityIds:'.PackageInterceptActivity',matches:['[text=\"该应用存在高危风险\"][visibleToUser=true]','@[clickable=true] >2 [text=\"仍要继续\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/2961e749-6aac-4f74-b7f7-268ecc0e14f4',snapshotUrls:'https://i.gkd.li/i/24540505'}]},{key:4,name:'功能类-勾选[已了解此应用未经检测，可能存在风险]',fastQuery:true,activityIds:['.PackageInterceptActivity','.PackageInstallerActivity'],rules:[{key:0,matches:'[vid=\"checkbox\" || vid=\"deleted_file_state_cb\"][checked=false]',snapshotUrls:['https://i.gkd.li/i/14595443','https://i.gkd.li/i/22870985']},{preKeys:[0],matches:'@LinearLayout[clickable=true][id=null] > [text=\"继续安装\"]',snapshotUrls:'https://i.gkd.li/i/22870985'}]}]},{id:'com.google.android.packageinstaller',name:'软件包安装程序',groups:[{key:1,name:'功能类-自动安装/更新软件',fastQuery:true,rules:[{key:0,matches:'[text=\"安装\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14046939'},{key:2,matches:'[text=\"更新\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/14047571','https://i.gkd.li/i/14047854']},{key:3,matches:'[text=\"完成\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/14047514','https://i.gkd.li/i/14047969','https://i.gkd.li/i/16435556']},{key:4,position:{left:'width * 1.4975',top:'height * 0.5'},excludeMatches:['[text=\"更新\"][clickable=true]','[text=\"安装\"][clickable=true]'],matches:['[text=\"要更新此应用吗？\" || text=\"要安装此应用吗？\"]','[text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/16406316','https://i.gkd.li/i/16435642']}]},{key:2,name:'功能类-安全警告弹窗',desc:'点击[设置]',rules:[{fastQuery:true,activityIds:'com.android.packageinstaller.PackageInstallerActivity',matches:['[text^=\"出于安全考虑\"]','[text=\"设置\"]'],exampleUrls:'https://e.gkd.li/e501f0cf-c531-40eb-a747-31377d35c971',snapshotUrls:'https://i.gkd.li/i/16406317'}]}]},{id:'com.samsung.android.packageinstaller',name:'软件包安装程序',groups:[{key:2,name:'功能类-跳过安全使用协议',desc:'自动点击略过并关闭反恶意软件协议',fastQuery:true,rules:[{key:0,matches:['[text^=\"是否打开反恶意软件\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13233686'},{key:1,matches:'[text=\"略过\"]',snapshotUrls:'https://i.gkd.li/i/13255641'},{key:2,matches:['[text^=\"打开应用程序保护?\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13650528'}]}]},{id:'com.lucky.luckyclient',name:'瑞幸咖啡',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.luckin.client.main.FirstActivity',matches:'@ImageView[id=\"com.lucky.luckyclient:id/dismiss_btn\"] - LinearLayout > ImageView[id=\"com.lucky.luckyclient:id/update_btn\"]',snapshotUrls:'https://i.gkd.li/i/12846499'}]},{key:2,name:'全屏广告-超值换购弹窗',desc:'关闭超值换购弹窗',rules:[{fastQuery:true,activityIds:'com.lucky.luckyclient.preview2.OrderPreviewActivity2',matches:'[id=\"com.lucky.luckyclient:id/close_iv\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12922834'}]},{key:3,name:'全屏广告-优惠卷领取提示',desc:'按下返回键关闭优惠卷领取提示',rules:[{activityIds:'com.luckin.client.main.FirstActivity',action:'back',matches:'[id=\"com.lucky.luckyclient:id/webcontent\"]',snapshotUrls:'https://i.gkd.li/i/13164114'}]}]},{id:'com.jv.samsungeshop',name:'三星商城',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[desc=\"跳过\"][desc.length<10][visibleToUser=true]',exampleUrls:'https://e.gkd.li/65cbe48e-843e-4dba-a53b-5f6598a2b409',snapshotUrls:'https://i.gkd.li/i/23288756'}],order:-10}]},{id:'com.samsung.android.app.sreminder',name:'三星生活助手',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.popupconfig.PopupConfigActivity',matches:'[vid=\"cancel_iv\"]',exampleUrls:'https://e.gkd.li/428ddc56-fff5-401d-a08e-2fcfc4bb4510',snapshotUrls:'https://i.gkd.li/i/17611025'}]}]},{id:'com.mci.smagazine',name:'三星阅读',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/6654a799-c853-4221-b058-8278949574cc',snapshotUrls:'https://i.gkd.li/i/14573324'}],order:-10}]},{id:'com.intsig.camscanner',name:'扫描全能王',groups:[{key:1,name:'局部广告-主页面上方广告',activityIds:'com.intsig.camscanner.mainmenu.mainactivity.MainActivity',rules:'[id=\"com.intsig.camscanner:id/card_ad_tag\"] + [id=\"com.intsig.camscanner:id/card_close\"]',exampleUrls:'https://e.gkd.li/772a24be-ca12-459f-8abf-e9573cde3f56',snapshotUrls:'https://i.gkd.li/i/12668813'},{key:2,name:'全屏广告-开通会员',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'[vid=\"iv_cancel\"]',fastQuery:true,exampleUrls:'https://e.gkd.li/5f628895-e214-4a0b-8344-14f3d8c20807',snapshotUrls:'https://i.gkd.li/i/16761285'},{key:1,activityIds:'.guide.CancelAdShowCnGuidePurchaseActivity',matches:'[vid=\"iv_drop_cnl_close\"]',fastQuery:true,exampleUrls:'https://e.gkd.li/e9a6775a-be51-4aca-b3cd-0b496efe2f0c',snapshotUrls:'https://i.gkd.li/i/17002087'}]},{key:3,name:'其他-关闭[发现新截图]提示',rules:[{fastQuery:true,activityIds:'.mainmenu.mainactivity.MainActivity',matches:'RelativeLayout[vid=\"rl_screenshot\"] + ImageView[vid=\"iv_esc\"]',exampleUrls:'https://e.gkd.li/c66080aa-1758-4a69-9752-aa1373d7f2b5',snapshotUrls:'https://i.gkd.li/i/16975714'}]}]},{id:'com.shark.jizhang',name:'鲨鱼记账',groups:[{key:0,name:'局部广告-悬浮广告',rules:[{activityIds:'.module.main.MainActivity',matches:'[id=\"com.shark.jizhang:id/float_btn\"] >2 [id=\"com.shark.jizhang:id/close_view\"]',exampleUrls:'https://e.gkd.li/b64da622-2632-4140-930b-89d0f8cbdee1',snapshotUrls:'https://i.gkd.li/i/12518517'}]},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.module.main.MainActivity',matches:'[id=\"com.shark.jizhang:id/sdv_image\"] + [id=\"com.shark.jizhang:id/close_view\"]',exampleUrls:'https://e.gkd.li/1cad4c8f-fdb0-4608-8398-2c22d81d435d',snapshotUrls:'https://i.gkd.li/i/12518500'}]}]},{id:'cn.samsclub.app',name:'山姆会员商店',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'@ImageView[clickable=true] <2 [id=\"cn.samsclub.app:id/advertising_container\"]',snapshotUrls:'https://i.gkd.li/i/13609106'},{key:1,matches:'@ImageView[vid=\"close_view\"]',snapshotUrls:'https://i.gkd.li/i/15879369'}],order:-10},{key:1,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.samsclub.app.ui.MainActivity',matches:'[id=\"cn.samsclub.app:id/tips_close\"]',snapshotUrls:'https://i.gkd.li/i/13609113'}]},{key:2,name:'局部广告-关闭「您有一张亲友卡待赠送」通知条',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.samsclub.app.ui.MainActivity',matches:'[id=\"cn.samsclub.app:id/fragment_home_window_delete_iv\"]',snapshotUrls:'https://i.gkd.li/i/13609113'}]}]},{id:'com.huachenjie.shandong_school',name:'闪动校园',groups:[{key:1,name:'全屏广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.zj.zjdsp.ad.AdActivity',matches:'@ImageView[clickable=true][width<80 && height<80] - [text=\"反馈\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/39f264fa-ea75-4259-b8ed-672e7ec0974d',snapshotUrls:'https://i.gkd.li/i/24258941'},{key:1,fastQuery:true,activityIds:'.home.HomeActivity',matches:'@[id=\"com.zj.zk.wm.allmodules:id/wm_pop_pic_close\"] +2 LinearLayout > [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/328ebf29-ec1e-469a-84b0-c6b255a74b48',snapshotUrls:'https://i.gkd.li/i/24258935'}]}]},{id:'com.sh.gj',name:'上海公交',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['com.sh.gj.MainActivity','com.sh.gj.activity.LineDetailActivity'],matches:'ImageView[visibleToUser=true] - FrameLayout[childCount=1] > @ImageView[visibleToUser=true] <<n [vid=\"bannerContainer\"]',exampleUrls:'https://m.gkd.li/57941037/36771be2-e3fd-498c-9adb-458e9f487b9b',snapshotUrls:['https://i.gkd.li/i/14883102','https://i.gkd.li/i/14883152']}]},{key:2,name:'功能类-退出软件时的确认弹窗',desc:'点击[确认退出]',rules:[{fastQuery:true,activityIds:'com.sh.gj.MainActivity',matches:'[text=\"确认退出\"]',exampleUrls:'https://m.gkd.li/57941037/38c20d82-947e-4e46-aba8-80e1a773552b',snapshotUrls:'https://i.gkd.li/i/14883160'}]}]},{id:'com.svw.sc.mos',name:'上汽大众',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.main.ui.home.ui.AppStartDialogActivity',matches:'[vid=\"iv_appstart_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0acf720d-1752-449f-bbe6-357896f1bb2e',snapshotUrls:'https://i.gkd.li/i/17528776'},{key:1,fastQuery:true,activityIds:'.main.ui.mine.ui.MedalDialogActivity',matches:'[vid=\"imv_share_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/01611ed2-11f7-4ffe-93d7-f07878196ada',snapshotUrls:'https://i.gkd.li/i/18399174'}]},{key:2,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.main.ui.MainActivity',matches:'[vid=\"clyt_floating_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fbbc311e-cfe1-468a-88c1-20633622a34e',snapshotUrls:'https://i.gkd.li/i/17528781'}]},{key:3,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.main.ui.MainActivity',matches:'[vid=\"close_contain\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2d9042c4-0dac-47d5-9fc4-92a91da393b5',snapshotUrls:'https://i.gkd.li/i/17709772'}]}]},{id:'com.shaoniandream',name:'少年梦阅读',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[id=\"com.shaoniandream:id/countdown\"]',exampleUrls:'https://e.gkd.li/080e7f84-c8ac-48b3-ba82-c1dbb795f4f6',snapshotUrls:'https://i.gkd.li/i/13236791'}],order:-10}]},{id:'com.liuzh.deviceinfo',name:'设备信息',groups:[{key:1,name:'分段广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.liuzh.deviceinfo.MainActivity',matches:'FrameLayout[childCount=3 || childCount=4] > ImageView[text=null] +(2,3) @FrameLayout[childCount=1] > ImageView[childCount=0] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/250d3229-a933-410b-8a4a-daccb366558c',snapshotUrls:['https://i.gkd.li/i/16322794','https://i.gkd.li/i/16322793']},{preKeys:[0],key:1,activityIds:'com.qq.e.ads.ADActivity',matches:'FrameLayout[childCount=3] > TextView[text!=null] + ImageView[clickable=true][text=null][childCount=0]',exampleUrls:'https://e.gkd.li/ce0348d0-f864-4e52-b235-2e83ec7c20ac',snapshotUrls:'https://i.gkd.li/i/16322792'}]}]},{id:'com.bz.yilianlife.sd',name:'深(新)度搜索',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,name:'快手广告',fastQuery:true,activityIds:'com.deep.search.MainActivity',matches:['[text=\"广告\"]','@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]'],snapshotUrls:'https://i.gkd.li/i/13766176'},{key:1,fastQuery:true,activityIds:'com.deep.search.SearchActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/1f7e5a9f-e1a1-4e30-9d89-6d18d3717c80',snapshotUrls:'https://i.gkd.li/i/18095241'},{key:2,activityIds:'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',matches:'[id=\"ad_area\"] >2 [id=\"close_btn\"]',exampleUrls:'https://e.gkd.li/eee962a4-5a67-4bc7-bda2-8c1e3fbe04fe',snapshotUrls:'https://i.gkd.li/i/18095172'},{key:3,fastQuery:true,activityIds:'com.deep.search.SearchActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/b752c0a3-8108-4107-bc29-29d75fb88562',snapshotUrls:'https://i.gkd.li/i/18146842'}]}]},{id:'com.smzdm.client.android',name:'什么值得买',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.smzdm.client.android.app.HomeActivity',matches:'[id=\"com.smzdm.client.android:id/dialog_home_close\"]',snapshotUrls:'https://i.gkd.li/i/12695751'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.HomeActivity',matches:'[id=\"com.smzdm.client.android:id/tv_version\"] +2 [id=\"com.smzdm.client.android:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13198016'}]},{key:10,name:'权限提示-请求读取剪贴板权限弹窗',desc:'点击暂不允许',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.smzdm.client.android.app.HomeActivity',matches:'@[text=\"暂不允许\"] + [text=\"允许\"]',snapshotUrls:'https://i.gkd.li/i/13198020'}]},{key:3,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.module.haojia.detail.HaojiaDetailActivity','.module.community.module.bask.BaskDetailActivity','.app.HomeActivity'],matches:['TextView[text^=\"开启推送通知\"]','[vid=\"iv_close\" || id=\"com.smzdm.client.android:id/ib_close\"][visibleToUser=true]'],exampleUrls:['https://e.gkd.li/2e979f31-7498-497f-a4ed-b82b884e2d8d','https://e.gkd.li/a52462c1-e3bf-45ad-8639-6fa764f2135d'],snapshotUrls:['https://i.gkd.li/i/13438810','https://i.gkd.li/i/13626746','https://i.gkd.li/i/18150286']}]}]},{id:'com.huawei.lives',name:'生活服务',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f693fb2b-92a6-4aa1-8b0a-9bc5d66c037e',snapshotUrls:'https://i.gkd.li/i/20788828'}],order:-10},{key:2,name:'权限提示-通知权限',desc:'点击[取消]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ui.MainActivity',matches:['[text*=\"消息通知\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/756362f5-7d43-4993-8ed9-962615a5a278',snapshotUrls:'https://i.gkd.li/i/20903425'}]},{key:3,name:'权限提示-信息共享权限',desc:'点击[取消]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ui.MainActivity',matches:['[text^=\"开启服务号三方商家服务推荐向您提供更感兴趣的内容\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/1fc31176-b989-4041-9b1d-759ee737133f',snapshotUrls:'https://i.gkd.li/i/20903428'}]}]},{id:'com.fan.app',name:'十六番旅行',groups:[{key:1,name:'分段广告-卡片广告',fastQuery:true,activityIds:'com.mvvm.view.LazyMapStrategyActivity_TengXun',rules:[{key:0,matches:'@View[clickable=true][childCount=0] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13258021'},{preKeys:[0],key:1,matches:'@LinearLayout > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13258015'}]},{key:2,name:'权限提示-通知权限',desc:'点击[以后再说]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.mvc.activity.HomepageActivity2',matches:'[id=\"com.fan.app:id/tv_nj_later\"]',snapshotUrls:'https://i.gkd.li/i/13601734'}]}]},{id:'chuxin.shimo.shimowendang',name:'石墨文档',groups:[{key:1,name:'局部广告-首页顶部横幅广告',rules:[{fastQuery:true,activityIds:'chuxin.shimo.shimowendang.MainActivity',matches:'@[desc=\"banner-desktop-announcement-close\"][visibleToUser=true] - ViewGroup > [text*=\"免费试用企业版\"]',snapshotUrls:'https://i.gkd.li/i/13627960'}]}]},{id:'com.hupu.shihuo',name:'识货',groups:[{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[text=\"去开启\"] + [id=\"com.hupu.shihuo:id/ivClose\"]',snapshotUrls:'https://i.gkd.li/i/13704887'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{activityIds:'com.shizhuang.duapp.modules.rn.mini.MiniReactActivity$MiniUITranslucentReactActivity',matches:'[id=\"com.hupu.shihuo:id/fragment_container\"] >11 @ViewGroup[clickable=true] > ImageView',snapshotUrls:'https://i.gkd.li/i/13115664'}]},{key:4,name:'更新提示',desc:'点击[以后再说]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.shizhi.shihuoapp.module.main.ui.main.MainActivity',matches:'[text=\"发现新版本\"] +2 ViewGroup > [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/14052208'}]}]},{id:'com.practical.master.toolsme',name:'实用大师',groups:[{key:6,name:'全屏广告-弹窗广告',rules:[{name:'字节穿山甲SDK',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'Image[width<60][height<60] < @View <n View [text=\"反馈\"]',snapshotUrls:['https://i.gkd.li/i/13581740','https://i.gkd.li/i/13582110']}]}]},{id:'com.hj119.sygjx',name:'实用工具箱',groups:[{key:2,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13226595'}]}]},{id:'com.sqsp.movie',name:'视趣',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -(2,4) @View[visibleToUser=true][childCount=1] > Image[text=\"\"]',exampleUrls:'https://m.gkd.li/57941037/640c42bf-5279-4ab5-a3bc-e264a99af2ac',snapshotUrls:['https://i.gkd.li/i/15342445','https://i.gkd.li/i/15374240']}]}]},{id:'com.zbx.ct.tvzhibo',name:'手机电视高清直播',groups:[{key:3,name:'全屏广告-弹窗广告',rules:[{key:0,name:'字节SDK',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text.length=0] < View -n [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13739951'},{key:1,name:'腾讯SDK',fastQuery:true,activityIds:'com.tvmain.mvp.view.activity.TvMainActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13766516'}]},{key:4,name:'局部广告-浮窗广告',desc:'会出现在更多页面、播放页面',fastQuery:true,rules:[{activityIds:['com.tvmain.mvp.view.activity.TvMainActivity','com.tvmain.mvp.view.activity.LivePlayerActivity'],matches:'[id=\"com.zbx.ct.tvzhibo:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/13740079','https://i.gkd.li/i/13740126']}]},{key:5,name:'全屏广告-播放页面弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{activityIds:'com.tvmain.mvp.view.activity.VodPlayerActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13739932'}]}]},{id:'com.tmall.wireless',name:'手机天猫',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.splash.TMSplashActivity','.maintab.module.TMMainTabActivity','.webview.TMCommonWebViewActivity','.themis.container.TMThemisActivity'],matches:'[id=\"com.tmall.wireless:id/update_button_cancel\"]',snapshotUrls:['https://i.gkd.li/i/13162603','https://i.gkd.li/i/13258201','https://i.gkd.li/i/13399536','https://i.gkd.li/i/19881137']}]},{key:2,name:'全屏广告-弹窗广告',rules:[{activityIds:['com.tmall.wireless.maintab.module.TMMainTabActivity','com.tmall.wireless.turboweb.container.TurboWebViewActivity','com.tmall.wireless.webview.TMCommonWebViewActivity'],matches:'Image[id=null][clickable=false] < View + Image[id=null][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13222394','https://i.gkd.li/i/13222500','https://i.gkd.li/i/13222510']}]},{key:3,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.messagebox.activity.TMMsgboxMainActivity',matches:'View[text=\"开启系统通知\"] - View[clickable=true]',snapshotUrls:'https://i.gkd.li/i/13258215'}]}]},{id:'com.cnki.client',name:'手机知网',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.core.tramp.SplashActivity',matches:'[id=\"com.cnki.client:id/update_undo\"]',snapshotUrls:'https://i.gkd.li/i/12854857'}]}]},{id:'com.zivn.cloudbrush3',name:'书法字典大全',groups:[{key:3,name:'分段广告-信息流广告',fastQuery:true,activityIds:'com.zivn.cloudbrush3.app.HomeActivity',rules:[{key:0,name:'点击关闭',matches:'@View[clickable=true] < FrameLayout  -2 FrameLayout [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13425305'},{preKeys:[0],name:'点击[不感兴趣]',matches:'@LinearLayout > [id=\"com.byted.pangle.m:id/tt_item_tv\"][text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13425306'}]}]},{id:'com.shuqi.controller',name:'书旗小说',groups:[{key:0,name:'局部广告',rules:[{key:0,fastQuery:true,activityIds:'com.shuqi.home.MainActivity',anyMatches:['[vid=\"promotion_close\"][visibleToUser=true]','[visibleToUser=true][vid=\"promotion_close\"]'],exampleUrls:'https://e.gkd.li/a634cd5a-7b84-44ad-b65b-99f5e8769eeb',snapshotUrls:['https://i.gkd.li/i/23831955','https://i.gkd.li/i/24859977']}]},{key:1,name:'全屏广告',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.shuqi.home.MainActivity',matches:'[vid=\"bottomCloseImg\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/9cfc90dc-9afe-45ff-8ee2-f8e173af9bd9',snapshotUrls:'https://i.gkd.li/i/23831956'}]}]},{id:'com.wedobest.shudu',name:'数独',groups:[{key:1,name:'局部广告',desc:'x掉',rules:[{fastQuery:true,activityIds:'.GameAct',matches:'@Button[clickable=true] +2 [text=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24967577'}]}]},{id:'cn.gov.pbc.dcep',name:'数字人民币',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.activity.MainActivity',matches:'[vid=\"upgrade_dialog_cancel\"][!(text=\"退出应用\")]',snapshotUrls:'https://i.gkd.li/i/13840408',excludeSnapshotUrls:'https://i.gkd.li/i/17607391'}]}]},{id:'com.oneshareclap.malaysian',name:'水果派',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text=\"关闭广告\"]',snapshotUrls:'https://i.gkd.li/i/14275367'}],order:-10}]},{id:'com.ruYUVE.bgGRHf',name:'水果派',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',forcedTime:10000,matches:'[desc=\"关闭广告\"]',snapshotUrls:'https://i.gkd.li/i/14667107'}],order:-10}]},{id:'com.simplesecurity.english',name:'水果派',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matchDelay:3000,matches:'[text=\"关闭广告\"]',exampleUrls:'https://e.gkd.li/8718ddc4-8775-482e-a259-bc43c7171fd8',snapshotUrls:'https://i.gkd.li/i/13447714'}],order:-10}]},{id:'com.sf.activity',name:'顺丰速运',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.MainActivity',rules:[{key:0,matches:'@[text=\"取消\"] < ViewGroup - ScrollView >(2) [text*=\"新版本\"]',snapshotUrls:'https://i.gkd.li/i/12642445'},{key:1,fastQuery:true,matches:'@Button[desc=\"取消\"] - ViewGroup >3 [visibleToUser=true][text=\"立即升级\"] <<n [id=\"com.sf.activity:id/rnRootLayout\"]',snapshotUrls:'https://i.gkd.li/i/13291144'}]},{key:2,name:'其他-专属月报弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.sf.activity.MainActivity',matches:'[id=\"MonthReportDialogCloseBtn\"] > ImageView',exampleUrls:'https://m.gkd.li/57941037/83023ed5-f143-4355-9fff-e078011dfa4a',snapshotUrls:'https://i.gkd.li/i/12642441'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.sf.activity.MainActivity',matches:'@Button[id=\"BmsAdDialogViewCloseButton\"] <2 ViewGroup < ViewGroup <2 ViewGroup < ViewGroup <2 ViewGroup < ViewGroup < FrameLayout < [vid=\"rnRootLayout\"]',exampleUrls:'https://e.gkd.li/3be50f7b-5696-47c9-95cc-ef46f8531967',snapshotUrls:['https://i.gkd.li/i/14502128','https://i.gkd.li/i/17869485']}]}]},{id:'com.longshine.nanwang.electric.charge',name:'顺易充',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.android.app.station.NewMainAct',matches:'[id=\"com.longshine.nanwang.electric.charge:id/bodyFL\"] + [id=\"com.longshine.nanwang.electric.charge:id/ivClose\"]',snapshotUrls:'https://i.gkd.li/i/12700011'}]}]},{id:'com.bw30.zsch',name:'四川航空',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.bw.zsch.MainActivityTab',matches:'[id=\"com.bw30.zsch:id/tv_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13068699'}]}]},{id:'sogou.mobile.explorer',name:'搜狗浏览器极速版',groups:[{key:1,name:'分段广告-小说页面广告',activityIds:'com.tencent.mtt.MainActivity',rules:[{key:0,excludeMatches:'[desc=\"关闭此广告\"][visibleToUser=true]',matches:'@ViewGroup[clickable=true] >2 [desc=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5c2eb8d5-f53a-4b8e-81e2-65728cf4e924',snapshotUrls:'https://i.gkd.li/i/21556785'},{preKeys:[0],matches:'@ViewGroup[clickable=true] > [desc=\"关闭此广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/63c0e510-c2eb-4cca-b3f4-81bfe709972c',snapshotUrls:'https://i.gkd.li/i/21556776'}]}]},{id:'com.sohu.inputmethod.sogou',name:'搜狗输入法',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'@[clickable=true] > [text=\"跳过\"][text.length<10][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d310d2a0-4795-421d-82da-f3855fb7288b',snapshotUrls:'https://i.gkd.li/i/20138053'}],order:-10}]},{id:'com.sohu.sohuvideo',name:'搜狐视频',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.homepage.MainActivity',matches:'@[id=\"com.sohu.sohuvideo:id/ivClose\"] + LinearLayout [text=\"新版本上线啦\"]',snapshotUrls:'https://i.gkd.li/i/13435504'}]}]},{id:'com.android.quicksearchbox',name:'搜索',groups:[{key:1,name:'局部广告-卡片广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.SearchActivityTransparent',matches:'[vid=\"ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13897834'}]}]},{id:'com.example.administrator.searchpicturetool',name:'搜图神器',groups:[{key:1,name:'更新提示',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[text=\"取消\"] + [text=\"立即升级\"]',snapshotUrls:'https://i.gkd.li/i/13989147'}]}]},{id:'com.sodalife.sodax',name:'苏打校园',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:1,name:'字节广告',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image < View +3 View > View > TextView[text$=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13400643'},{key:10,name:'双十一广告',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.sodalife.sodax.libraries.ads.gromore.GroMoreSplashActivity',matches:'ViewGroup[childCount=2] > ViewGroup + ViewGroup[clickable=true][childCount=1]',snapshotUrls:'https://i.gkd.li/i/13400653'}]}]},{id:'com.sobo.app',name:'素博影院',groups:[{key:1,name:'全屏广告-注册邀请码弹窗',desc:'点击X',rules:[{fastQuery:true,activityIds:'com.sobo.app.MainActivity',matches:'@ImageView[index=3] <4 View[childCount=4] <<n [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/dabbfdcb-77fb-4298-aa63-899cbdbf1ceb',snapshotUrls:'https://i.gkd.li/i/14133497'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.sobo.app.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\" || text=\"打开快应用\"]',exampleUrls:'https://m.gkd.li/57941037/3ed9ad25-083f-4d69-b944-360a6bc2233f',snapshotUrls:'https://i.gkd.li/i/14133546'}]}]},{id:'com.jiutian.jiutianapp.sss',name:'速搜视频',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://m.gkd.li/57941037/93c98c6f-56f9-4c57-a8b4-ff8a74900c1e',snapshotUrls:'https://i.gkd.li/i/14318888'}]}]},{id:'com.duoduo.cimoc.su',name:'速映影院',groups:[{key:1,name:'全屏广告-首页弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.duoduo.cimoc.su.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13999281'}]},{key:2,name:'局部广告-\"我的\"页面卡片广告',desc:'点击X',rules:[{fastQuery:true,activityIds:'com.duoduo.cimoc.su.MainActivity',matches:'@TextView[clickable=true] <2 View[childCount=2] -2 [visibleToUser=true][text=\"广告\"] <<n [vid=\"ksad_container\"]',snapshotUrls:'https://i.gkd.li/i/13999283'}]},{key:3,name:'局部广告-卡片广告',desc:'关闭视频播放页、搜索页广告',rules:[{fastQuery:true,activityIds:'com.duoduo.cimoc.su.MainActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13999284','https://i.gkd.li/i/13999376']}]}]},{id:'com.jim.qrcode',name:'随便扫',groups:[{key:0,name:'局部广告-顶部卡片广告',desc:'点击卡片右上角关闭按钮',activityIds:['com.jim.qrcode.MainActivity','com.miui.home.launcher.Launcher'],rules:'TextView[text.length>0] < FrameLayout + FrameLayout > ImageView',snapshotUrls:['https://i.gkd.li/i/12606861','https://i.gkd.li/i/12606862']}]},{id:'com.wenhua.bamboo',name:'随身行',groups:[{key:1,name:'权限提示-通知权限',desc:'点击稍后再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.screen.activity.MarketOptionActivity',matches:'@Button[text=\"稍后再说\"] +2 Button[text=\"马上开启\"]',snapshotUrls:'https://i.gkd.li/i/13407555'}]}]},{id:'com.tima.carnet.m.main',name:'钛马星',groups:[{key:2,name:'全屏广告-每日弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['com.tima.carnet.m.main.lib.common.dialog.TimaLoadingDialog','com.tima.carnet.m.main.app.main.NoticeActivity','com.tima.carnet.m.main.app.main.MainActivity','com.tima.carnet.m.main.LaunchActivity'],rules:[{key:1,matches:'[text=\"今天内不显示\"][checked=false]',exampleUrls:'https://e.gkd.li/66af6710-ec2e-472b-a589-cac40ac6ea6d',snapshotUrls:['https://i.gkd.li/i/12654432','https://i.gkd.li/i/13507746','https://i.gkd.li/i/13508074','https://i.gkd.li/i/13508041']},{preKeys:[1],key:2,matches:'@ImageButton[clickable=true] - [text=\"今天内不显示\"]',exampleUrls:'https://e.gkd.li/66af6710-ec2e-472b-a589-cac40ac6ea6d',snapshotUrls:['https://i.gkd.li/i/12654432','https://i.gkd.li/i/13507746','https://i.gkd.li/i/13508074','https://i.gkd.li/i/13508041']}]},{key:3,name:'分段广告-设备界面顶部广告',activityIds:'com.tima.carnet.m.main.app.main.MainActivity',rules:[{key:1,matches:'@Image[childCount=0][visibleToUser=true] < View[childCount=1] + View >2 [visibleToUser=true][text=\"广告\"] <<n [id=\"com.tima.carnet.m.main:id/fl_ad_banner\"]',snapshotUrls:['https://i.gkd.li/i/13508030','https://i.gkd.li/i/13508115']},{key:3,preKeys:[1],matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13508102'},{key:4,preKeys:[1],action:'back',matches:'ListView[id=\"com.byted.pangle:id/tt_filer_words_lv\"][childCount=0]',snapshotUrls:'https://i.gkd.li/i/13508072'}]}]},{id:'com.viva.todo',name:'泰剧兔',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭/跳过',rules:[{key:0,activityIds:'com.maoyun.guoguo.MainActivity',matches:'[text=\"反馈\"] + View[childCount=2] > [text$=\"跳过\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/e4490664-3a73-473f-9f4e-79da3cb53a68',snapshotUrls:'https://i.gkd.li/i/14370321'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -4 View[index=0][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/7802b75c-f75a-4375-9f10-26b822ccc4f1',snapshotUrls:'https://i.gkd.li/i/14370332'},{key:2,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] < View + View > [text$=\"跳过\"]',exampleUrls:'https://m.gkd.li/57941037/541565b5-6f3e-412d-ad1c-731bab1ee2e8',snapshotUrls:'https://i.gkd.li/i/14406445'}]}]},{id:'com.p1.mobile.putong',name:'探探',groups:[{key:2,name:'更新提示',desc:'点击[取消]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.core.newui.main.NewMainAct',matches:'@[vid=\"buttonDefaultNeutral\"][clickable=true] > [text=\"取消\"]',exampleUrls:'https://m.gkd.li/57941037/2326365c-b31e-429a-9357-765d1c58da4c',snapshotUrls:'https://i.gkd.li/i/14445054'}]},{key:3,name:'权限提示-通知权限',desc:'点击[暂不设置]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.core.ui.seepage.likers.FakeLikersAct',matches:'[text=\"打开通知\"] + [text=\"暂不设置\"]',exampleUrls:'https://m.gkd.li/57941037/137e9907-9767-4acf-b803-034182346ef3',snapshotUrls:'https://i.gkd.li/i/14445055'}]}]},{id:'com.bokecc.dance',name:'糖豆',groups:[{key:1,name:'更新提示',desc:'点击\"以后再说\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MainActivity',matches:'[text=\"以后再说\"]',exampleUrls:'https://m.gkd.li/57941037/9156698c-76bb-4921-a39d-96a20c45260b',snapshotUrls:'https://i.gkd.li/i/14071977'}]},{key:2,name:'全屏广告-视频播放前的广告',desc:'5秒后点击关闭广告',rules:[{fastQuery:true,activityIds:'com.bokecc.dance.player.DancePlayActivity',matches:'[text=\"关闭广告\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/f70ca3e3-762c-47ba-aed8-c9e8d5955b7e',snapshotUrls:'https://i.gkd.li/i/14318204'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.bokecc.dance.activity.MainActivity',matches:'[vid=\"iv_bottom\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/e866b196-04f3-454a-9eb3-a766fed952ba',snapshotUrls:'https://i.gkd.li/i/14318249'},{key:1,fastQuery:true,activityIds:'com.bokecc.dance.player.DancePlayActivity',matches:'[vid=\"iv_cancel\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/45eb8c79-f683-4fcd-a2c4-0c9d1ff9d998',snapshotUrls:'https://i.gkd.li/i/14318261'},{key:2,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',exampleUrls:'https://e.gkd.li/d3e73052-1459-4b3b-baf2-a3620226985f',snapshotUrls:['https://i.gkd.li/i/18627429','https://i.gkd.li/i/18627432']}]},{key:4,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.activity.MainActivity',matches:['[text=\"广告\"]','[vid=\"iv_close\"]'],exampleUrls:'https://e.gkd.li/717ad9b7-dce7-4284-9360-4f9923ebacd7',snapshotUrls:'https://i.gkd.li/i/18627427'}]}]},{id:'com.flutter3.ctangxin.vf0egg',name:'糖心Vlog',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionCd:100,resetMatch:'app',activityIds:'com.example.flutter3_frame.MainActivity',rules:[{action:'back',matches:'FrameLayout > View > View > View[index=0] > View > ImageView[childCount=1] + View[clickable=true && desc=null]',snapshotUrls:'https://i.gkd.li/i/12836891'}]},{key:2,name:'全屏广告-公告弹窗',matchTime:10000,resetMatch:'app',activityIds:'com.example.flutter3_frame.MainActivity',rules:[{action:'back',matches:'[desc=\"公告\"] +2 [desc=\"取消\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12836854'}]}]},{id:'com.taobao.taobao',name:'淘宝',groups:[{key:-1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@[vid*=\"close\"] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/17576743','https://i.gkd.li/i/17578451']}],order:-10},{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:['com.taobao.tao.welcome.Welcome','com.taobao.tao.TBMainActivity','com.taobao.android.tbabilitykit.pop.StdPopContainerActivity','com.taobao.android.detail.wrapper.activity.DetailActivity'],matches:'@[desc=\"关闭按钮\"] - [vid=\"poplayer_native_state_id\"]',snapshotUrls:['https://i.gkd.li/i/12648734','https://i.gkd.li/i/12648746','https://i.gkd.li/i/14060521','https://i.gkd.li/i/14905372']},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.taobao.tao.welcome.Welcome',matches:'@ImageView[desc=\"图片\"][childCount=0][clickable=true][visibleToUser=true][width<180&&height<180] <<n [vid=\"poplayer_native_state_id\"]',exampleUrls:'https://e.gkd.li/5c77eaf1-b4dc-48c9-96af-131ae9644ffa',snapshotUrls:['https://i.gkd.li/i/18218537','https://i.gkd.li/i/20277438']},{key:2,activityIds:'com.taobao.browser.BrowserActivity',matches:'WebView[text=\"红包签到\"] > [id=\"ice-container\"] >(3,4) View[childCount=3] > [name$=\"Image\" || name$=\"Button\"][text*=\"jpg\" || text=\"关闭\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c7c06d50-a384-4869-a14f-95d219d9d08c',snapshotUrls:['https://i.gkd.li/i/18587158','https://i.gkd.li/i/18587159']},{key:3,fastQuery:true,activityIds:'com.taobao.themis.container.app.TMSActivity',matches:'[text=\"规则\"] +2 @View[childCount=1][clickable=true] > Image[childCount=0][text!=null] <<n [vid=\"tms_tab_content_view\"]',exampleUrls:'https://e.gkd.li/dbf9ea95-3674-4cb2-8a88-dfb96c24e71b',snapshotUrls:'https://i.gkd.li/i/22308745'},{key:4,fastQuery:true,activityIds:['com.taobao.search.uniform.SearchActivity','com.taobao.android.detail.alittdetail.TTDetailActivity','com.taobao.tao.TBMainActivity'],matches:'@[clickable=true][childCount=0][width<150 && height<150][index=parent.childCount.minus(1)] -n TextView[text.length>0] <n View <<n WebView[vid=\"poplayer_inner_view\"]',snapshotUrls:['https://i.gkd.li/i/22949963','https://i.gkd.li/i/23289412','https://i.gkd.li/i/23567053','https://i.gkd.li/i/24982514']}]},{key:2,name:'局部广告-消息页面热门活动卡片',rules:[{fastQuery:true,activityIds:['com.taobao.tao.welcome.Welcome','com.taobao.tao.TBMainActivity'],matches:'[desc.length>0 || text.length>0] + @LinearLayout[clickable=true] + FrameLayout > TextView[text=\"퀺\"]',snapshotUrls:['https://i.gkd.li/i/13197877','https://i.gkd.li/i/23140899']}]},{key:3,name:'局部广告-悬浮广告',rules:[{key:0,fastQuery:true,activityIds:'com.taobao.browser.BrowserActivity',matches:'@Image[childCount=0][clickable=true][text!=null] < View <2 View < WebView < o0 <2 WebView < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13521702'},{key:1,fastQuery:true,activityIds:'com.taobao.themis.container.app.TMSActivity',matches:'@Image[childCount=0][clickable=true][text!=null] <2 View < View < View <9 View < WebView < m0 <2 WebView < RelativeLayout < [vid=\"tms_tab_content_view\"]',exampleUrls:'https://e.gkd.li/45f8b78d-bc6a-4c1a-994d-6b5bce2c96a0',snapshotUrls:'https://i.gkd.li/i/22291107'},{key:2,fastQuery:true,activityIds:'com.taobao.android.detail.alittdetail.TTDetailActivity',matches:'@FrameLayout[desc=\"关闭\"][clickable=true] <<n [vid=\"ll_dinamicx_container\"]',snapshotUrls:'https://i.gkd.li/i/23289445'}]},{key:8,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.taobao.android.tbabilitykit.pop.StdPopContainerActivity','com.taobao.tao.TBMainActivity','com.taobao.tao.welcome.Welcome'],matches:'@Image[childCount=0][visibleToUser=true][text!=null] <n View >(1,2) [visibleToUser=true][text*=\"消息通知\" || text*=\"系统通知\"] <<n [vid=\"poplayer_inner_view\"]',snapshotUrls:['https://i.gkd.li/i/13446901','https://i.gkd.li/i/13455424','https://i.gkd.li/i/15104645','https://i.gkd.li/i/18407606','https://i.gkd.li/i/21789921']}]},{key:9,name:'功能类-各级页面添加到首页弹窗',desc:'点击退出',rules:[{fastQuery:true,activityIds:['com.taobao.themis.container.app.TMSActivity','com.alibaba.triver.container.TriverMainActivity'],matches:'TextView[text=\"去首页\"] + TextView[text=\"退出\"]',snapshotUrls:['https://i.gkd.li/i/13197553','https://i.gkd.li/i/13197546']}]},{key:12,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.taobao.android.detail.wrapper.activity.DetailActivity','com.taobao.android.order.bundle.TBOrderListActivity','com.taobao.browser.BrowserActivity','com.taobao.themis.container.app.TMSActivity'],matches:'[vid=\"update_imageview_cancel_v2\"]',snapshotUrls:['https://i.gkd.li/i/13336760','https://i.gkd.li/i/13695520','https://i.gkd.li/i/14899863','https://i.gkd.li/i/24861114','https://i.gkd.li/i/24999523']}]},{key:13,name:'功能类-关闭小额免密支付',desc:'在支付前/后出现',rules:[{key:0,fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:'[text=\"关闭\"] < @[clickable=true] <3 * < * + * >3 [text$=\"小额免密支付\"]',exampleUrls:'https://m.gkd.li/57941037/2322af2e-52e2-4059-9757-f26940f4b2fc',snapshotUrls:'https://i.gkd.li/i/13438414'},{key:1,fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:'@[checked=true] < * - [text=\"开通淘宝小额免密支付\"]',exampleUrls:'https://m.gkd.li/57941037/3ae78555-c0a5-4f76-8096-c4d1593ebb77',snapshotUrls:['https://i.gkd.li/i/14471853','https://i.gkd.li/i/14471858']}]},{key:14,name:'功能类-将小组件添加到手机桌面',desc:'点击取消',activityIds:'com.alibaba.triver.container.TriverMainActivity',rules:[{action:'clickCenter',matches:'View[text=\"立即添加\"] + View[text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13598578'}]},{key:15,name:'权限提示-悬浮窗权限',desc:'点击[否]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.taobao.android.detail2.core.framework.floatwindow.permission.PermissionActivity','com.taobao.taolive.sdk.permisson.PermissionActivity'],matches:['[text*=\"悬浮窗权限\"]','[text=\"否\" || text=\"暂不\"]'],snapshotUrls:['https://i.gkd.li/i/13588165','https://i.gkd.li/i/23146078']}]},{key:16,name:'全屏广告-花呗推荐弹窗',fastQuery:true,actionMaximum:1,rules:[{key:2,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text*=\"花呗升级\" || text*=\"花呗服务\" || text$=\"开通花呗\"][visibleToUser=true]','@[clickable=true] >n [text=\"暂不升级，继续付款\" || text=\"关闭\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13691864','https://i.gkd.li/i/13628020','https://i.gkd.li/i/13898735']}]},{key:19,name:'局部广告-商品详情页直播悬浮窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'com.taobao.android.detail.wrapper.activity.DetailActivity',matches:'[vid=\"view_close\"]',snapshotUrls:'https://i.gkd.li/i/15124094'}]},{key:20,name:'功能类-登录授权',desc:'点击[确认授权]',rules:[{activityIds:'com.taobao.browser.BrowserActivity',matches:'[text=\"确认授权\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e6250a9c-3fee-4470-8c7c-1d28ea63d2a5',snapshotUrls:'https://i.gkd.li/i/18271783'}]},{key:21,name:'全屏广告-支付后的推荐弹窗',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text$=\"推荐你\"][visibleToUser=true]','@[clickable=true] > [text=\"关闭\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/1646b159-a3ca-4cd8-9519-729e70acb72a',snapshotUrls:['https://i.gkd.li/i/14155537','https://i.gkd.li/i/18296345','https://i.gkd.li/i/22113615']},{key:1,name:'充值类商品界面广告',fastQuery:true,activityIds:'com.taobao.weex.WXActivity',matches:'@ImageView[clickable=true][width<150 && height<155] < FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout <2 [vid=\"weex_render_view\"]',snapshotUrls:'https://i.gkd.li/i/23923991'}]},{key:22,name:'局部广告-搜索页广告',desc:'自动隐藏猜你想搜、热榜',rules:[{key:0,name:'猜你想搜',fastQuery:true,activityIds:'com.taobao.search.uniform.SearchActivity',matches:'[vid=\"hideBtn\"][desc=\"隐藏\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/23165368','https://i.gkd.li/i/23165384']},{key:1,name:'热榜',fastQuery:true,activityIds:'com.taobao.search.uniform.SearchActivity',matches:'@[desc=\"隐藏榜单\"][clickable=true] <<n [vid=\"dynamic_container\"]',snapshotUrls:['https://i.gkd.li/i/23165418','https://i.gkd.li/i/23165427']}]}]},{id:'com.taobao.htao.android',name:'淘宝Lite',groups:[{key:1,name:'局部广告-关闭顶部[打开淘宝]横幅',rules:[{fastQuery:true,activityIds:'com.taobao.htao.android.detail.DetailActivity',matches:'WebView[text$=\"天猫Tmall.com\"] >2 View[id=null][childCount=1] > @TextView[visibleToUser=true][text=\"\"] <<n [vid=\"detail_swipe_to_refresher\"]',exampleUrls:'https://e.gkd.li/661fca21-45e3-4e89-8ccc-b8bafb1bab02',snapshotUrls:'https://i.gkd.li/i/16842507'}]},{key:2,name:'其他-关闭切换站点提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:['[vid=\"change_country_layout\"]','[vid=\"uik_mdButtonClose\"]'],exampleUrls:'https://e.gkd.li/2b0af049-98c9-43b2-8ae5-a40bf6833e95',snapshotUrls:'https://i.gkd.li/i/16976226'}]}]},{id:'com.taobao.litetao',name:'淘特',groups:[{key:1,name:'更新提示-版本升级弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.taobao.ltao.maintab.MainFrameActivity','.launcher.ALiFlutterActivityCompat'],matches:'[id = \"com.taobao.litetao:id/update_imageview_cancel_v2\"]',snapshotUrls:['https://i.gkd.li/i/12843615','https://i.gkd.li/i/12843614']}]}]},{id:'com.yunxiang.wuyu',name:'特狗APP',groups:[{key:2,name:'通知提示-公告弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13455634'}]},{key:3,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.yunxiang.wuyu.MainActivity',rules:[{key:1,name:'\"x\"型',matches:'ImageView < @ViewGroup[clickable=true] < ViewGroup +n ViewGroup [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13455628'},{key:2,name:'\"跳过\"型',matches:['TextView[text=\"广告\"]','@ViewGroup > TextView[text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13455629'}]}]},{id:'com.qq.ac.android',name:'腾讯动漫',groups:[{key:2,name:'局部广告-漫画阅读页面-左侧悬浮广告',rules:[{activityIds:'com.qq.ac.android.reader.comic.ComicReaderActivity',matches:'[id=\"com.qq.ac.android:id/operation_ad_view\"] > [id=\"com.qq.ac.android:id/btn_close\"]',snapshotUrls:'https://i.gkd.li/i/12707756'}]},{key:3,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{key:0,name:'漫画章节之间的广告',fastQuery:true,activityIds:'com.qq.ac.android.reader.comic.ComicReaderActivity',matches:'[vid=\"iv_del\"]',exampleUrls:'https://m.gkd.li/57941037/1be7564d-f6c2-429d-9cb0-3d923adafc8a',snapshotUrls:'https://i.gkd.li/i/14730335'}]}]},{id:'com.tencent.wemeet.app',name:'腾讯会议',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.StartupActivity',matches:'[text^=\"腾讯会议新版本\"] +3 * > [text=\"下次安装\"]',snapshotUrls:'https://i.gkd.li/i/14332625'}]},{key:2,name:'评价提示-通话质量评价',rules:[{fastQuery:true,activityIds:'com.tencent.wemeet.sdk.meeting.aftermeeting.AfterMeetingFeedbackMeetingExperienceActivity',matches:['[text=\"通话品质如何\"]','[vid=\"closeBtn\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23786665'}]},{key:3,name:'局部广告-卡片广告',rules:[{fastQuery:true,activityIds:'com.tencent.wemeet.sdk.meeting.premeeting.home.HomeActivity',matches:'@Button[clickable=true][childCount=1] > ImageView[childCount=0][width<80 && height<80] <<n [vid=\"operatingBannerContainer\"]',snapshotUrls:'https://i.gkd.li/i/23786670'}]},{key:4,name:'全屏广告',rules:[{fastQuery:true,activityIds:'com.tencent.wemeet.sdk.meeting.aftermeeting.AfterMeetingPictureActivity',matches:'[vid=\"btnClose\"]',snapshotUrls:'https://i.gkd.li/i/23787037'}]}]},{id:'com.tencent.qqlive',name:'腾讯视频',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'TextView[text*=\"跳过\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/14049316'}],order:-10},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ona.update.trunk.client.TrunkUpdateActivity',matches:'[text=\"暂不升级\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/19666787'}]},{key:3,name:'分段广告-卡片广告',activityIds:['.ona.activity.SplashHomeActivity','.ona.activity.VideoDetailActivity','.ona.activity.origin.OriginIconHomeActivity','.kmm.VideoDetailKmmActivityBk','.ona.activity.HomeActivity'],rules:[{key:0,fastQuery:true,matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] - FrameLayout >4 ViewGroup > [vid=\"player_sub_title_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d0fb9740-defa-437a-882e-b3c5d6a2d231',snapshotUrls:'https://i.gkd.li/i/19666783'},{key:1,fastQuery:true,matches:'[desc=\"the ad tag\"] < @FrameLayout[clickable=true] < RelativeLayout < RelativeLayout +(1,2) * >(4,5) [text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\"][text.length<6][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/19667010','https://i.gkd.li/i/19667126','https://i.gkd.li/i/19667028','https://i.gkd.li/i/19667404','https://i.gkd.li/i/19667413','https://i.gkd.li/i/19667494','https://i.gkd.li/i/19667496','https://i.gkd.li/i/19667620','https://i.gkd.li/i/19667647','https://i.gkd.li/i/21139117','https://i.gkd.li/i/21152861']},{key:2,fastQuery:true,matches:'@ImageView[text=null][desc=null][childCount=0][clickable=true][visibleToUser=true][width<250 && height<150] - * >(1,2) [text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\"]',snapshotUrls:['https://i.gkd.li/i/19666328','https://i.gkd.li/i/19693394']},{key:3,matches:'[desc=\"poster_inner_round_cell\"] >5 RelativeLayout[childCount=5] > ImageView[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)][width<180 && height<80]',exampleUrls:'https://e.gkd.li/18c89ee9-fcd5-43eb-805a-ac9e223e3cdc',snapshotUrls:'https://i.gkd.li/i/21139064'},{key:4,matches:'@View[clickable=true][childCount=0][visibleToUser=true][width<60 && height<60] -(4,5) [text=\"广告\"]',exampleUrls:'https://e.gkd.li/1d81db1b-a722-4800-b6b7-4e5edb470984',snapshotUrls:['https://i.gkd.li/i/21139431','https://i.gkd.li/i/21152859']},{key:5,matches:'View[childCount=0][width<180 && height<80] < @View[clickable=true][childCount=1][visibleToUser=true] +2 [text*=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/21152960'},{key:6,matches:'DetachableComposeView >2 ScrollView > View[childCount=4][visibleToUser=true] > View + TextView[childCount=1][text!=null][getChild(0).width<120][getChild(0).height<80] + View[childCount=1][getChild(0).text!=null] + View[clickable=true][childCount=0]',exampleUrls:'https://e.gkd.li/e4e6aca1-e7cb-4346-980b-638f26f61864',snapshotUrls:['https://i.gkd.li/i/21379340','https://i.gkd.li/i/21410460','https://i.gkd.li/i/21410716']},{key:7,fastQuery:true,matches:'@View[clickable=true][childCount=0][visibleToUser=true] <(1,2,3) View[checkable=true] <<4 [name*=\"KMMChannelNormalFragment\"] < FrameLayout <(2,3,4) ViewPager <<4 FrameLayout <(1,2) FrameLayout <(2,3,5) [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/23431044','https://i.gkd.li/i/24339351','https://i.gkd.li/i/24588850','https://i.gkd.li/i/24693451','https://i.gkd.li/i/24693465']},{key:8,fastQuery:true,matches:'@ImageView[clickable=true][visibleToUser=true][width<250 && height<150] <n RelativeLayout < RelativeLayout < RecyclerView < RelativeLayout < RelativeLayout < LinearLayout[desc=\"poster_inner_round_cell\"] < RecyclerView <2 ViewGroup <2 FrameLayout <2 ScrollView <(2,3) RelativeLayout < ViewPager < FrameLayout < FrameLayout < FrameLayout < FrameLayout <(1,2) FrameLayout <2 [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/23625987','https://i.gkd.li/i/23625990','https://i.gkd.li/i/24077457']},{key:9,matches:'DetachableComposeView >2 ScrollView > View[childCount=1][getChild(0).text.length>0] + View[clickable=true][childCount=0][visibleToUser=true][width=height]',snapshotUrls:['https://i.gkd.li/i/23599723','https://i.gkd.li/i/23625826']},{key:10,matches:'@View[clickable=true][childCount=0][width<90 && height<90] <n View + [text=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24715171'},{preKeys:[0,1,2,3,4,5,6,7,8,9,10],key:50,fastQuery:true,anyMatches:['[text=\"直接关闭\"][visibleToUser=true]','@View[clickable=true] > [visibleToUser=true][text=\"直接关闭\"]'],snapshotUrls:['https://i.gkd.li/i/19667198','https://i.gkd.li/i/19667244','https://i.gkd.li/i/21139034','https://i.gkd.li/i/24715184']},{preKeys:[50],fastQuery:true,anyMatches:['[text=\"确认\"][visibleToUser=true]','@View[clickable=true] > [visibleToUser=true][text=\"确认\"]'],snapshotUrls:['https://i.gkd.li/i/19667102','https://i.gkd.li/i/19666759','https://i.gkd.li/i/21152903','https://i.gkd.li/i/24715184']}]},{key:4,name:'全屏广告-视频播放时的广告',desc:'自动点击 跳过/关闭广告',activityIds:['.ona.activity.VideoDetailActivity','.kmm.VideoDetailKmmActivityBk'],rules:[{key:2,name:'全屏广告2',fastQuery:true,matches:'[text$=\"关闭广告\" || text=\"关闭VIP热剧推荐\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13526547','https://i.gkd.li/i/20691266','https://i.gkd.li/i/21152927']},{key:3,name:'居中广告-1',fastQuery:true,matches:'@ImageView[clickable=true][childCount=0][width<150&&height<150] - * >(3,4) [text^=\"摇动或点击\" || text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/18476380','https://i.gkd.li/i/18476384','https://i.gkd.li/i/19667827']},{key:4,name:'居中广告-2',fastQuery:true,matches:'@ImageView[clickable=true][childCount=0] +2 [text^=\"摇动或点击\" || text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\" || text*=\"小程序\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4bf0ff94-239d-4b43-900f-a375b44922e0',snapshotUrls:['https://i.gkd.li/i/13946107','https://i.gkd.li/i/14318385','https://i.gkd.li/i/18476383','https://i.gkd.li/i/20038310','https://i.gkd.li/i/24689566']},{key:5,fastQuery:true,matches:'@View[clickable=true][childCount=0][width<100 && height<100] <8 View < DetachableComposeView < FrameLayout <2 [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/b0f4982a-ac12-481c-bccb-f8b7a8b14c46',snapshotUrls:'https://i.gkd.li/i/21175698'}]},{key:6,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,rules:[{key:0,fastQuery:true,activityIds:'com.tencent.qqlive.redpacket.rain.OpenRedPacketActivity',matches:'@ImageView[clickable=true] < ViewGroup[childCount=5] < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/05606ba5-1a89-470c-bcca-bd52561a634d',snapshotUrls:'https://i.gkd.li/i/13842643'},{key:1,fastQuery:true,activityIds:'com.tencent.qqlive.ona.activity.SplashHomeActivity',matches:'@RelativeLayout[clickable=true] + * >3 [text=\"立即预约\"]',exampleUrls:'https://m.gkd.li/57941037/c8131a06-837a-4c42-9a70-9e8a7fe21334',snapshotUrls:'https://i.gkd.li/i/14567294'},{key:2,fastQuery:true,activityIds:'.ona.activity.SplashHomeActivity',matches:'@ImageView[clickable=true][visibleToUser=true] -3 LinearLayout >2 [text=\"立即免费领取\"]',exampleUrls:'https://e.gkd.li/8b128ebc-ce9c-4345-8094-769f9afa8cd6',snapshotUrls:'https://i.gkd.li/i/17088095'},{key:3,fastQuery:true,activityIds:'.ona.activity.SplashHomeActivity',matches:'[text=\"暂不需要，稍后领取\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3256ed8e-752c-426d-9d64-26c9fdea9b09',snapshotUrls:'https://i.gkd.li/i/17542869'},{key:4,fastQuery:true,activityIds:'.ona.activity.VideoDetailActivity',matches:'[text=\"放弃权益\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/37d3d077-1d3b-4b4d-87c2-4e0fa00d423e',snapshotUrls:'https://i.gkd.li/i/19666924'},{key:5,fastQuery:true,activityIds:'.ona.activity.SplashHomeActivity',matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true][width<200 && height<200] <2 RelativeLayout < RelativeLayout < RelativeLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/afb17212-1dcb-4d07-a9ce-b4f775ccd6fc',snapshotUrls:'https://i.gkd.li/i/19666714'},{key:6,fastQuery:true,activityIds:'.ona.activity.SplashHomeActivity',matches:'TextView[text^=\"暂不需要\"] < @View[clickable=true] <6 View < ComposeView < FrameLayout <2 FrameLayout < FrameLayout <2 FrameLayout <2 [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/4f48767f-9cfa-4507-89ab-eb24f483d05e',snapshotUrls:'https://i.gkd.li/i/20148077'},{key:7,activityIds:'.ona.activity.origin.OriginIconHomeActivity',matches:'@TextView[text=\"x\"][clickable=true][childCount=0] + View >2 [text^=\"下载并领取\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3a524370-1dbc-4017-a357-6728f809bd9c',snapshotUrls:'https://i.gkd.li/i/23763930'}]},{key:20,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ona.activity.SplashHomeActivity',matches:'@[clickable=true] - [text*=\"开启通知\"]',exampleUrls:'https://e.gkd.li/d16d04cb-8838-455c-9bc5-acebc936637b',snapshotUrls:'https://i.gkd.li/i/20368590'}]},{key:21,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,name:'投屏页面广告',fastQuery:true,activityIds:'com.tencent.qqlive.ona.activity.VideoDetailActivity',matches:'@[clickable=true] - [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/1b7518c9-4ca7-4905-8929-6f0130abf19f',snapshotUrls:'https://i.gkd.li/i/14358913'},{key:1,fastQuery:true,activityIds:['.ona.activity.SplashHomeActivity','.ona.activity.origin.OriginIconHomeActivity'],matches:'@[name$=\"ImageView\" || name$=\"FrameLayout\" ][childCount<2][clickable=true][visibleToUser=true][width<250 && height<150] <3 RelativeLayout < FrameLayout <2 FrameLayout < FrameLayout <2 ViewGroup < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout <n [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/0ea465ad-e4e4-4af5-92a4-2d71e44845f4',snapshotUrls:['https://i.gkd.li/i/19667104','https://i.gkd.li/i/21327634','https://i.gkd.li/i/23121852','https://i.gkd.li/i/23764004']},{key:2,activityIds:['.ona.activity.VideoDetailActivity','.kmm.VideoDetailKmmActivityBk'],matches:'RelativeLayout > ComposeView > View > View[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)]',exampleUrls:'https://e.gkd.li/23606b5d-a8e9-4848-9b5a-059e7ecb08af',snapshotUrls:['https://i.gkd.li/i/22870972','https://i.gkd.li/i/22894605']},{key:3,fastQuery:true,activityIds:'.ona.activity.origin.OriginIconHomeActivity',matches:'[text=\"关闭广告\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/17ea1473-f4b9-4622-b6ed-60486d6208f1',snapshotUrls:'https://i.gkd.li/i/23619869'}]},{key:22,name:'局部广告-悬浮广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,rules:[{key:0,fastQuery:true,activityIds:['.ona.activity.SplashHomeActivity','.ona.activity.VideoDetailActivity'],matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true] + [text^=\"免费看\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5f6447c1-39f6-4711-a907-fdf36f502ec6',snapshotUrls:['https://i.gkd.li/i/17542913','https://i.gkd.li/i/19667010']},{key:1,fastQuery:true,activityIds:'.ona.activity.VideoDetailActivity',matches:'@ImageView[id=null][text=null][desc=null][clickable=true][visibleToUser=true][width<150&&height<150] <2 FrameLayout[desc=\"float_widget_activity\"] < FrameLayout <3 FrameLayout <3 [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/8cac3233-7ead-4f5e-9126-51a195788276',snapshotUrls:'https://i.gkd.li/i/19667028'},{key:2,activityIds:'.ona.activity.origin.OriginIconHomeActivity',matches:'@RelativeLayout[clickable=true][childCount=2] < [desc=\"float_attent_banner_float_view_id\"]',exampleUrls:'https://e.gkd.li/ad4ea4f1-22e7-4e9b-b194-8cdddda5c069',snapshotUrls:'https://i.gkd.li/i/21139028'}]},{key:23,name:'其他-视频播放时的评价悬浮窗',desc:'点击关闭',rules:[{actionDelay:1000,fastQuery:true,activityIds:'.ona.activity.VideoDetailActivity',matches:'@View[clickable=true] + RecyclerView[childCount=5] > ViewGroup[childCount=2] > TextView[text=\"不推荐\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b10125fa-5b1f-4a64-b258-392c57f4a1d8',snapshotUrls:'https://i.gkd.li/i/20271517'}]}]},{id:'com.tencent.cmocmna',name:'腾讯手游加速器',groups:[{key:1,name:'局部广告-悬浮广告',rules:[{activityIds:'com.tencent.mocmna.activity.MainActivity',matches:'ViewGroup[childCount=2] > @ImageView[id!=null][clickable=true][childCount=0] + ImageView[childCount=0]',snapshotUrls:['https://i.gkd.li/i/12847323','https://i.gkd.li/i/12847336','https://i.gkd.li/i/13063271']}]},{key:2,name:'局部广告-信息流内嵌广告',rules:[{activityIds:'com.tencent.mocmna.activity.MainActivity',matches:'@ImageView[clickable=true][childCount=0][index=parent.childCount.minus(1)] -5 [text=\"下载\"]',snapshotUrls:['https://i.gkd.li/i/12847340','https://i.gkd.li/i/12847364']}]}]},{id:'com.tencent.qqsports',name:'腾讯体育',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'TextView[text*=\"跳过\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/14032883'}],order:-10}]},{id:'com.qq.qcloud',name:'腾讯微云',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{fastQuery:true,activityIds:'.activity.WeiyunRootActivity',matches:'@LinearLayout -(1,2) [text=\"互动广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/19752123','https://i.gkd.li/i/19752144']}],order:-10}]},{id:'com.tencent.docs',name:'腾讯文档',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,matches:'@LinearLayout[clickable=true] - [text^=\"互动广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13198082','https://i.gkd.li/i/23557410']}],order:-10},{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.DocsFlutterActivity',matches:'@[desc=\"暂不更新\"] + [desc=\"现在更新\"]',snapshotUrls:'https://i.gkd.li/i/13198091'}]},{key:2,name:'局部广告-卡片广告',rules:[{activityIds:'com.tencent.docs.DocsFlutterActivity',matches:'@ImageView[clickable=true] - [desc=\"限时购买\"]',snapshotUrls:'https://i.gkd.li/i/13198097'}]},{key:3,name:'全屏广告-弹窗广告',rules:[{actionDelay:200,activityIds:'com.tencent.docs.DocsFlutterActivity',matches:'View[childCount=2] > @TextView[id=null][clickable=true] + View',snapshotUrls:'https://i.gkd.li/i/13242404'}]}]},{id:'com.tencent.news',name:'腾讯新闻',groups:[{key:1,name:'分段广告-信息流广告',desc:'自动点击\"更多\"->\"不感兴趣\"',activityIds:'com.tencent.news.activity.SplashActivity',rules:[{key:0,name:'点击\"更多\"按钮',matches:'FrameLayout[id=\"android:id/content\"][childCount=1] >n [text=\"广告\"] +n [id=\"com.tencent.news:id/dislike_streamAd_more\"]',snapshotUrls:['https://i.gkd.li/i/12755834','https://i.gkd.li/i/12755852']},{preKeys:[0],key:1,name:'点击\"不感兴趣\"按钮',matches:'[id=\"com.tencent.news:id/dislike_reason_view\"] >n [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12755852'}]},{key:2,name:'全屏广告-广告、活动弹窗',rules:[{key:0,activityIds:'com.tencent.news.activity.SplashActivity',matches:'@[text=\"关闭\"] + [text=\"查看活动详情\"]',snapshotUrls:'https://i.gkd.li/i/12755872'}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.SplashActivity',matches:'[text=\"开启通知\"] + [text=\"先不了\"]',snapshotUrls:'https://i.gkd.li/i/12755824'}]}]},{id:'com.chinarainbow.tft',name:'天府通',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'Image[text=\"\"] < @View +4 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13269854'},{key:1,fastQuery:true,activityIds:'.mvp.ui.activity.QrcodeScanCompletedActivity',matches:'[id=\"com.byted.pangle.m:id/tt_reward_full_count_down_after_close\"]',snapshotUrls:'https://i.gkd.li/i/13468554'}]}]},{id:'com.alibaba.ailabs.tg',name:'天猫精灵',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.HomeActivity',matches:'[id=\"com.alibaba.ailabs.tg:id/ll_download\"] + [id=\"com.alibaba.ailabs.tg:id/va_dialog_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13296332'}]},{key:2,name:'全屏广告-超级会员弹窗',desc:'点击关闭',rules:[{fastQuery:true,position:{left:'width * 0.9444',top:'width * 1.0583'},activityIds:'com.alibaba.ailabs.flutter.container.FlutterPaymentActivity',matches:'FrameLayout > LinearLayout > [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/4a823639-f400-4249-81ea-f920d09317f4',snapshotUrls:'https://i.gkd.li/i/14443874'}]}]},{id:'com.tmall.campus.and',name:'天猫校园',groups:[{key:7,name:'全屏广告',rules:[{fastQuery:true,activityIds:['com.tmall.campus.and.main.MainActivity','com.tmall.campus.bizwebview.ui.CampusWebActivity'],matches:'[vid=\"close_btn\" || vid=\"iv_close\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/22399316','https://i.gkd.li/i/22425649']}]},{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.tmall.campus.scancode.activity.ToolsCaptureActivity','com.tmall.campus.bizwebview.ui.CampusWebActivity'],matches:'[vid=\"iv_close_ad\"]',snapshotUrls:['https://i.gkd.li/i/22558370','https://i.gkd.li/i/22871032']}]},{key:2,name:'功能类-打开应用自动点击扫一扫',desc:'仅开屏后触发一次',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.tmall.campus.and.main.MainActivity',matches:'[vid=\"iv_top_scan\"]',snapshotUrls:'https://i.gkd.li/i/22871147'}]},{key:3,name:'权限提示-通知权限',rules:[{fastQuery:true,activityIds:['.main.MainActivity','com.tmall.campus.launcher.SplashActivity'],matches:['[text=\"获取通知权限\"]','[text=\"再想想\"]'],snapshotUrls:['https://i.gkd.li/i/23124558','https://i.gkd.li/i/23254348']}]}]},{id:'com.coloros.weather2',name:'天气',groups:[{key:1,name:'分段广告-卡片广告',desc:'点击关闭',fastQuery:true,activityIds:'com.oplus.weather.main.view.WeatherMainActivity',rules:[{key:0,matches:'[vid=\"feed_close\"]',exampleUrls:'https://m.gkd.li/57941037/fc08493c-dec2-4534-9f61-3627aa337b30',snapshotUrls:'https://i.gkd.li/i/14258190'},{preKeys:[0],matches:'@[clickable=true] >(1,2) [text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/9137d262-7fda-4b57-a0bc-b9fa60634a22',snapshotUrls:['https://i.gkd.li/i/16631878','https://i.gkd.li/i/20429502']}]}]},{id:'com.eastmoney.android.fund',name:'天天基金',groups:[{key:1,name:'局部广告-自选页面广告',rules:[{activityIds:'com.eastmoney.android.fund.centralis.activity.FundRootActivity',matches:'FrameLayout > FrameLayout > ImageView + FrameLayout[childCount=1] > ImageView',snapshotUrls:'https://i.gkd.li/i/12642387'}]},{key:2,name:'其他-自选页面缩写提示信息',rules:[{activityIds:'com.eastmoney.android.fund.centralis.activity.FundRootActivity',matches:'[desc=\"表示场内基金的最新价和折价率\"] -(2) FrameLayout < FrameLayout + ImageView',snapshotUrls:'https://i.gkd.li/i/12642387'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.centralis.activity.FundRootActivity',matches:'@FrameLayout[clickable=true] - * >2 [desc=\"立即升级\"] <<n [id=\"com.eastmoney.android.fund:id/container\"]',snapshotUrls:'https://i.gkd.li/i/13546927'}]},{key:4,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.eastmoney.android.fund.centralis.activity.FundRootActivity','com.eastmoney.android.fund.activity.FundSplashActivity'],matches:'ImageView[childCount=0] < @FrameLayout[clickable=true][childCount=1] <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < [vid=\"container\"]',exampleUrls:'https://m.gkd.li/57941037/21743bbb-010a-410c-8ce1-57710d37722d',snapshotUrls:['https://i.gkd.li/i/14149452','https://i.gkd.li/i/14332091']}]},{key:5,name:'评价提示-好评弹窗',desc:'点击下次再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.centralis.activity.FundRootActivity',matches:'@[desc=\"下次再说\"] <<n [vid=\"container\"]',exampleUrls:'https://m.gkd.li/57941037/d791a2f9-ae86-4389-8ee7-36a87f11b60d',snapshotUrls:'https://i.gkd.li/i/14179508'}]}]},{id:'com.myapp.app.xaoorti',name:'天天视频',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'快手广告-1',activityIds:'com.ys.resemble.ui.login.splash.SplashADSetActivity',matches:['[text=\"广告\"]','@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]'],snapshotUrls:'https://i.gkd.li/i/13520475'},{key:1,name:'快手广告-2',activityIds:'com.ys.resemble.ui.MainActivity',matches:['[text=\"广告\"]','@ViewGroup > [text=\"跳过\"]'],snapshotUrls:'https://i.gkd.li/i/13546700'},{key:2,name:'快手广告-3',activityIds:'com.ys.resemble.ui.MainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13546701'},{key:3,name:'腾讯广告',activityIds:'com.ys.resemble.ui.login.splash.SplashADSetActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13520477'}]}]},{id:'com.gkid.crazyrope',name:'天天跳绳',groups:[{key:1,name:'全屏广告-会员提示',desc:'点击不需要',fastQuery:true,activityIds:'com.gkid.crazyrope.ui.member.MemberDiscountsActivity',rules:[{matches:'[id=\"com.gkid.crazyrope:id/btn_close\"][text=\"暂不需要\"]',snapshotUrls:'https://i.gkd.li/i/12916419'}]},{key:2,name:'分段广告-浮窗广告',desc:'点击关闭-点击关闭广告',fastQuery:true,activityIds:'.ui.drillcommon.DrillActivity',rules:[{key:0,matches:'[id=\"com.gkid.crazyrope:id/iv_close\"]',exampleUrls:'https://e.gkd.li/398c08eb-ebfb-4cf6-9349-0b0ad4b575c9',snapshotUrls:'https://i.gkd.li/i/13262845'},{preKeys:[0],matches:'[text=\"关闭广告\"]',exampleUrls:'https://e.gkd.li/3d27d844-b552-4a0c-800b-3dc5790fb8c0',snapshotUrls:'https://i.gkd.li/i/13262844'}]}]},{id:'com.ataaw.tianyi',name:'天翼生活',groups:[{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:['[vid=\"version\"]','[vid=\"ignore\"]'],snapshotUrls:'https://i.gkd.li/i/13867468'}]},{id:'com.cn21.ecloud',name:'天翼云盘',groups:[{key:1,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.cn21.ecloud.activity.MainPageActivity',matches:'FrameLayout > View[childCount=1] > View[childCount=1] >(1,4) View[childCount=2][desc=null] > @ImageView[clickable=true][visibleToUser=true] <<n [vid=\"content_frame\"]',snapshotUrls:['https://i.gkd.li/i/12865488','https://i.gkd.li/i/16653930','https://i.gkd.li/i/16647901']}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MainPageActivity',matches:'[id=\"com.cn21.ecloud:id/ivCancel\"]',snapshotUrls:'https://i.gkd.li/i/13399488'}]}]},{id:'com.tt.turbo',name:'甜糖',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[desc=\"取消\"] + [desc=\"更新\"]',snapshotUrls:'https://i.gkd.li/i/14292907'}]}]},{id:'com.baidu.tieba_mini',name:'贴吧极速版',groups:[{key:1,name:'分段广告-首页信息流广告',activityIds:['com.baidu.tieba.tblauncher.MainTabActivity'],rules:[{key:0,matches:'LinearLayout > [text=\"广告\"] + ImageView',snapshotUrls:'https://i.gkd.li/i/12905039'},{preKeys:0,key:1,matches:'[text=\"屏蔽广告\"]',snapshotUrls:['https://i.gkd.li/i/12904633']}]}]},{id:'com.baidutieba.davy',name:'贴吧一键签到大师',groups:[{key:1,name:'全屏广告-内部弹窗广告',activityIds:'com.davy.commonlibrary.utils.DialogUtil',rules:[{matches:'[id=\"com.baidutieba.davy:id/exit\"]',snapshotUrls:'https://i.gkd.li/i/12504289'},{matches:'[id=\"com.baidutieba.davy:id/mimo_interstitial_close_img\"]',snapshotUrls:'https://i.gkd.li/i/12504291'}]}]},{id:'com.MobileTicket',name:'铁路12306',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"tv_main_splash_skip\" || vid=\"tv_skip\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/9a9b71b2-0c52-4623-b53b-6dd07d0cbe7c',snapshotUrls:['https://i.gkd.li/i/17580273','https://i.gkd.li/i/17656103']}],order:-10}]},{id:'com.chinarailway.globalticketing',name:'铁路12306',groups:[{key:1,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.MobileTicket.ui.activity.MainActivity',matches:['[text^=\"开启定位权限\"]','[vid=\"img_close\"]'],exampleUrls:'https://e.gkd.li/95c8443e-babc-4d96-a3cd-00692c2acf30',snapshotUrls:'https://i.gkd.li/i/16987292'}]},{key:2,name:'通知提示-关闭底部公告横幅',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.MobileTicket.ui.activity.MainActivity',matches:'[vid=\"iv_tip_close\"][desc^=\"关闭公告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/be03fa78-7c6f-4a05-8370-93a5de9a246e',snapshotUrls:'https://i.gkd.li/i/19497545'}]}]},{id:'com.chinatower.tthd',name:'铁塔换电',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.chinatower.fghd.customer.home.HomeNewActivity',matches:'[id=\"com.chinatower.tthd:id/fl_content_container\"] + [id=\"com.chinatower.tthd:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13694901'}]}]},{id:'com.tongtongsuo.app',name:'通通锁',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:1,actionDelay:2000,activityIds:'com.scaf.android.client.activity.DoorkeyControlPanelActivity',matches:'ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < @FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/09628cf0-3004-439f-9bfd-68a085b0bda6',snapshotUrls:'https://i.gkd.li/i/18296115'},{key:2,actionDelay:2000,activityIds:'com.scaf.android.client.activity.DoorkeyControlPanelActivity',matches:'ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < @FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/d4ce9699-27f6-4191-92fd-7cab78632299',snapshotUrls:'https://i.gkd.li/i/18309574'},{key:3,actionDelay:2000,activityIds:'com.scaf.android.client.activity.DoorkeyControlPanelActivity',matches:'ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < @FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:'https://e.gkd.li/0d576ac2-9821-4e7e-b398-fef3427ad7c2',snapshotUrls:'https://i.gkd.li/i/18309593'},{key:4,actionDelay:2000,activityIds:'com.scaf.android.client.activity.DoorkeyControlPanelActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] < FrameLayout - FrameLayout >6 [text^=\"点击\"]',exampleUrls:'https://e.gkd.li/4e62c701-43cc-49a1-acd8-fb9604cad328',snapshotUrls:'https://i.gkd.li/i/18309739'},{key:5,actionDelay:2000,activityIds:'com.beizi.ad.internal.activity.BeiZiInterstitialActivity',matches:'[vid=\"beizi_interstitial_ad_close_iv\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4a608829-51f8-439c-93b3-9e78cd036e0c',snapshotUrls:'https://i.gkd.li/i/18309693'}]}]},{id:'com.android.contacts',name:'通讯录与拨号',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.mobile.businesshall.ui.common.RecommendPopupActivity',matches:'[vid=\"img_close_btn\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/a3ad68fc-4a2e-45e2-87d3-97ece1fceaa4',snapshotUrls:'https://i.gkd.li/i/14321032'}]},{key:2,name:'更新提示',desc:'点击[取消]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[text=\"取消\"] +2 [text=\"更新\"]',exampleUrls:'https://m.gkd.li/57941037/803695f8-48e1-43e8-8841-ec0288393489',snapshotUrls:'https://i.gkd.li/i/14469082'}]}]},{id:'com.tongcheng.android',name:'同程旅行',groups:[{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.TongchengMainActivity',matches:'[vid=\"iv_home_ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/25369e74-1527-4ca5-9f39-77930ee84d1e',snapshotUrls:'https://i.gkd.li/i/20921290'}]},{key:3,name:'评价提示',matchTime:10000,actionMaximum:1,rules:[{fastQuery:true,activityIds:'.TongchengMainActivity',matches:['[text=\"给个好评鼓励下吧\"][visibleToUser=true]','[vid=\"iv_close\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/60949e51-3d07-4eda-ab2d-9ff561d8b58c',snapshotUrls:'https://i.gkd.li/i/20921292'}]}]},{id:'com.hexin.plat.android',name:'同花顺',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,position:{left:'width * 3.6279',top:'width * -6.5736'},matches:'@[id=\"android:id/title\"][childCount=0][width<150] < LinearLayout < [parent=null]',exampleUrls:'https://e.gkd.li/2750d496-8889-4aed-88b7-70692df44e8f',snapshotUrls:'https://i.gkd.li/i/16505270'},{key:1,position:{left:'width * 3.7',top:'width * -6.9281'},matches:'@[id=\"android:id/title\"][childCount=0][width>=150] < LinearLayout < [parent=null]',exampleUrls:'https://e.gkd.li/f9c7621d-8b2b-4ca8-9904-fe0bca61c43f',snapshotUrls:'https://i.gkd.li/i/17726527'},{key:2,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24119631'}],order:-10},{key:1,name:'分段广告-信息流广告',desc:'信息流广告-点击x按钮-点击内容质量差',activityIds:['com.hexin.plat.android.Hexin'],rules:[{key:1,matches:'@[id=\"com.hexin.plat.android:id/iv_feed_bottom_bar_dislike\"] < LinearLayout -(2) LinearLayout >(2) [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12662754']},{preKeys:[1],key:2,matches:'[id=\"com.hexin.plat.android:id/tv_negative_feedback_option\"][text=\"内容质量差\"] - ImageView < LinearLayout[clickable=true]',snapshotUrls:['https://i.gkd.li/i/12662781']}]},{key:10,name:'局部广告-底部产品广告',activityIds:['com.hexin.plat.android'],rules:[{matches:'[id=\"com.hexin.plat.android:id/prod_ad\"] + [id=\"com.hexin.plat.android:id/prod_close_image\"]',snapshotUrls:['https://i.gkd.li/i/12662656']}]}]},{id:'com.chan.cwallpaper',name:'图凌',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"activate_button\"]',snapshotUrls:'https://i.gkd.li/i/14293734'}],order:-10},{key:1,name:'全屏广告-会员回馈弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.chan.cwallpaper.module.main.MainActivity',matches:'[vid=\"ivClose\"]',exampleUrls:'https://m.gkd.li/57941037/8150c450-bcf8-4e8b-8236-4c3abebbeef3',snapshotUrls:'https://i.gkd.li/i/14308433'}]}]},{id:'com.jsguohua.youquanmall.tt',name:'图图影视',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.zero.flutter_qq_ads.page.AdSplashActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13163314'}]}]},{id:'cn.TuHu.android',name:'途虎养车',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.TuHu.Activity.tuhutab.TuHuTabActivity',matches:'@[id=\"cn.TuHu.android:id/imgClose\"] - [id=\"cn.TuHu.android:id/rlContent\"] > [id=\"cn.TuHu.android:id/img_jump\"]',snapshotUrls:'https://i.gkd.li/i/13228818'}]},{key:10,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.TuHu.Activity.tuhutab.TuHuTabActivity',matches:'[id=\"cn.TuHu.android:id/imgClose\"]',snapshotUrls:['https://i.gkd.li/i/13228796','https://i.gkd.li/i/13256535']}]}]},{id:'com.seasun.tech.woh.jx3companion',name:'推栏',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'@[clickable=true] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3314ff0b-9218-4712-9ae9-b820029e356a',snapshotUrls:'https://i.gkd.li/i/18730361'}],order:-10}]},{id:'com.wacai365',name:'挖财记账',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.wacai365.HomeActivity','com.wacai.android.wind.splash.WindDialogActivity'],matches:'@ImageView[id=\"com.wacai365:id/tv_cancel\"] - TextView[text^=\"新版本\"]',snapshotUrls:['https://i.gkd.li/i/13249620','https://i.gkd.li/i/13772291']}]},{key:2,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.wacai365.HomeActivity',matches:'[id^=\"com.wacai365:id/promote_banner_close\"]',snapshotUrls:'https://i.gkd.li/i/13249666'}]}]},{id:'com.waimaiii.waimaiii',name:'歪麦霸王餐',groups:[{key:3,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.sangshen.ad_jg_flutter_sdk.SplashAdActivity',rules:[{matches:'View > View[childCount=2] > ImageView[clickable=true] + ImageView[id=\"\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13346187'}]},{key:4,name:'局部广告',rules:[{key:0,fastQuery:true,activityIds:'.MainActivity',matches:'[id$=\"ksad_ad_dislike\"] <n RelativeLayout - FrameLayout >3 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/5559308c-b40c-484f-a4ee-c162b507fb27',snapshotUrls:'https://i.gkd.li/i/24790719'},{key:1,fastQuery:true,activityIds:'.MainActivity',matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] <2 ViewGroup <2 ViewGroup <2 ViewGroup - ViewGroup >3 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/24656915'}]}]},{id:'com.etalien.booster',name:'外星人加速器',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,position:{left:'width * 0.9037',top:'width * 0.2976'},activityIds:'com.etalien.booster.mobile.MainActivity',matches:'View[childCount=3] > @View[childCount=1] >2 FrameLayout[childCount=4]',exampleUrls:'https://m.gkd.li/57941037/33c6f9e3-25d7-4a5c-868a-35726ea9554e',snapshotUrls:'https://i.gkd.li/i/15142013'}]}]},{id:'com.pwrd.steam.esports',name:'完美世界电竞',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"rl_skip\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b7adf229-631c-4c27-a07b-eb6e0e1854af',snapshotUrls:'https://i.gkd.li/i/21808124'}],order:-10},{key:1,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'[text=\"开启推送通知\"] + [vid=\"tv_close\"]',exampleUrls:'https://m.gkd.li/57941037/6bb3a2b3-5511-4655-9e4a-c0eb6bae27ad',snapshotUrls:'https://i.gkd.li/i/14622501'}]}]},{id:'com.newcapec.mobile.ncp',name:'完美校园',groups:[{key:10,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.wanxiao.basebusiness.activity.SplashActivity',matches:'[id=\"com.newcapec.mobile.ncp:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12843377'}]},{key:11,name:'其他-密码过期提示弹窗',desc:'点击\"取消\"按钮',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.wanxiao.ui.activity.IndexActivity',matches:'[id=\"com.newcapec.mobile.ncp:id/dialog_oppotion\"]',snapshotUrls:'https://i.gkd.li/i/12843399'}]}]},{id:'com.growing.topwidgets',name:'万能小组件 Top Widgets',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,activityIds:'com.growing.topwidgets.home.MainActivity',rules:[{key:0,matches:'@ImageView < * - * > [text=\"立即打开\"]',snapshotUrls:'https://i.gkd.li/i/14892835'},{key:1,matches:'@ImageView < * - * > [text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/14945536'},{key:2,matches:'[vid=\"ms_item_pre_render_large_iamge_close\"]',snapshotUrls:'https://i.gkd.li/i/15137361'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][visibleToUser=true] <(2,3,4) * >(2,3,4) [text=\"反馈\"]',snapshotUrls:['https://i.gkd.li/i/14945552','https://i.gkd.li/i/15286451','https://i.gkd.li/i/16703279']},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/14964868'}]}]},{id:'com.duokan.phone.remotecontroller',name:'万能遥控',groups:[{key:4,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaomi.mitv.phone.remotecontroller.HoriWidgetMainActivityV2',matches:'[id=\"com.duokan.phone.remotecontroller:id/ll_permission\"] >2 [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13642080'}]},{key:5,name:'局部广告',rules:[{fastQuery:true,activityIds:'com.xiaomi.mitv.phone.remotecontroller.HoriWidgetMainActivityV2',matches:'[vid=\"image_close_banner\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bf36812a-1bf9-43dc-aca5-f351c2f8d1f6',snapshotUrls:'https://i.gkd.li/i/22451785'}]}]},{id:'com.wifi.masterkey.lite',name:'万能钥匙',groups:[{key:1,name:'分段广告-首页卡片广告',fastQuery:true,activityIds:'com.wifitutu.ui.main.HomeMainActivity',rules:[{key:0,matches:'@[id=\"com.zm.wfsdk:id/wf_sdk_native_express_close_rl\"] - FrameLayout >2 [text=\"免费直连\"]',exampleUrls:'https://e.gkd.li/87fe7de1-ba4b-4922-941b-96a88e67f1b0',snapshotUrls:'https://i.gkd.li/i/22801665'},{preKeys:[0],matches:'[text=\"不感兴趣\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/1b66dbd9-85b7-4287-bf3c-7d6723b8afe8',snapshotUrls:'https://i.gkd.li/i/22801668'}]}]},{id:'com.youloft.calendar',name:'万年历',groups:[{key:1,name:'局部广告-悬浮广告',rules:[{key:0,name:'万年历页面-右侧悬浮广告',fastQuery:true,activityIds:'com.youloft.calendar.MainActivity',matches:'[id=\"com.youloft.calendar:id/ad_iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13348416'}]}]},{id:'com.sgcc.wsgw.cn',name:'网上国网',groups:[{key:1,name:'分段广告-首页弹窗广告',activityIds:['com.sgcc.wsgw.mainbundle.NewsSyRemind2Activity','com.sgcc.wsgw.rnbundle.activity.HomeReactActivity'],rules:[{key:1,actionCd:2000,fastQuery:true,matches:'@[focusable=true] + [text=\"今日不再出现\"]',snapshotUrls:['https://i.gkd.li/i/12745042','https://i.gkd.li/i/13247655']},{preKeys:[1],key:2,actionDelay:300,matches:'ViewGroup[childCount=1] > @ViewGroup[childCount=1] > ImageView',snapshotUrls:['https://i.gkd.li/i/13247655','https://i.gkd.li/i/13247655']},{preKeys:[1],key:3,actionDelay:300,fastQuery:true,matches:'[id=\"com.sgcc.wsgw.cn:id/news_remind_laytout\"] >n [id=\"com.sgcc.wsgw.cn:id/btn_remind_close\"]',snapshotUrls:'https://i.gkd.li/i/12745042'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.sgcc.wsgw.rnbundle.activity.HomeReactActivity',matches:'@ImageView < ViewGroup -3 [text=\"有新版本啦!\"]',snapshotUrls:'https://i.gkd.li/i/13501638'}]}]},{id:'cn.speedtest.lite',name:'网速管家极速版',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:'@[id=\"cn.speedtest.lite:id/iv_close\"] - [id=\"cn.speedtest.lite:id/ll_main_pane\"] >2 [id=\"cn.speedtest.lite:id/tv_upgrade_content\"]',snapshotUrls:'https://i.gkd.li/i/12715483'}]},{key:10,name:'全屏广告-新人专享优惠弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.speedtest.lite.main.MainActivity',matches:'@[id=\"cn.speedtest.lite:id/iv_close\"] - RelativeLayout >n [id=\"cn.speedtest.lite:id/ad_banner\"]',snapshotUrls:'https://i.gkd.li/i/12715511'}]}]},{id:'com.onethingcloud.android',name:'网心云',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,action:'clickCenter',matches:'@View[desc*=\"跳过\"][desc.length<10][visibleToUser=true] < View < View < View < View < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/0d0560e5-2b7d-4599-8336-a5254d5e13ea',snapshotUrls:'https://i.gkd.li/i/18094505'}],order:-10},{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.onethingcloud.android.MainActivity',matches:'@ImageView[clickable=true][visibleToUser=true][index=parent.childCount.minus(1)] <(2,3) View[getChild(0).text=null] < View < View[childCount=2] < View < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/14766665','https://i.gkd.li/i/16438609'],excludeSnapshotUrls:'https://i.gkd.li/i/18094505'}]}]},{id:'com.netease.gl',name:'网易大神',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.serviceupdate.widget.DialogUpdate',matches:'@[id=\"com.netease.gl:id/iv_close\"] +2 LinearLayout >n [id=\"com.netease.gl:id/btn_update\"]',snapshotUrls:'https://i.gkd.li/i/12883135'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.netease.gl.ui.activity.welcome.WelcomeActivity',matches:'@[id=\"com.netease.gl:id/iv_close\"] + [id=\"com.netease.gl:id/iv_cover\"]',snapshotUrls:'https://i.gkd.li/i/12883277'}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.compfeed.widget.CommonWebPopupDialog',matches:'@[id=\"com.netease.gl:id/iv_close\"] + [text=\"开启推送\"]',snapshotUrls:'https://i.gkd.li/i/13072071'}]}]},{id:'com.netease.mkey',name:'网易将军令',groups:[{key:2,name:'其他-一键迁移至新版将军令',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.netease.mkey.activity.NtSecActivity',matches:'[id=\"com.netease.mkey:id/tv_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13421302'}]}]},{id:'com.netease.newsreader.activity',name:'网易新闻',groups:[{key:2,name:'权限提示-通知权限',desc:'点击暂不开启',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.netease.newsreader.common.base.activity.SingleFragmentActivity',rules:[{key:0,matches:'[text*=\"开启系统推送\"] - ImageView < * < * < FrameLayout + FrameLayout >(3) Button[text=\"暂不开启\"]',snapshotUrls:'https://i.gkd.li/i/12639800'},{key:1,matches:'[text^=\"打开推送\"] +(2) RelativeLayout > ImageView',snapshotUrls:'https://i.gkd.li/i/12639869'}]},{key:4,name:'分段广告-首页信息流广告',desc:'点击卡片广告x关闭按钮-关闭反馈理由弹窗',activityIds:'com.netease.nr.phone.main.MainActivity',rules:[{key:1,matches:'FrameLayout[childCount=1] >5 TextView[text=\"广告\"] +2 ImageView[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12639751'},{preKeys:[1],name:'首页信息流广告-反馈理由',matches:'[text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12639752'}]}]},{id:'com.netease.yanxuan',name:'网易严选',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.netease.yanxuan.module.mainpage.activity.MainPageActivity',matches:'[id=\"com.netease.yanxuan:id/trans_cancel\"]',snapshotUrls:'https://i.gkd.li/i/12840641'}]}]},{id:'com.netease.mobimail',name:'网易邮箱',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<=10][!(id=\"com.netease.mobimail:id/ad_skip\")]',snapshotUrls:['https://i.gkd.li/i/12686132','https://i.gkd.li/i/13328441','https://i.gkd.li/i/13800060']},{key:1,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/12686093'},{key:2,fastQuery:true,matches:'[id=\"com.netease.mobimail:id/ad_skip\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12667519','https://i.gkd.li/i/13328425']}],order:-10},{key:1,name:'局部广告-邮件列表页面广告条目',rules:[{activityIds:'com.netease.mail.biz.main.MainITabActivity',matches:'[id=\"com.netease.mobimail:id/ad_vip\" || id=\"com.netease.mobimail:id/ll_delete\"]',snapshotUrls:['https://i.gkd.li/i/12683488','https://i.gkd.li/i/12683511']}]}]},{id:'com.netease.mail',name:'网易邮箱大师',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,excludeMatches:'[vid=\"ad_skip\"][clickable=false]',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13195662','https://i.gkd.li/i/16883928','https://i.gkd.li/i/14900326']},{key:1,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/14046124'},{key:2,fastQuery:true,position:{left:'width * 0.9016',top:'width * 0.1557'},matches:'[id=\"com.netease.mail:id/animation_view\"]',snapshotUrls:['https://i.gkd.li/i/13207736','https://i.gkd.li/i/14900326','https://i.gkd.li/i/16892947']}],order:-10},{key:2,name:'全屏广告-邮件列表广告',activityIds:'com.netease.mail.biz.main.MainITabActivity',fastQuery:true,rules:[{key:0,matches:'[id=\"com.netease.mail:id/ad_vip\"]',snapshotUrls:'https://i.gkd.li/i/12999833'},{preKeys:[0],key:1,matches:'[id=\"com.netease.mail:id/ll_delete\"]',snapshotUrls:'https://i.gkd.li/i/12999841'}]},{key:5,name:'其他-获得成就弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'TextView[text=\"恭喜您获得以下成就\"] - @TextView[clickable=true][text=\"\"] <<n [vid=\"browser_fragment_container\"]',snapshotUrls:'https://i.gkd.li/i/13876817'}]}]},{id:'com.youdao.dict',name:'网易有道词典',groups:[{key:1,name:'分段广告-单词页面卡片广告',fastQuery:true,activityIds:['.activity.MainActivity','.activity.DictQueryActivity'],rules:[{key:0,matches:['[text=\"广告\"]','[vid=\"close\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13800055','https://i.gkd.li/i/16278151','https://i.gkd.li/i/17963902']},{preKeys:[0],key:1,matches:'[vid=\"close_pop\"][text=\"收起广告\"]',snapshotUrls:['https://i.gkd.li/i/13800056','https://i.gkd.li/i/16278150','https://i.gkd.li/i/17963904']}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,name:'首页-弹窗广告',fastQuery:true,activityIds:['com.youdao.dict.activity.MainActivity','com.youdao.dict.activity.DictSplashActivity'],matches:'@ImageView[id=\"com.youdao.dict:id/iv_close_bt\"]',snapshotUrls:['https://i.gkd.li/i/12893419','https://i.gkd.li/i/13263801']},{key:1,name:'学习页面-弹窗广告',fastQuery:true,activityIds:['com.youdao.dict.edu.main.MainPopDialog','com.youdao.dict.activity.MainActivity','.activity.DictQueryActivity'],matches:'[vid=\"iv_close\"]',snapshotUrls:['https://i.gkd.li/i/12893450','https://i.gkd.li/i/16859556','https://i.gkd.li/i/20602998']},{key:2,name:'抽奖机会-弹窗广告',fastQuery:true,activityIds:['com.youdao.dict.activity.DictSplashActivity','com.youdao.dict.activity.DictHotBootSplashActivity'],matches:'[vid=\"skip_bottom_view\"]',snapshotUrls:['https://i.gkd.li/i/13931202','https://i.gkd.li/i/14064647']},{key:3,fastQuery:true,name:'首页-礼包弹窗',activityIds:'com.youdao.dict.activity.MainActivity',matches:'[vid=\"image\"] + [vid=\"close\"]',snapshotUrls:'https://i.gkd.li/i/14296482'},{key:4,activityIds:'.activity.DictQueryActivity',matches:'@[vid=\"iv_cancel\"][visibleToUser=true] - [vid=\"fl_video_container\"]',exampleUrls:'https://e.gkd.li/342a587e-bf0d-42e9-8c16-3c0b53240e5a',snapshotUrls:'https://i.gkd.li/i/18051512'}]},{key:4,name:'全屏广告-VIP弹窗',fastQuery:true,rules:[{key:0,activityIds:['com.youdao.dict.vip.activity.RecallSevenDayVipActivity','com.youdao.dict.vip.activity.SecondShowNewUserSevenDayVipActivity','.activity.DictQueryActivity','.vip.activity.FirstShowNewUserSevenDayVipActivity'],matches:'ImageView[vid=\"iv_close\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13263706','https://i.gkd.li/i/14381735','https://i.gkd.li/i/16929322','https://i.gkd.li/i/22275220']},{key:1,activityIds:'com.youdao.feature_ai.AiMainActivity',matches:'[vid=\"aiv_guide_cancel\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7bfd334a-38a0-4251-966c-1df55c168425',snapshotUrls:'https://i.gkd.li/i/16426631'}]},{key:5,name:'评价提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.activity.MainActivity','.activity.DictQueryActivity'],matches:'[id=\"com.youdao.dict:id/btn_never\"][text*=\"不再提醒\"]',snapshotUrls:['https://i.gkd.li/i/13540941','https://i.gkd.li/i/14256301']}]},{key:6,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MainActivity',matches:'[id=\"com.youdao.dict:id/tv_version\"] + [id=\"com.youdao.dict:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13627912'}]},{key:7,name:'功能类-点击显示释义',activityIds:'com.youdao.dict_flutter_android_bridge.WordBookFlutterActivity',rules:[{matches:'[desc=\"点击显示释义\"] > View[index=3][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14292588','https://i.gkd.li/i/14292587']}]},{key:8,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:['.activity.MainActivity','.activity.DictQueryActivity'],matches:'[vid=\"aivClose\" || vid=\"course_one_course_close\" || vid=\"home_ad_close\" || vid=\"course_four_course_close\" || vid=\"promotion_close_zone\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/df92c524-c732-4c16-9266-326056c9acf8',snapshotUrls:['https://i.gkd.li/i/14468564','https://i.gkd.li/i/14567234','https://i.gkd.li/i/14895765','https://i.gkd.li/i/14009705','https://i.gkd.li/i/14559287','https://i.gkd.li/i/17082441','https://i.gkd.li/i/17115693'],excludeSnapshotUrls:'https://i.gkd.li/i/14468628'}]},{key:9,name:'功能类-关闭单词页面[去复习]提示',desc:'通过点击提示框以外的其他地方关闭',rules:[{fastQuery:true,position:{left:'width * 0.7231',top:'width * -1.0673'},activityIds:['com.youdao.dict.activity.DictQueryActivity','com.youdao.dict.activity.MainActivity'],matches:'[text=\"已收藏单词一周，快去复习吧\"]',exampleUrls:'https://m.gkd.li/57941037/ab107cc2-98e1-44a2-a15a-0ee0d4925255',snapshotUrls:['https://i.gkd.li/i/14524540','https://i.gkd.li/i/14524817']}]},{key:10,name:'全屏广告-开学福利弹窗',desc:'点击[不要再提醒我]-点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'com.youdao.dict.activity.MainActivity',rules:[{key:0,matches:'[text=\"不要再提醒我\"][checked=false]',exampleUrls:'https://m.gkd.li/57941037/f665b390-2ef6-47be-8246-99632b24c5de',snapshotUrls:'https://i.gkd.li/i/14586448'},{preKeys:0,key:1,matches:'[vid=\"dialog_close_btn\"]',exampleUrls:'https://m.gkd.li/57941037/f665b390-2ef6-47be-8246-99632b24c5de',snapshotUrls:'https://i.gkd.li/i/14586448'}]}]},{id:'com.netease.cloudmusic',name:'网易云音乐',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,excludeActivityIds:['.music.biz.setting.activity.SettingActivity','.music.biz.search.activity.SearchActivity'],matches:'[text*=\"跳过\" || text*=\"Skip\"][text.length<10][width<500 && height<200][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15092772','https://i.gkd.li/i/17892200'],excludeSnapshotUrls:['https://i.gkd.li/i/15092814','https://i.gkd.li/i/16318423']}],order:-10},{key:1,name:'分段广告-卡片广告',desc:'点击[关闭]-点击[直接关闭]/[不感兴趣]',rules:[{key:0,fastQuery:true,activityIds:['.activity.MainActivity','.music.biz.comment.activity.CommentActivity','.music.biz.voice.player.revisionV1.ProgramPlayerActivityV1'],matches:'[vid=\"tag_ad_banner\" || vid=\"adTagView\" || vid=\"closeAction\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13859634','https://i.gkd.li/i/13927753','https://i.gkd.li/i/14549836','https://i.gkd.li/i/14275955','https://i.gkd.li/i/16047087']},{key:1,fastQuery:true,activityIds:'.music.biz.comment.activity.CommentActivity',matches:'@ViewGroup[clickable=true][childCount=2] > ImageView - ViewGroup > TextView[text.length>0] <<n [vid=\"recyclerView\"]',snapshotUrls:'https://i.gkd.li/i/23771616'},{key:2,fastQuery:true,activityIds:'.music.biz.comment.activity.CommentActivity',matches:'@ViewGroup[clickable=true][childCount=1] + ViewGroup[childCount=1] > [text=\"艺人相关\"]',snapshotUrls:'https://i.gkd.li/i/23771678'},{key:90,fastQuery:true,activityIds:['.activity.MainActivity','.music.biz.comment.activity.CommentActivity','.music.biz.voice.player.revisionV1.ProgramPlayerActivityV1'],anyMatches:['[text=\"直接关闭\"][clickable=true]','@[clickable=true] > [text=\"不感兴趣\"]'],snapshotUrls:['https://i.gkd.li/i/13859635','https://i.gkd.li/i/14932659','https://i.gkd.li/i/16047089','https://i.gkd.li/i/23771645']}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'.activity.PlayerActivity',matches:'[vid=\"iv_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/15282417'},{key:1,activityIds:'.music.biz.search.activity.SearchActivity',matches:'[vid=\"adCloseIV\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/16385547'},{key:2,activityIds:'.activity.MainActivity',matches:'[vid=\"v_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23982125'}]},{key:4,name:'全屏广告-弹窗广告',fastQuery:true,rules:[{key:1,action:'back',activityIds:['.activity.MainActivity','.activity.PlayerActivity','.music.biz.rn.activity.LayerReactNativeActivity','.music.biz.comment.activity.CommentActivity'],excludeMatches:'[text=\"当前场景\" || vid=\"mainDrawerContainer\"][visibleToUser=true]',matches:'[vid=\"dsl_dialog_root\" || text^=\"邀您开通VIP\" || text^=\"本周已免费试听\" || text^=\"免费听模式体验中\" || text^=\"续费后，即可畅听\" || text*=\"小组件到桌面\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13804534','https://i.gkd.li/i/13848913','https://i.gkd.li/i/13962214','https://i.gkd.li/i/14036940','https://i.gkd.li/i/15047126','https://i.gkd.li/i/15125892','https://i.gkd.li/i/15244091','https://i.gkd.li/i/20097535','https://i.gkd.li/i/20097609','https://i.gkd.li/i/20115012','https://i.gkd.li/i/22451511','https://i.gkd.li/i/23770986','https://i.gkd.li/i/23770978'],excludeSnapshotUrls:['https://i.gkd.li/i/15404777','https://i.gkd.li/i/20115204','https://i.gkd.li/i/20159204','https://i.gkd.li/i/24157914']}]},{key:5,name:'全屏广告-VIP弹窗',fastQuery:true,rules:[{key:0,action:'back',activityIds:['.music.biz.rn.activity.MainProcessLayerReactNativeActivity','.activity.MainActivity','.activity.PlayListActivity','.music.biz.rn.activity.LayerReactNativeActivity'],matches:['[text=\"支付宝\"][visibleToUser=true]','[text^=\"确认协议并\" || text=\"立即开通\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13189055','https://i.gkd.li/i/13260416','https://i.gkd.li/i/13996787','https://i.gkd.li/i/13230605','https://i.gkd.li/i/14268181','https://i.gkd.li/i/13391498','https://i.gkd.li/i/14045917','https://i.gkd.li/i/14926722','https://i.gkd.li/i/16242200','https://i.gkd.li/i/20097276','https://i.gkd.li/i/20218350'],excludeSnapshotUrls:'https://i.gkd.li/i/20097306'},{key:1,fastQuery:true,activityIds:'com.netease.cloudmusic.music.biz.rn.activity.CashierRNActivity',matches:'[text=\"忍痛离开\"] < @ViewGroup[clickable=true] -n * > [text$=\"VIP可畅享千万曲库\"]',snapshotUrls:'https://i.gkd.li/i/24548104'}]},{key:6,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.activity.MainActivity',matches:['[text*=\"新版本\"]','[text=\"近期不再提示\"]'],snapshotUrls:'https://i.gkd.li/i/13233790',excludeSnapshotUrls:'https://i.gkd.li/i/15092457'},{key:1,activityIds:'.activity.MainActivity',matches:['[vid=\"updateVersionTitle\"][visibleToUser=true]','[vid=\"md_dialog_cm_close_btn\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/8827aa5a-a105-4910-981c-d9ecc036a87d',snapshotUrls:'https://i.gkd.li/i/18492805'}]},{key:14,name:'功能类-扫码后自动点击[授权登录]',rules:[{fastQuery:true,activityIds:'.module.login.LoginPermissionActivity',matches:'[text=\"授权登录\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14830218'}]},{key:16,name:'分段广告-搜索页广告',desc:'该规则触发时会导致输入法收起',fastQuery:true,activityIds:'.music.biz.search.activity.SearchActivity',rules:[{key:0,matches:'[vid=\"adTagView\" || vid=\"adTagViewNew\"][clickable=true]',exampleUrls:'https://e.gkd.li/afb3fc72-7a69-489a-ac5a-7a70f5685667',snapshotUrls:['https://i.gkd.li/i/16357208','https://i.gkd.li/i/16357111']},{preKeys:[0],key:90,matches:'[text=\"直接关闭\"]',exampleUrls:'https://e.gkd.li/1e2b2822-01dd-455f-8991-1b746c61c07c',snapshotUrls:'https://i.gkd.li/i/16357210'}]}]},{id:'com.sina.weibo',name:'微博',groups:[{key:8,name:'全屏广告-弹窗广告',fastQuery:true,rules:[{key:3,activityIds:'com.sina.weibo.feed.MPDialogActivity',matches:'WebView[text=\"Wbox\"] > View[childCount=1] >(1,2) View[childCount=2] > @TextView[clickable=true][visibleToUser=true][childCount=0][index=1][width<200] <<n [vid=\"container\"]',snapshotUrls:['https://i.gkd.li/i/14969848','https://i.gkd.li/i/16944794','https://i.gkd.li/i/19807700']},{key:4,activityIds:'com.sina.weibo.feed.MPDialogActivity',matches:'@Image[text=\"close\"] < View[childCount=4] <2 * <<n [id=\"com.sina.weibo:id/container\"]',snapshotUrls:'https://i.gkd.li/i/14033735'}]},{key:9,name:'权限提示-通知权限',desc:'自动点击暂不开启',fastQuery:true,rules:[{key:0,activityIds:'.notifyguidev2.NotifyGuideV2Activity',matches:'[text=\"暂不开启\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/18342279'}]},{key:14,name:'权限提示-定位权限',fastQuery:true,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,rules:[{key:0,activityIds:['.MainTabActivity','.utils.WeiboDialog$CustomDialog'],matches:'@[text=\"以后再说\"] +2 [text=\"去开启\"]',snapshotUrls:['https://i.gkd.li/i/13218093','https://i.gkd.li/i/13003311']},{key:1,activityIds:'.MainTabActivity',matches:'@[id=\"com.sina.weibo:id/btn_close\"] +2 [text=\"使用您的位置信息\"]',snapshotUrls:'https://i.gkd.li/i/13255595'}]},{key:17,name:'分段广告-信息流广告',desc:'点击关闭-点击[不感兴趣]/[不想看到此类内容]',fastQuery:true,activityIds:['.feed.DetailWeiboActivity','.feed.detailrefactor.DetailPageActivity','.feed.SubCommentActiity','.feed.halfcontainer.HalfContainerPageActivity'],rules:[{key:0,matches:'@[vid=\"ll_close\"] > [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13852321','https://i.gkd.li/i/19526000','https://i.gkd.li/i/21828244','https://i.gkd.li/i/24291704']},{key:1,matches:'[vid=\"corner_marker_view\"] >2 [vid=\"right_top_tag\"]',snapshotUrls:'https://i.gkd.li/i/14210775'},{key:3,matches:['[vid=\"left_img_ad_container\"][visibleToUser=true]','[vid=\"close\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13635551','https://i.gkd.li/i/19525985']},{key:4,matches:'@[vid=\"closeButton\"] > [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6952c2d1-65b5-4419-adb6-ba0f6349801e',snapshotUrls:'https://i.gkd.li/i/19538265'},{key:5,matches:'[vid=\"iv_ad_x\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/58baa39c-c447-4664-8a39-c058497b9495',snapshotUrls:'https://i.gkd.li/i/22275086'},{key:6,matches:'RelativeLayout >7 FrameLayout[childCount=4] > FrameLayout[childCount=1] > @[name$=\"FrameLayout\" || name$=\"ImageView\"][clickable=true][childCount<2][visibleToUser=true][width<50&&height<50] <<n [vid=\"view_recycler\" || vid=\"tweet_list\"]',exampleUrls:'https://e.gkd.li/fc3b2c98-4540-4ec1-94b2-24abf90212c9',snapshotUrls:['https://i.gkd.li/i/21166775','https://i.gkd.li/i/21828269']},{preKeys:[0,1,3,4,5,6],key:90,matchRoot:true,anyMatches:['[text$=\"不感兴趣\"][clickable=true]','@LinearLayout[clickable=true] >2 [text=\"不感兴趣\" || text=\"不想看到此类内容\"]'],snapshotUrls:['https://i.gkd.li/i/13852322','https://i.gkd.li/i/13958782','https://i.gkd.li/i/16785777','https://i.gkd.li/i/14730274','https://i.gkd.li/i/19551451','https://i.gkd.li/i/20710958','https://i.gkd.li/i/21828246']}]},{key:18,name:'评价提示-APP评分弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainTabActivity',matches:'@[text=\"不了，谢谢\"] +4 [text=\"喜欢，给好评\"]',snapshotUrls:'https://i.gkd.li/i/13620220'}]},{key:19,name:'功能类-自动点击查看原图',rules:[{fastQuery:true,activityIds:'com.sina.weibo.photoalbum.imageviewer.ImageViewer',matches:'@LinearLayout >3 [vid=\"tv_dialog_item\"][text^=\"原图\"]',snapshotUrls:'https://i.gkd.li/i/13929119'}]},{key:20,name:'功能类-超话自动签到',fastQuery:true,rules:[{key:0,name:'点击签到',activityIds:'com.sina.weibo.supergroup.SGPageActivity',matches:['ViewGroup[childCount=2] > [text=\"管理\"][visibleToUser=true]','[text=\"签到\" || text=\"Sign in\"] < [vid=\"right_button\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/15092999','https://i.gkd.li/i/15092970','https://i.gkd.li/i/15136801']},{key:1,name:'取消勾选[接收本超话签到提醒推送]',activityIds:'com.sina.weibo.supergroup.pagepop.PagePopActivity',matches:'@[checked=true] < * > [text=\"接收本超话签到提醒推送\"]',snapshotUrls:'https://i.gkd.li/i/15103524'},{key:2,name:'关闭签到成功弹窗',activityIds:'com.sina.weibo.supergroup.pagepop.PagePopActivity',matches:['[text^=\"连续签到\"]','[vid=\"iv_close_v2\"]'],snapshotUrls:['https://i.gkd.li/i/15103524','https://i.gkd.li/i/15136825','https://i.gkd.li/i/15136842']}]},{key:22,name:'功能类-超话一键签到',desc:'点击[一键签到]',rules:[{fastQuery:true,activityIds:'com.sina.weibo.supergroup.generic.GenericChannelActivity',matches:['[text*=\"一键签到\"][visibleToUser=true]','[vid=\"checkinBtn\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/3fad288d-ba21-44ed-8ebe-f9b4cbde1d3c',snapshotUrls:'https://i.gkd.li/i/16420751'}]},{key:23,name:'其他-关闭猪手提示',desc:'点击[取消]',rules:[{fastQuery:true,activityIds:'.MainTabActivity',matches:['[text^=\"猪手超话自动签到失败\"]','[text=\"取消\"]'],exampleUrls:'https://e.gkd.li/92e08aea-ae70-4ea8-be65-442f8e2e423d',snapshotUrls:'https://i.gkd.li/i/16827119'}]},{key:24,name:'功能类-关闭点赞时的验证',rules:[{activityIds:'.geetest.GeetCheckActivityForNet',matches:'Button[text^=\"关闭验证\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7a8ed873-a6e8-4260-9f5c-3ff05d5788db',snapshotUrls:'https://i.gkd.li/i/16827853'}]},{key:25,name:'功能类-关主页自动切换到[关注的人]TAB',actionMaximum:1,rules:[{fastQuery:true,activityIds:'.flowbusiness.commonpage.FlowCommonPageActivity',matches:'@[clickable=true] >2 [text=\"关注的人\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6ef5bbf7-bb11-4cbb-b46b-bdc7c333a617',snapshotUrls:'https://i.gkd.li/i/18423013'}]},{key:26,name:'分段广告-评论区博主内容推荐',desc:'点击关闭-点击[不感兴趣]/[不想看到此类内容]',fastQuery:true,activityIds:['.feed.detailrefactor.DetailPageActivity','.story.gallery.feed.StoryFeedCommentsActivity2'],rules:[{key:0,matches:'@[vid=\"ll_close\"] > [text=\"推荐\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/19551850','https://i.gkd.li/i/19552278']},{preKeys:[0],matchRoot:true,matches:'[text$=\"不感兴趣\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/19551857','https://i.gkd.li/i/19552282','https://i.gkd.li/i/24211723']}]},{key:27,name:'分段广告-评论区荐读',fastQuery:true,activityIds:['.feed.detailrefactor.DetailPageActivity','.feed.DetailWeiboActivity','.feed.halfcontainer.HalfContainerPageActivity'],rules:[{key:0,matches:'@[vid=\"ll_close\"] > [text=\"荐读\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bab872e2-6967-49f5-8443-46af8f225d8f',snapshotUrls:['https://i.gkd.li/i/21828298','https://i.gkd.li/i/24237728','https://i.gkd.li/i/24291674']},{preKeys:[0],matches:'[text$=\"不感兴趣\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4d35d427-f6ab-42bf-a369-65c5b602fcdf',snapshotUrls:'https://i.gkd.li/i/21828292'}]}]},{id:'com.sina.weibolite',name:'微博极速版',groups:[{key:1,name:'分段广告-信息流广告',desc:'点击卡片广告右上角x图标,点击[不感兴趣]',fastQuery:true,activityIds:['com.weico.international.activity.MainFragmentActivity','com.weico.international.ui.search.SearchActivity','com.weico.international.ui.detail.StatusDetailV3Activity'],rules:[{key:0,name:'点击卡片广告右上角x图标',matches:'[vid=\"item_timeline_ad_action\"]',snapshotUrls:['https://i.gkd.li/i/12738110','https://i.gkd.li/i/14996673','https://i.gkd.li/i/23097171']},{preKeys:[0],name:'点击[不感兴趣]',matches:'@View[clickable=true][childCount=1] > TextView[visibleToUser=true][text=\"不感兴趣\"||text$=\"interest\"] <<n [vid=\"design_bottom_sheet\"]',snapshotUrls:['https://i.gkd.li/i/12738132','https://i.gkd.li/i/13727657','https://i.gkd.li/i/14996679']}]},{key:2,name:'评价提示-APP评分弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.weico.international.activity.MainFragmentActivity',matches:'[id=\"com.sina.weibolite:id/ed_btn_negative\"]',snapshotUrls:'https://i.gkd.li/i/13727728'}]}]},{id:'com.weico.international',name:'微博轻享版',groups:[{key:-1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,order:-1,anyMatches:['@[clickable=true][visibleToUser=true] + ViewGroup > [text=\"跳过\"]','@[clickable=true] - [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/14549281','https://i.gkd.li/i/14549328','https://i.gkd.li/i/18792649','https://i.gkd.li/i/20990401']},{key:1,excludeMatches:['@[clickable=true] - [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]','@[clickable=true][visibleToUser=true] + ViewGroup > [text=\"跳过\"]'],matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14661654','https://i.gkd.li/i/14661622']}],order:-10},{key:0,name:'分段广告-信息流广告',desc:'出现在主页,搜索页',fastQuery:true,matchRoot:true,forcedTime:10000,activityIds:['com.google.android.material.bottomsheet.BottomSheetDialog','com.weico.international.activity.MainFragmentActivity','com.weico.international.ui.search.SearchActivity','com.weico.international.ui.detail.StatusDetailV3Activity'],rules:[{key:0,name:'点击卡片广告右上角[x]',matches:'[vid=\"item_timeline_ad_action\"]',snapshotUrls:['https://i.gkd.li/i/12857202','https://i.gkd.li/i/14444744','https://i.gkd.li/i/16667201']},{preKeys:[0],key:1,name:'点击不感兴趣',matches:'@View[clickable=true] > [visibleToUser=true][text=\"不感兴趣\"] <<n [vid=\"design_bottom_sheet\"]',snapshotUrls:['https://i.gkd.li/i/12505755','https://i.gkd.li/i/12505764','https://i.gkd.li/i/14798365','https://i.gkd.li/i/16667202']}]}]},{id:'com.koudai.weidian.buyer',name:'微店',groups:[{key:6,name:'全屏广告-首页红包弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.vdian.android.wdb.main.ui.activity.MainTabsActivity',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] <2 RelativeLayout[childCount=2] < FrameLayout <2 [parent=null]',snapshotUrls:'https://i.gkd.li/i/13646151'}]}]},{id:'com.pleasure.trace_wechat',name:'微拾',groups:[{key:5,name:'分段广告-我的页面卡片广告',desc:'需点击二次弹窗确认',fastQuery:true,activityIds:'com.camellia.trace.activity.MainActivity',rules:[{key:0,name:'点击关闭',matches:'View < @FrameLayout[desc^=\"dislike\"] <<n [id=\"com.pleasure.trace_wechat:id/adsuyi_id_view_response\"]',snapshotUrls:'https://i.gkd.li/i/13479466'},{preKeys:[0],name:'关闭原因\"不感兴趣\"',matches:'@LinearLayout > [id=\"com.byted.pangle:id/tt_item_tv\"][text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13479469'}]},{key:11,name:'全屏广告-弹窗广告',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -2 @View > Image',snapshotUrls:'https://i.gkd.li/i/13479468'}]}]},{id:'com.tencent.mm',name:'微信',groups:[{key:0,name:'分段广告-朋友圈广告',desc:'警告⚠️：该规则有可能会误触，请谨慎开启',activityIds:['.plugin.sns.ui.SnsTimeLineUI','.plugin.sns.ui.improve.ImproveSnsTimelineUI','.plugin.profile.ui.ContactInfoUI'],rules:[{key:0,fastQuery:true,matches:['@LinearLayout[clickable=true] > [text=\"广告\" || text=\"廣告\" || text=\"Sponsored\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13000395','https://i.gkd.li/i/12905837','https://i.gkd.li/i/13791200','https://i.gkd.li/i/16568338']},{key:1,fastQuery:true,actionDelay:300,position:{left:'width * 0.9223',top:'height * 0.5'},anyMatches:['@LinearLayout >2 [text=\"广告\"][visibleToUser=false]','RecyclerView > FrameLayout[childCount=1] > RelativeLayout > FrameLayout > LinearLayout > LinearLayout > LinearLayout > @LinearLayout[childCount=2][getChild(0).getChild(0).text!=null] > LinearLayout[index=1][clickable=false][visibleToUser=false]'],snapshotUrls:['https://i.gkd.li/i/14783802','https://i.gkd.li/i/15531539','https://i.gkd.li/i/19665911'],excludeSnapshotUrls:'https://i.gkd.li/i/19717709'},{key:2,matches:'[name$=\"RecyclerView\"||name$=\"ListView\"] >(1,2) RelativeLayout >3 LinearLayout > LinearLayout > LinearLayout[childCount=2] > LinearLayout[index=1][clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14647413','https://i.gkd.li/i/19633571']},{preKeys:[0,1,2],key:25,name:'点击[关闭]',fastQuery:true,anyMatches:['[text^=\"关闭\" || text*=\"Close\" || text=\"關閉此廣告\"][clickable=true][visibleToUser=true]','@LinearLayout[clickable=true] > [text=\"关闭该广告\" || text*=\"Close\"][visibleToUser=true]','@LinearLayout[index=1][clickable=true] <2 * < * - [text*=\"广告\"]','@[text=\"关闭该广告\"] -2 [text^=\"对这条广告不感兴趣\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13926578','https://i.gkd.li/i/15531274','https://i.gkd.li/i/14207480','https://i.gkd.li/i/15137016','https://i.gkd.li/i/13791202','https://i.gkd.li/i/14783820','https://i.gkd.li/i/15284966','https://i.gkd.li/i/14647839','https://i.gkd.li/i/19666176','https://i.gkd.li/i/19633486']},{preKeys:[25],key:50,name:'点击[关闭]',matches:'[text*=\"关闭\" || text=\"Close\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12663984','https://i.gkd.li/i/12905846','https://i.gkd.li/i/14647940','https://i.gkd.li/i/14783534']},{preKeys:[50],key:75,name:'点击[确认]',fastQuery:true,matches:'@[text=\"确认\"][visibleToUser=true] -2 [text=\"不感兴趣原因\"]',snapshotUrls:'https://i.gkd.li/i/14647940'}]},{key:1,name:'功能类-电脑微信快捷自动登录',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:['.plugin.webwx.ui.ExtDeviceWXLoginUI','.ui.LauncherUI'],matches:['[text=\"登录 Windows 微信\" || text^=\"Log in to Weixin for\"][visibleToUser=true]','[text=\"登录\" || text=\"Log In\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13522625','https://i.gkd.li/i/13522577','https://i.gkd.li/i/22356438']}]},{key:2,name:'功能类-自动授权登录',desc:'自动允许使用头像昵称等',fastQuery:true,actionMaximum:1,rules:[{key:0,activityIds:['.plugin.base.stub.UIEntryStub','.ui.LauncherUI','.plugin.webview.ui.tools.MMWebViewUI','.plugin.webview.ui.tools.SDKOAuthUI'],matches:['[text^=\"获取你的\" || text^=\"取得你的\" || text^=\"你的昵称\"]','[text=\"允许\" || text=\"允許\"]'],snapshotUrls:['https://i.gkd.li/i/12663602','https://i.gkd.li/i/13065462','https://i.gkd.li/i/15271716','https://i.gkd.li/i/16972565','https://i.gkd.li/i/19496823']},{preKeys:[0],activityIds:'.plugin.webview.ui.tools.SDKOAuthOtherUI',matches:['[text=\"申请获得\"][visibleToUser=true]','[text=\"允许\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/24560465'}]},{key:4,name:'功能类-微信读书网页版扫码登录自动授权',matchTime:10000,actionMaximum:1,activityIds:'.plugin.webview.ui.tools.MMWebViewUI',rules:[{key:1,matches:'[text=\"微信读书网页版\"] +3 Button[text=\"登 录\"]',snapshotUrls:'https://i.gkd.li/i/12506197'},{preKeys:[1],key:2,action:'back',matches:'[text=\"登录成功\"]',snapshotUrls:'https://i.gkd.li/i/12506201'}]},{key:5,name:'功能类-自动领取微信红包',desc:'自动领取私聊红包,群聊红包',fastQuery:true,rules:[{key:1,name:'点击别人发的红包',activityIds:['.ui.LauncherUI','.ui.chatting.variants.ChattingMainUI'],matches:'LinearLayout[childCount=1] >2 @FrameLayout[clickable=true] >2 LinearLayout[getChild(1).childCount=1] +2 RelativeLayout > [text=\"微信红包\"]',snapshotUrls:['https://i.gkd.li/i/18134826','https://i.gkd.li/i/24347101'],excludeSnapshotUrls:['https://i.gkd.li/i/18134823','https://i.gkd.li/i/18134833']},{preKeys:[1],key:2,name:'点击红包-开',matchRoot:true,activityIds:'.plugin.luckymoney.ui.LuckyMoney',matches:'@Button[desc=\"开\"] -3 LinearLayout >2 [text$=\"红包\"]',snapshotUrls:['https://i.gkd.li/i/18134828','https://i.gkd.li/i/21177180'],excludeSnapshotUrls:'https://i.gkd.li/i/12567698'},{preKeys:[1,2],name:'从红包结算界面返回',activityIds:'.plugin.luckymoney.ui.LuckyMoney',matches:'@ImageView[desc=\"返回\"] +n LinearLayout >8 [text$=\"红包\"]',snapshotUrls:['https://i.gkd.li/i/18134829','https://i.gkd.li/i/18135031','https://i.gkd.li/i/23825631','https://i.gkd.li/i/24414957']}]},{key:7,name:'功能类-自动选中发送原图',desc:'自动选中底部中间的发送原图，可手动取消勾选',actionMaximum:1,activityIds:['.plugin.gallery.ui.AlbumPreviewUI','.plugin.gallery.ui.ImagePreviewUI'],rules:[{key:1,fastQuery:true,anyMatches:['@[desc=\"未选中,原图,复选框\"][visibleToUser=true] + [text=\"原图\"]','@[desc=\"未选中,原图,复选框\"][visibleToUser=true]'],exampleUrls:['https://e.gkd.li/32dc0943-e85f-416d-bb01-6ed610d4bdd8','https://e.gkd.li/93d41161-ab69-4c2d-83bb-637d7292f5e6'],snapshotUrls:['https://i.gkd.li/i/16987145','https://i.gkd.li/i/16987144','https://i.gkd.li/i/19625049'],excludeSnapshotUrls:['https://i.gkd.li/i/16987141','https://i.gkd.li/i/16987147']}]},{key:9,name:'功能类-自动查看原图',desc:'自动点击底部左侧[查看原图]按钮',activityIds:['.ui.chatting.gallery.ImageGalleryUI','.ui.LauncherUI'],rules:[{key:0,fastQuery:true,anyMatches:['Button[text^=\"查看\"][clickable=true][visibleToUser=true]','Button[clickable=true][text^=\"查看\"][visibleToUser=true]'],exampleUrls:'https://m.gkd.li/57941037/6bb9e68a-43f5-4482-96b1-899cc86fef32',snapshotUrls:['https://i.gkd.li/i/13523031','https://i.gkd.li/i/17698956','https://i.gkd.li/i/19515095','https://i.gkd.li/i/19645122']},{key:1,activityIds:'.ui.LauncherUI',matches:'[text^=\"原图\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25009442'}]},{key:10,name:'开屏广告-微信小程序',fastQuery:true,matchTime:10000,forcedTime:10000,priorityTime:10000,activityIds:['.plugin.appbrand.ui.AppBrandUI','.plugin.appbrand.launching.AppBrandLaunchProxyUI'],rules:[{actionDelay:800,matches:['[text=\"广告\"][visibleToUser=true]','[text=\"跳过\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/12785183','https://i.gkd.li/i/13306883','https://i.gkd.li/i/13407275','https://i.gkd.li/i/15108441']}],order:-10},{key:11,name:'功能类-网页版文件传输助手扫码自动授权',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'.ui.LauncherUI',matches:'[text=\"打开网页版文件传输助手\"] + * > Button[text=\"打开\"]',snapshotUrls:'https://i.gkd.li/i/12793745'}]},{key:17,name:'青少年模式',fastQuery:true,matchTime:20000,actionMaximum:1,activityIds:['.plugin.finder.','.ui.LauncherUI'],rules:[{key:0,matches:'@[text=\"我知道了\"][index=parent.childCount.minus(1)] <n LinearLayout > [text^=\"为呵护未成年人健康成长\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13538145','https://i.gkd.li/i/13575195','https://i.gkd.li/i/14735456','https://i.gkd.li/i/14896723','https://i.gkd.li/i/18135103','https://i.gkd.li/i/19683937']},{key:1,matches:'@[text=\"不再提醒\"][clickable=true] <2 [index=parent.childCount.minus(1)] -n [text^=\"为呵护未成年人健康成长\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24796791'}]},{key:18,name:'功能类-青少年模式自动点击验证密码',desc:'点击“验证密码”以申请临时访问',matchTime:10000,actionMaximum:1,rules:[{key:0,fastQuery:true,activityIds:'.plugin.teenmode.ui.AuthorizationRequestUI',matches:'@LinearLayout[childCount=2] > TextView[text=\"验证密码\"]',snapshotUrls:'https://i.gkd.li/i/13588338'},{key:1,activityIds:'.plugin.webview.ui.tools.MMWebViewUI',matches:'View[desc=\"验证密码\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13631987'}]},{key:19,name:'功能类-订阅号-展开更早的消息',rules:[{key:0,fastQuery:true,activityIds:'.plugin.brandservice.ui.timeline.BizTimeLineUI',matches:'@[clickable=true] > [text=\"展开更早的消息\"]',snapshotUrls:'https://i.gkd.li/i/13790550'},{key:1,matches:'[desc=\"展开更早的消息\"]',snapshotUrls:'https://i.gkd.li/i/13790949'}]},{key:22,name:'功能类-开启青少年模式后的每日验证',desc:'点击\"验证密码\"',rules:[{activityIds:'.plugin.webview.ui.tools.MMWebViewUI',matches:'WebView[childCount=6] View[index=4] > [text=\"验证密码\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14050004'}]},{key:25,name:'局部广告-订阅号消息-推荐文章',desc:'点击关闭',rules:[{activityIds:'.plugin.brandservice.ui.flutter.BizFlutterTLFlutterViewActivity',matches:'View[childCount=2] > View[desc$=\"推​荐​\"][childCount=3] > ImageView[index=2][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14392392'}]},{key:26,name:'功能类-付款后自动点击完成/返回商家',rules:[{key:0,fastQuery:true,activityIds:'.framework.app.UIPageFragmentActivity',matches:'[vid=\"kinda_button_impl_wrapper\"][desc=\"完成\" || desc=\"返回商家\"]',exampleUrls:'https://m.gkd.li/57941037/a5177d9d-6745-443f-baf5-af57153430d8',snapshotUrls:['https://i.gkd.li/i/14399355','https://i.gkd.li/i/14662147','https://i.gkd.li/i/24157874'],excludeSnapshotUrls:'https://i.gkd.li/i/14532946'},{key:1,versionCode:{minimum:2980},activityIds:'.plugin.lite.ui.WxaLiteAppTransparentLiteUI',matches:'Button[desc=\"返回商家\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e7acbb38-c602-4ea4-88ec-7604c3aeae06',snapshotUrls:'https://i.gkd.li/i/24141842'}]},{key:28,name:'分段广告-订阅号消息-视频推荐',desc:'点击[X]-点击[不喜欢此类视频]-点击[确定]',activityIds:'.plugin.brandservice.ui.flutter.BizFlutterTLFlutterViewActivity',rules:[{key:0,name:'点击[X]',matches:'[desc=\"订阅号消息\"] +3 View >2 [visibleToUser=true] - View >3 ImageView[index=2][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/b777c0b1-f8ed-4712-afd6-2e1a72243475',snapshotUrls:'https://i.gkd.li/i/14436176'},{preKeys:0,key:1,name:'点击[不喜欢此类视频]',matches:'[desc=\"不喜欢此类视频\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/39e8b378-9b55-4838-92af-b28f04402ca4',snapshotUrls:'https://i.gkd.li/i/14444654'},{preKeys:1,key:2,name:'点击[确定]',matches:'[desc=\"确定\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/590eb619-9987-4edf-98a8-17146ffeda10',snapshotUrls:'https://i.gkd.li/i/14436190'}]},{key:29,name:'功能类-解锁 Windows 微信',desc:'点击[解锁]',rules:[{fastQuery:true,activityIds:'.plugin.webwx.ui.WebWXUnlockUI',anyMatches:['[text=\"解锁\"][clickable=true][visibleToUser=true]','@[text=\"解锁\"][clickable=true] < LinearLayout -2 [text^=\"解锁\"][visibleToUser=true]'],exampleUrls:'https://m.gkd.li/57941037/85bb6dcd-0d04-46c1-af14-6e4b57ff4dca',snapshotUrls:['https://i.gkd.li/i/14490116','https://i.gkd.li/i/23688962']}]},{key:30,name:'全屏广告-文档页面-腾讯文档APP弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.plugin.webview.ui.tools.MMWebViewUI',matches:'@TextView[clickable=true] + * > [visibleToUser=true][text^=\"使用 APP\"] <<n [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/2228f99e-e0a1-4915-864f-d60e3d8580a6',snapshotUrls:'https://i.gkd.li/i/14533286'}]},{key:31,name:'分段广告-订阅号消息-推荐阅读',desc:'点击关闭',activityIds:'.plugin.brandservice.ui.flutter.BizFlutterTLFlutterViewActivity',rules:[{key:0,matches:'View > Button > View[desc$=\"推​荐​\"] > ImageView[index=1][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/101449500/5b815528-1ca2-4016-930e-a3cfb4e5e7ea',snapshotUrls:'https://i.gkd.li/i/14548701'},{preKeys:[0],key:1,matches:'[desc=\"不看此类内容\"]',snapshotUrls:'https://i.gkd.li/i/14549566'},{preKeys:[1],key:2,matches:'[desc=\"确定\"]',snapshotUrls:'https://i.gkd.li/i/14549567'}]},{key:32,name:'权限提示-权限申请弹窗',desc:'点击取消',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.pluginsdk.permission.PermissionActivity',matches:['[text=\"权限申请\"]','[text=\"取消\"]'],exampleUrls:'https://m.gkd.li/57941037/43632b72-d389-4fe7-9708-dac78e900679',snapshotUrls:'https://i.gkd.li/i/14645385'}]},{key:34,name:'功能类-付款时自动点击[支付]',actionMaximum:1,rules:[{key:0,fastQuery:true,activityIds:'.framework.app.UIPageFragmentActivity',matches:'ViewGroup + ViewGroup > ViewGroup > [vid=\"kinda_button_impl_wrapper\"][desc=\"支付\"]',snapshotUrls:['https://i.gkd.li/i/15144570','https://i.gkd.li/i/15144571','https://i.gkd.li/i/15360745','https://i.gkd.li/i/24157875']},{key:1,matchRoot:true,forcedTime:100000,versionCode:{minimum:2960},activityIds:'.plugin.lite.ui.WxaLiteAppTransparentLiteUI',matches:'[desc^=\"付款方式\"] + Button[desc=\"支付\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23746748'}]},{key:35,name:'分段广告-公众号文章内广告',desc:'注意⚠️：该规则有概率误触，请谨慎开启',activityIds:['.plugin.brandservice.ui.timeline.preload.ui.TmplWebView','.plugin.webview.ui.tools.fts.MMSosWebViewUI','.plugin.webview.ui.tools.MMWebViewUI'],rules:[{key:0,excludeMatches:['[text=\"不感兴趣\" || text=\"与我无关\" || text=\"感谢你的反馈\"][visibleToUser=true]'],matches:'@View[childCount<5][bottom<2000] > [text^=\"广告\"][text.length<4][visibleToUser=true]',exampleUrls:['https://e.gkd.li/e73bb653-cc79-455c-958b-38aff6687c37','https://e.gkd.li/5915f80b-66b9-4441-9d36-3caa3fe1be58'],snapshotUrls:['https://i.gkd.li/i/12642232','https://i.gkd.li/i/13199281','https://i.gkd.li/i/14006180','https://i.gkd.li/i/17093010','https://i.gkd.li/i/16796663','https://i.gkd.li/i/16796725','https://i.gkd.li/i/16798663','https://i.gkd.li/i/15198455','https://i.gkd.li/i/17276697'],excludeSnapshotUrls:['https://i.gkd.li/i/15198464']},{preKeys:[0],key:20,matches:'[text=\"关闭此广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/16796729','https://i.gkd.li/i/17113565']},{preKeys:[0],key:25,excludeMatches:['[text=\"感谢你的反馈\"][visibleToUser=true]','[text=\"关闭此广告\"][visibleToUser=true]'],matches:'[text=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/16796666','https://i.gkd.li/i/16798661','https://i.gkd.li/i/15198459'],excludeSnapshotUrls:['https://i.gkd.li/i/15061424','https://i.gkd.li/i/16796729']},{preKeys:[25],key:50,matches:'[text=\"与我无关\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/16796674','https://i.gkd.li/i/16796732','https://i.gkd.li/i/16798658','https://i.gkd.li/i/15198461']}]},{key:36,name:'功能类-自动点击[查看原视频]',rules:[{fastQuery:true,activityIds:'.ui.chatting.gallery.ImageGalleryUI',matches:'[text^=\"查看原视频\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5332aff9-05bb-4b44-b832-5e2d9b1c1270',snapshotUrls:'https://i.gkd.li/i/16833732'}]},{key:37,name:'全屏广告-小程序弹窗广告',desc:'点击关闭',matchTime:20000,actionCd:300,actionDelay:300,rules:[{fastQuery:true,activityIds:'.plugin.appbrand.ui.AppBrandUI',excludeMatches:'[text=\"跳过\"][visibleToUser=true]',matches:'@ImageView[visibleToUser=true][childCount=0][text=null] < FrameLayout[childCount=1] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] - FrameLayout >4 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/d2b12af6-c204-4da7-8553-4765ef8b8c31',snapshotUrls:['https://i.gkd.li/i/13459614','https://i.gkd.li/i/16943989','https://i.gkd.li/i/16920797'],excludeSnapshotUrls:'https://i.gkd.li/i/16958795'}]},{key:38,name:'功能类-自动语音转文字',desc:'点击语音旁边的转文字',rules:[{fastQuery:true,activityIds:['.ui.LauncherUI','.ui.chatting.ChattingUI','.ui.chatting.variants.ChattingMainUI'],matches:'@RelativeLayout[clickable=true] -2 FrameLayout >2 [desc^=\"语音\" && desc$=\"未播放\"] + [text^=\"0\" || text^=\"1\" || text^=\"2\" || text^=\"3\" || text^=\"4\" || text^=\"5\" || text^=\"6\" || text^=\"7\" || text^=\"8\" || text^=\"9\"]',snapshotUrls:['https://i.gkd.li/i/18135057','https://i.gkd.li/i/24989479'],excludeSnapshotUrls:'https://i.gkd.li/i/18135054'}]},{key:39,name:'功能类-语音/视频通话呼入10秒后自动点击接听',rules:[{matchTime:15000,actionDelay:10000,activityIds:['.plugin.voip.ui.VideoActivity','.ui.LauncherUI'],matches:'Button[desc=\"接听\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fbfea6ba-ce43-4641-a919-9c21fa49dc73',snapshotUrls:['https://i.gkd.li/i/18225086','https://i.gkd.li/i/23295677']}]},{key:40,name:'功能类-点击语音条菜单里的转文字',desc:'点击 长按语音条后弹出的菜单 中的转文字',rules:[{fastQuery:true,activityIds:['.ui.LauncherUI','.ui.chatting.ChattingUI','.ui.chatting.variants.ChattingMainUI'],matches:'@[clickable=true] >2 [text=\"转文字\"]',exampleUrls:'https://e.gkd.li/c35fafc8-9d96-4178-9aac-f16394d2c666',snapshotUrls:['https://i.gkd.li/i/19774491','https://i.gkd.li/i/19792042','https://i.gkd.li/i/25002786']}]},{key:41,name:'功能类-自动接龙',desc:'手动点接龙后点击加号再点击发送',fastQuery:true,activityIds:'.plugin.groupsolitaire.ui.GroupSolitatireEditUI',rules:[{key:0,matches:'@[desc=\"添加\"] -n LinearLayout > [text^=\"由\"][text*=\"发起接龙\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5f446d2a-432f-4dca-9bb7-81eba83713c6',snapshotUrls:'https://i.gkd.li/i/21705413'},{preKeys:[0],matches:'@[text=\"发送\"] < LinearLayout < LinearLayout < LinearLayout - [vid=\"actionbar_up_indicator\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/30f0f903-0a1a-422e-991c-02b7cbedc2da',snapshotUrls:'https://i.gkd.li/i/21705384'}]},{key:42,name:'功能类-自动点击未读消息（头像右上角为数字）',rules:[{fastQuery:true,activityIds:'.ui.LauncherUI',matches:'TextView[childCount=0] - ImageView[childCount=0] < RelativeLayout[childCount=2] < LinearLayout < @LinearLayout[clickable=true][visibleToUser=true] <n ListView <n RelativeLayout < FrameLayout < FrameLayout < FrameLayout < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/23737039'}]},{key:43,name:'功能类-自动点击未读消息（头像右上角为红点）',rules:[{fastQuery:true,activityIds:'.ui.LauncherUI',matches:'ImageView[childCount=0] - ImageView[childCount=0] < RelativeLayout[childCount=2] < LinearLayout < @LinearLayout[clickable=true][visibleToUser=true] <n ListView <n RelativeLayout < FrameLayout < FrameLayout < FrameLayout < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/23737039'}]},{key:44,name:'功能类-自动允许打开外部应用',desc:'点击允许',rules:[{fastQuery:true,activityIds:'.plugin.webview.ui.tools.MMWebViewUI',matches:['[text^=\"即将离开微信\"][visibleToUser=true]','[text=\"允许\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/24161524'}]}]},{id:'com.tencent.weread',name:'微信读书',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,matchTime:30000,activityIds:['.module.bottomSheet.BottomSheetForFragment','.WeReadFragmentActivity'],matches:'[id=\"com.tencent.weread:id/open_notification_close\"]',snapshotUrls:['https://i.gkd.li/i/12642247','https://i.gkd.li/i/13233735']},{key:1,activityIds:'.WeReadFragmentActivity',matches:'[text=\"开启推送通知\"] +3 [clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14190089'}]}]},{id:'com.webank.wemoney',name:'微众银行',groups:[{key:1,name:'全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@[desc=\"关闭\"][clickable=true] +2 Button > [text^=\"立即\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/320f2c46-fd24-45b6-8031-8a4bae46558b',snapshotUrls:'https://i.gkd.li/i/23280589'}]}]},{id:'com.example.maintenancemaster',name:'维护大师',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.example.maintenancemaster:id/advertisement_countdown_ccd\"]',snapshotUrls:'https://i.gkd.li/i/12903877'}],order:-10}]},{id:'com.android.documentsui',name:'文件',groups:[{key:1,name:'功能类-允许第三方应用访问文件夹',desc:'点击允许',rules:[{fastQuery:true,activityIds:'com.android.documentsui.picker.PickActivity',matches:['[text^=\"要允许\"][visibleToUser=true]','[text=\"允许\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/13801468'}]},{key:2,name:'功能类-使用此文件夹',rules:[{fastQuery:true,activityIds:'com.android.documentsui.picker.PickActivity',matches:'[text=\"使用此文件夹\"]',snapshotUrls:'https://i.gkd.li/i/13916082'}]},{key:3,name:'功能类-自动选择排序方式[修改日期（从新到旧）]',rules:[{fastQuery:true,activityIds:'.picker.PickActivity',matches:'[text=\"修改日期（从新到旧）\"][checked=false][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bf621eae-8268-4381-aa46-4161c7811cbe',snapshotUrls:'https://i.gkd.li/i/23096908'}]}]},{id:'com.baidu.newapp',name:'文心一言',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.update.UpdateAlertActivity',matches:'[text=\"立即更新\"] + [text=\"暂不升级\"]',snapshotUrls:'https://i.gkd.li/i/13360280'}]}]},{id:'com.yuanshi.wenxiaobai',name:'问小白',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<80 && height<80] < View[childCount=1] < View[childCount=1] < View[childCount=1] < View[childCount=1] + View[childCount=1] >2 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6efff57b-4697-4a4a-97da-de7e8b8dd7f2',snapshotUrls:'https://i.gkd.li/i/23687188'}]}]},{id:'com.wzwh.bzpaipan',name:'问真八字排盘',groups:[{key:3,name:'全屏广告',rules:[{fastQuery:true,activityIds:'com.qq.e.ads.PortraitADActivity',matches:'@ImageView[clickable=true] < LinearLayout[childCount=1] <2 FrameLayout[childCount=2] < [id=\"android:id/content\"][childCount=1]',snapshotUrls:'https://i.gkd.li/i/13162912'}]}]},{id:'com.woaika.kashen',name:'我爱卡',groups:[{key:1,name:'权限提示-定位权限',desc:'点击\"暂不\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.woaika.kashen.ui.WIKHomeActivity',matches:'[id=\"android:id/button2\"][text=\"暂不\"]',exampleUrls:'https://m.gkd.li/57941037/ae172e3f-42e2-4de2-8bd5-de7eb624c359',snapshotUrls:'https://i.gkd.li/i/14070846'}]},{key:2,name:'权限提示-请求位置、存储权限',desc:'点击\"我知道了\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[vid=\"tvPermissionDescDialogConfirm\"]',exampleUrls:'https://m.gkd.li/57941037/6faf1f01-5b77-414b-91d8-98dcb5673f7c',snapshotUrls:'https://i.gkd.li/i/14070836'}]}]},{id:'com.hihonor.phoneservice',name:'我的荣耀',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.hihonor.phoneservice.main.MainActivity',matches:'[vid=\"ads_cancel\"]',exampleUrls:'https://e.gkd.li/539acb69-5c9c-4c4b-9757-d189b6852f89',snapshotUrls:'https://i.gkd.li/i/16476928'}]},{key:10,name:'权限提示-定位权限',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.hihonor.phoneservice.main.MainActivity',matches:'[text^=\"开启定位权限\"] + [id=\"com.hihonor.phoneservice:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12783134'}]}]},{id:'com.github.eprendre.tingshu',name:'我的听书',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'搜索结果底部/播放页面卡片广告',activityIds:'.ui.search.AggregateSearchActivity',matches:'FrameLayout > FrameLayout[childCount=1] > ImageView[width<80][height<80]',snapshotUrls:'https://i.gkd.li/i/12783466'},{key:1,fastQuery:true,activityIds:'.ui.play.PlayerActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d3d33d4f-4c15-45a0-9e86-0c1ca2ecc7c9',snapshotUrls:['https://i.gkd.li/i/13334850','https://i.gkd.li/i/13446735']},{key:2,fastQuery:true,activityIds:'.ui.play.PlayerActivity',matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] < ViewGroup[childCount=1] <2 ViewGroup - ViewGroup >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/055cfec1-d022-4e46-83f3-bc4c2860f919',snapshotUrls:'https://i.gkd.li/i/23407169'},{key:3,fastQuery:true,activityIds:'.ui.play.PlayerActivity',matches:'@[id=\"cj.mobile.wm.allmodules:id/wm_express_close_iv\"] - LinearLayout > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/0174efc4-5eb6-4224-a213-e5c46d421a16',snapshotUrls:'https://i.gkd.li/i/23475820'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,name:'快手广告',fastQuery:true,activityIds:'com.github.eprendre.tingshu.ui.SplashActivity',matches:['[text=\"广告\"]','@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]'],snapshotUrls:'https://i.gkd.li/i/13625303'}]},{key:3,name:'分段广告-播放页卡片广告',desc:'点击关闭-点击不感兴趣',rules:[{key:1,fastQuery:true,activityIds:'.ui.play.PlayerActivity',matches:'@[desc=\"close\"][visibleToUser=true] + [desc=\"ad_logo\"] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/357bf940-7a93-4769-8c6d-480985b72901',snapshotUrls:'https://i.gkd.li/i/17892446'},{key:2,fastQuery:true,activityIds:'.ui.play.PlayerActivity',matches:'@[text=\"反馈\"] <2 View + View >3 [visibleToUser=true][text=\"广告\"] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/664d87f3-9571-4f48-ae01-4cd2a2634bc4',snapshotUrls:'https://i.gkd.li/i/18057482'},{key:3,fastQuery:true,activityIds:'.ui.play.PlayerActivity',matches:'@Image[childCount=0][visibleToUser=true][width<50 && height<50] < View[childCount=1] <n View >4 [visibleToUser=true][text=\"广告\"] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/a2408a2d-7d84-4658-b660-ce8a4c849190',snapshotUrls:['https://i.gkd.li/i/18058170','https://i.gkd.li/i/18095619']},{preKeys:[1,2,3],fastQuery:true,activityIds:['com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T','.ui.play.PlayerActivity'],matches:'@[clickable=true] > [text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/7ce6d9c4-c77a-4655-91c2-97e1987f0914',snapshotUrls:['https://i.gkd.li/i/17892449','https://i.gkd.li/i/18057440','https://i.gkd.li/i/18058170']}]}]},{id:'com.wujie.connect',name:'无界趣连',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[vid=\"no_update_tv\"]',snapshotUrls:'https://i.gkd.li/i/14296122'}]}]},{id:'cn.com.ruijie.magicbox',name:'无线魔盒',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.com.ruijie.wifibox.activity.MainActivity',matches:'@ImageView[id=\"cn.com.ruijie.magicbox:id/imageView_close\"] +(2) RelativeLayout > LinearLayout > [text*=\"新版本\"]',snapshotUrls:'https://i.gkd.li/i/12642359'}]}]},{id:'com.cmi.jegotrip',name:'无忧行',groups:[{key:2,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.BottomTabsActivity',matches:'[id=\"com.cmi.jegotrip:id/ig_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13631904'}]},{key:3,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.cmi.jegotrip.ui.BottomTabsActivity',matches:['[text=\"申请定位权限说明\"]','[id=\"com.cmi.jegotrip:id/btn_cancel\"]'],snapshotUrls:'https://i.gkd.li/i/13232766'}]},{key:4,name:'权限提示-权限申请弹窗',desc:'点击[取消]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'pub.devrel.easypermissions.AppSettingsDialogHolderActivity',matches:['[text=\"权限申请\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/16233246'}]}]},{id:'com.hxzd.wcf',name:'五寸方',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['com.hxzd.wcf.ui.MainActivity','.ui.SplashActivity'],matches:'[vid=\"btn_close\"]',exampleUrls:'https://e.gkd.li/be986139-cdbd-4dc7-a52f-6cb1e1a8061c',snapshotUrls:['https://i.gkd.li/i/14155547','https://i.gkd.li/i/16828682']}]}]},{id:'com.ss.android.article.video',name:'西瓜视频',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.SplashActivity',matches:'@[desc=\"关闭\"] - LinearLayout > [text=\"立即升级\"]',snapshotUrls:'https://i.gkd.li/i/13328430'}]},{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.SplashActivity',matches:['[text=\"开启推送通知\"]','[text=\"暂不开启\"]'],snapshotUrls:'https://i.gkd.li/i/13456568'}]},{key:6,name:'全屏广告-红包弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ss.android.article.video.activity.SplashActivity',matches:'@FlattenUIImage[clickable=true] -2 [text=\"开心收下\"]',snapshotUrls:'https://i.gkd.li/i/13620299'}]}]},{id:'com.xwg.cc',name:'希望谷',groups:[{key:1,name:'全屏广告',rules:[{fastQuery:true,activityIds:'.ui.other.YLHAdvertActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/ed6e343a-7a53-4d22-84b8-a2da1da5b241',snapshotUrls:'https://i.gkd.li/i/23228410'}]}]},{id:'com.readunion.ireader',name:'息壤阅读',groups:[{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.union.modulehome.ui.MainActivity',matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8192872f-b071-450b-aea7-ec3ce62fee95',snapshotUrls:'https://i.gkd.li/i/16790805'}]}]},{id:'com.xfani.app',name:'稀饭动漫',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.xfani.app.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13188550'}]}]},{id:'com.daimajia.gold',name:'稀土掘金',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:['[text=\"发现新版本\"]','[id=\"com.daimajia.gold:id/iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/13498703'}]}]},{id:'com.ximalaya.ting.android',name:'喜马拉雅',groups:[{key:1,name:'局部广告-播放页广告',rules:[{key:3,fastQuery:true,activityIds:'.host.activity.MainActivity',matches:'@[visibleToUser=true] < ViewGroup[childCount=1] - ViewGroup[childCount=6] > [text=\"广告\"] ',exampleUrls:'https://e.gkd.li/bbf93e2c-08b8-4155-b82c-89a629a62737',snapshotUrls:'https://i.gkd.li/i/18500523'},{key:4,fastQuery:true,activityIds:'.host.activity.MainActivity',matches:'[vid=\"main_buy_view_yellow_zone_btn_close\" || vid=\"main_play_ad_close_real\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bf820eed-00ad-47a0-9581-8cdb3d76bde5',snapshotUrls:['https://i.gkd.li/i/18683999','https://i.gkd.li/i/24330967']}]},{key:4,name:'分段广告-信息流广告',desc:'点击关闭-点击屏蔽',fastQuery:true,activityIds:['.host.activity.MainActivity','.adsdk.view.DislikeDialog.DislikeBottomDialog'],rules:[{key:0,matches:'[vid=\"xm_ad_close_real\" || vid=\"main_close_layout\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/17112326','https://i.gkd.li/i/17112313']},{preKeys:[0],matches:'@[clickable=true] > [text=\"屏蔽\" || text=\"直接关闭\" || text=\"不喜欢此内容\"]',snapshotUrls:['https://i.gkd.li/i/13260487','https://i.gkd.li/i/13275928','https://i.gkd.li/i/17111444','https://i.gkd.li/i/17111452','https://i.gkd.li/i/24589005']}]},{key:7,name:'青少年模式',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.host.activity.MainActivity',matches:['[text*=\"青少年模式\"][id=\"com.ximalaya.ting.android:id/host_btn_set\"]','[id=\"com.ximalaya.ting.android:id/host_dialog_close\"]'],snapshotUrls:'https://i.gkd.li/i/12506209'}]},{key:10,name:'全屏广告-首页-专辑订阅推荐弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ximalaya.ting.android.host.activity.MainActivity',matches:'[text=\"你可能感兴趣的专辑\"] + [id=\"com.ximalaya.ting.android:id/main_iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13251713'}]},{key:11,name:'全屏广告-弹窗广告',rules:[{fastQuery:true,activityIds:'com.ximalaya.ting.android.host.activity.MainActivity',matches:'@[id=\"com.ximalaya.ting.android:id/host_close_firework\"] +2 [id=\"com.ximalaya.ting.android:id/host_firework_ad_tag\"]',snapshotUrls:'https://i.gkd.li/i/13263421'}]},{key:12,name:'权限提示-通知权限',desc:'取消推送通知',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.host.activity.MainActivity',matches:['[text*=\"通知权限\"][visibleToUser=true]','[text=\"取消\" || text=\"暂不开启\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/ab40c096-d024-4b7c-9c6f-245beafd373a',snapshotUrls:['https://i.gkd.li/i/13389145','https://i.gkd.li/i/18391977','https://i.gkd.li/i/20499323']}]},{key:13,name:'全屏广告-免流提示',desc:'关闭[开免流送会员]弹窗',rules:[{fastQuery:true,activityIds:'.host.activity.MainActivity',matches:'[vid=\"host_iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2a7e189b-b935-4bbd-9672-c18f2bf454e9',snapshotUrls:'https://i.gkd.li/i/18326083'}]}]},{id:'com.ximalaya.ting.lite',name:'喜马拉雅极速版',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image < View + View + View > View > View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13218286'}]},{key:2,name:'全屏广告-小说推荐弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ximalaya.ting.android.host.activity.MainActivity',matches:'[id=\"com.ximalaya.ting.lite:id/main_iv_novel_back\"]',snapshotUrls:'https://i.gkd.li/i/13229127'}]},{key:3,name:'全屏广告-支付宝提现弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ximalaya.ting.android.host.activity.MainActivity',matches:'[id=\"com.ximalaya.ting.lite:id/main_login_guide_close\"]',snapshotUrls:'https://i.gkd.li/i/13256447'}]},{key:4,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ximalaya.ting.android.host.activity.WelComeActivity',matches:'[text=\"立即开启\"] + [id=\"com.ximalaya.ting.lite:id/host_dialog_cancel_iv\"]',snapshotUrls:'https://i.gkd.li/i/13256505'}]}]},{id:'com.miui.securityadd',name:'系统服务组件',groups:[{key:1,name:'全屏广告-游戏加速弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.miui.gamebooster.GameBoosterRichWebActivity',matches:'[text=\"活动图片\"] +2 @Image[clickable=true][childCount=0][visibleToUser=true] <<n [vid=\"content_view\"]',snapshotUrls:['https://i.gkd.li/i/13914659','https://i.gkd.li/i/14668629']}]}]},{id:'com.android.updater',name:'系统更新',groups:[{key:0,name:'功能类-不开启自动更新',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.MainActivity','.UpdateActivity'],matches:['[vid=\"alertTitle\"][text=\"开启智能更新\" || text=\"Install automatically?\"]','[id=\"android:id/button2\"][text=\"暂不开启\" || text=\"No\"]'],snapshotUrls:['https://i.gkd.li/i/15386937','https://i.gkd.li/i/15386869','https://i.gkd.li/i/18469146']}]},{key:1,name:'功能类-流量更新点击继续下载',rules:[{fastQuery:true,activityIds:'com.android.updater.UpdateActivity',matches:['[text^=\"您当前正在使用数据网络，继续下载可能会产生流量费用\"]','[text=\"继续下载\"]'],snapshotUrls:'https://i.gkd.li/i/23182185'}]},{key:2,name:'功能类-不开启流量自动更新',rules:[{fastQuery:true,activityIds:'com.android.updater.UpdateActivity',matches:['[text=\"开启数据网络自动下载\"]','[text=\"不开启\"]'],snapshotUrls:'https://i.gkd.li/i/23182175'}]}]},{id:'com.android.systemui',name:'系统界面',groups:[{key:1,name:'功能类-自动允许网易云音乐共享整个屏幕',fastQuery:true,activityIds:'.mediaprojection.permission.MediaProjectionPermissionActivity',rules:[{key:1,matches:['[text=\"要与“网易云音乐”共享屏幕吗？\"]','[vid=\"screen_share_mode_spinner\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23451390'},{preKeys:[1],key:2,matches:'@[clickable=true] > [text=\"共享整个屏幕\"]',snapshotUrls:'https://i.gkd.li/i/23451403'},{preKeys:[2],key:3,matches:'Button[text=\"共享屏幕\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/23451416'}]},{key:2,name:'功能类-自动允许白描共享整个屏幕',fastQuery:true,activityIds:'.mediaprojection.permission.MediaProjectionPermissionActivity',rules:[{key:1,matches:['[text=\"要与“白描”共享屏幕吗？\"]','[vid=\"screen_share_mode_spinner\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23451390'},{preKeys:[1],key:2,matches:'@[clickable=true] > [text=\"共享整个屏幕\"]',snapshotUrls:'https://i.gkd.li/i/23451403'},{preKeys:[2],key:3,matches:'Button[text=\"共享屏幕\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/23451416'}]},{key:3,name:'功能类-自动允许QQ音乐共享整个屏幕',fastQuery:true,activityIds:'.mediaprojection.permission.MediaProjectionPermissionActivity',rules:[{key:1,matches:['[text=\"要与“QQ音乐”共享屏幕吗？\"]','[vid=\"screen_share_mode_spinner\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23451390'},{preKeys:[1],key:2,matches:'@[clickable=true] > [text=\"共享整个屏幕\"]',snapshotUrls:'https://i.gkd.li/i/23451403'},{preKeys:[2],key:3,matches:'Button[text=\"共享屏幕\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/23451416'}]}]},{id:'com.xiachufang',name:'下厨房',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[vid=\"skip_container\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5f3509d5-0b0b-4d79-b0e6-275a591ef2f5',snapshotUrls:'https://i.gkd.li/i/18587428'},{key:1,fastQuery:true,matches:'([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]) || ([visibleToUser=true][text*=\"跳过\"][text.length<10][width<500 && height<200])',exampleUrls:'https://e.gkd.li/5c6579f4-77bb-4970-851f-087c2f86d6ad',snapshotUrls:['https://i.gkd.li/i/19724959','https://i.gkd.li/i/19724417']}],order:-10},{key:1,name:'局部广告-卡片广告',rules:[{key:1,fastQuery:true,activityIds:'com.xiachufang.activity.recipe.RecipeDetailActivity',matches:'[id=\"com.xiachufang:id/ad_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13348710'},{key:2,fastQuery:true,activityIds:'com.xiachufang.activity.recipe.RecipeDetailActivity',matches:'[id=\"com.xiachufang:id/jad_feed_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13363079'},{key:3,fastQuery:true,activityIds:'com.xiachufang.activity.recipe.RecipeDetailActivity',matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13454534'},{key:4,fastQuery:true,activityIds:'com.xiachufang.activity.recipe.RecipeDetailActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13484117'},{key:5,fastQuery:true,activityIds:'.activity.recipe.RecipeDetailActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout +2 FrameLayout[childCount=2] > LinearLayout[childCount=2] > [text^=\"立即\"]',exampleUrls:'https://e.gkd.li/f9b63d84-3363-4330-93b9-156d6f3d3d32',snapshotUrls:'https://i.gkd.li/i/18249193'}]},{key:2,name:'其他-厨房问卷',desc:'点击关闭',rules:[{key:1,fastQuery:true,activityIds:'com.xiachufang.activity.recipe.RecipeDetailActivity',matches:'@[desc=\"关闭\"] - [text^=\"厨房问卷\"]',snapshotUrls:'https://i.gkd.li/i/13363042'}]}]},{id:'com.wan.tools',name:'下载工具箱',groups:[{key:1,name:'通知提示-公告弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.one.downloadtools.ui.activity.HomeActivity',matches:'LinearLayout[childCount=2] > @[text=\"取消\"] + [text=\"确认\"]',snapshotUrls:'https://i.gkd.li/i/13392027'}]},{key:2,name:'功能类-自动识别解析链接',rules:[{fastQuery:true,activityIds:'com.one.downloadtools.ui.activity.HomeActivity',matches:'[text=\"识别解析\"]',snapshotUrls:'https://i.gkd.li/i/13392085'}]},{key:3,name:'全屏广告-开通会员弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.one.downloadtools.ui.activity.HomeActivity',matches:['[text^=\"开通会员\"]','[text=\"暂不\"]'],snapshotUrls:'https://i.gkd.li/i/13392112'}]}]},{id:'com.android.providers.downloads.ui',name:'下载管理',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.DownloadList',matches:'@[text=\"以后再说\"] + [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/13631769'}]}]},{id:'com.xianfengniao.vanguardbird',name:'先锋鸟',groups:[{key:0,name:'功能类-今日任务自动点击签到',desc:'首页-今日任务-点击签到',fastQuery:true,activityIds:'.ui.common.activity.MainActivity',rules:[{key:1,matches:'[text=\"签到\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24839618'},{preKeys:[1],matches:'[vid=\"tv_cancel\"]',snapshotUrls:'https://i.gkd.li/i/24839655'}]},{key:1,name:'功能类-个人页面自动点击签到',desc:'个人页点击签到',rules:[{fastQuery:true,activityIds:'.ui.common.activity.MainActivity',matches:'@[clickable=true] > [text=\"点击签到\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24839732'}]}]},{id:'com.taobao.idlefish',name:'闲鱼',groups:[{key:1,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostTransparencyActivity',matches:'@ImageView[clickable=true][desc=null] < [desc^=\"开启系统通知\"]',snapshotUrls:'https://i.gkd.li/i/13538351'}]},{key:2,name:'权限提示-手机信息权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.maincontainer.activity.MainActivity',matches:['[text*=\"手机信息权限\"]','[text=\"取消\"]'],exampleUrls:'https://e.gkd.li/81e3e4d8-f297-4476-b22c-73f0b97879ee',snapshotUrls:'https://i.gkd.li/i/13620277'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.maincontainer.activity.MainActivity',matches:'[text=\"立即升级\"] -2 [text=\"暂不升级\"]',snapshotUrls:'https://i.gkd.li/i/13832272'}]},{key:4,name:'全屏广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.taobao.idlefish.maincontainer.activity.MainActivity',matches:'WebView[text=\"Rax App\"] > [id=\"root\"] >(3,6) View[index=parent.childCount.minus(1)][clickable=true]',snapshotUrls:['https://i.gkd.li/i/14551046','https://i.gkd.li/i/24981766']},{key:1,fastQuery:true,activityIds:'com.taobao.idlefish.search_implement.SearchResultActivity',matches:'@TextView[width<250 && height<250] - [childCount=0][text=\"收下红包\"] <<n [vid=\"fish_layer_container_id\"]',snapshotUrls:'https://i.gkd.li/i/23125419'},{key:2,name:'夜市氛围广告',fastQuery:true,activityIds:'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostActivity',matches:'@TextView[width<210 && height<210][clickable=true] <<n WebView[childCount!=0][text=\"夜市氛围弹框\"] <<n [vid=\"fish_layer_container_id\"]',snapshotUrls:'https://i.gkd.li/i/23183586'}]},{key:6,name:'功能类-自动点击[查看原图]',rules:[{activityIds:'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostActivity',matches:'[desc=\"查看原图\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/12b60303-4fb8-4786-b636-4efef10f3d78',snapshotUrls:'https://i.gkd.li/i/15463399'}]},{key:7,name:'功能类-关闭小额免密支付',rules:[{fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:'@CheckBox[clickable=true][checked=true] < * - [text$=\"免密支付\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/23455398','https://i.gkd.li/i/23455378']}]}]},{id:'com.coloros.gallery3d',name:'相册',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.MainActivity',matches:'[text=\"更新\"] -2 [text=\"取消\"]',exampleUrls:'https://m.gkd.li/47232102/0dae9f4b-8432-4cf4-b648-07ae17cdece2',snapshotUrls:'https://i.gkd.li/i/13554797'}]},{key:6,name:'功能类-开启相册同步弹窗',desc:'点击忽略',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.coloros.gallery3d.app.MainActivity',matches:'[text=\"开启相册自动同步，保障相册数据安全\"] + [text=\"忽略\"]',snapshotUrls:'https://i.gkd.li/i/13637185'}]}]},{id:'com.whpe.qrcode.hunan_xiangtan',name:'湘潭出行',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'快手广告',fastQuery:true,activityIds:'com.whpe.qrcode.hunan_xiangtan.MainActivity',matches:'[id=\"com.whpe.qrcode.hunan_xiangtan:id/interact_ad_root\"] > [id=\"com.whpe.qrcode.hunan_xiangtan:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13476265'}]}]},{id:'com.oray.sunlogin',name:'向日葵远程控制',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[vid=\"tobid_splash_skip_text\" || vid=\"ms_skipView\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f41b0367-9161-4329-987d-b2d0ad9ec233',snapshotUrls:['https://i.gkd.li/i/17004919','https://i.gkd.li/i/22056539']},{key:1,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22861457'},{key:2,fastQuery:true,matches:'@View[clickable=true][childCount=0][visibleToUser=true] +2 LinearLayout >2 [vid=\"sig_ad_privacy_ll\"]',snapshotUrls:'https://i.gkd.li/i/22863334'}],order:-10},{key:0,name:'全屏广告-瓜子会员弹窗',desc:'点击右上角[关闭]',rules:[{fastQuery:true,activityIds:['com.oray.sunlogin.application.Main','.dialog.ShareDialog'],matches:'[id=\"com.oray.sunlogin:id/close\"][text=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/13195950','https://i.gkd.li/i/12910411','https://i.gkd.li/i/13197454']}]},{key:1,name:'更新提示-版本更新',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.application.Main',matches:'[text=\"立即更新\"] <2 * > [id=\"com.oray.sunlogin:id/button_cancel\"][text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13195560'}]},{key:2,name:'分段广告-卡片广告',fastQuery:true,activityIds:'.application.Main',rules:[{key:0,action:'clickCenter',matches:'[id=\"com.oray.sunlogin:id/fl_close_advertise\" || vid=\"iv_dislike\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2cad526b-1691-45e9-826b-eb92299cb8ee',snapshotUrls:['https://i.gkd.li/i/13207785','https://i.gkd.li/i/17159821']},{preKeys:[0],anyMatches:['@[clickable=true] > [text=\"不感兴趣\"][clickable=false][visibleToUser=true]','[text=\"不感兴趣\"][clickable=true][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/55f927c7-edb5-4324-a73a-ad6dfa090eb6',snapshotUrls:['https://i.gkd.li/i/22865433','https://i.gkd.li/i/22941348']}]},{key:3,name:'功能类-退出app提示',rules:[{fastQuery:true,matches:'[text=\"是否确认退出向日葵？\"] + LinearLayout > [vid=\"button_ok\"]',snapshotUrls:'https://i.gkd.li/i/13927148'}]},{key:4,name:'全屏广告-远程控制结束后的广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.application.Main',matches:'@[vid=\"close\"][visibleToUser=true] - [vid=\"ll_remote_end\"]',exampleUrls:'https://e.gkd.li/104ba188-b4cd-4922-b27e-f654085eb163',snapshotUrls:'https://i.gkd.li/i/17782893'}]}]},{id:'com.xiaomi.scanner',name:'小爱视觉',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.ScanActivity',matches:'@[text=\"以后再说\"] + [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/14332513'}]}]},{id:'com.xiaomi.mico',name:'小爱音箱',groups:[{key:1,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:'[id=\"com.xiaomi.mico:id/adImage\"] + [id=\"com.xiaomi.mico:id/ivCloseAd\"]',snapshotUrls:'https://i.gkd.li/i/12745621'}]},{key:2,name:'权限提示-请求开启定位权限弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:['[text*=\"开启位置服务\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/15284753'}]}]},{id:'com.xbxxhz.box',name:'小白学习打印',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,name:'红包弹窗',fastQuery:true,activityIds:'com.mango.login.main.MainAct',matches:'[vid=\"dg_dialog_frag_ads_popup_x\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/9137cb2d-fb8d-4782-b3c9-88b89b79c8a0',snapshotUrls:'https://i.gkd.li/i/14433386'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@View +4 [text=\"反馈\"]',exampleUrls:'https://m.gkd.li/57941037/1fa3e6e6-ce24-42a6-a4af-911eed7392e1',snapshotUrls:'https://i.gkd.li/i/14459191'},{key:2,fastQuery:true,activityIds:'com.mango.appfile.print_finish.PrintFinishAct',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://m.gkd.li/57941037/b0c3be3a-64a7-477e-a022-8a503ebd2cf6',snapshotUrls:'https://i.gkd.li/i/14741407'}]},{key:2,name:'更新提示',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mango.bridge.ui.update.AppUpdateTransAct',matches:'[vid=\"base_uav3_dlg_hide\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/24192680'}]}]},{id:'com.ixyzh.question',name:'小包搜题',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'com.ixyzh.question.HomeActivity',matches:'@ImageView[clickable=true][desc^=\"close\"] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/eced433b-0fd5-4999-90de-45aab80c0b51',snapshotUrls:'https://i.gkd.li/i/16661116'},{key:1,activityIds:'com.ixyzh.question.ui.fragments.my.MyDownloadActivity',matches:'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][visibleToUser=true][text=null] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/ab77a0a8-14df-4d73-99e7-a1428965f2dd',snapshotUrls:'https://i.gkd.li/i/16661119'},{key:2,activityIds:'com.ixyzh.question.ui.exercise.ExerciseActivity',matches:'@View[clickable=true] < FrameLayout[desc^=\"close\"] + FrameLayout >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/3dc83ae2-72f0-4660-b175-0610765fc6ec',snapshotUrls:'https://i.gkd.li/i/16661120'}]}]},{id:'run.xbud.android',name:'小步点',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'快手广告',activityIds:'run.xbud.android.mvp.ui.other.MainActivity',matches:'[id=\"run.xbud.android:id/ksad_tk_view\"] >n @ViewGroup[clickable=true] > ImageView',snapshotUrls:['https://i.gkd.li/i/12777133','https://i.gkd.li/i/12777134']},{key:1,name:'腾讯广告',fastQuery:true,activityIds:'run.xbud.android.mvp.ui.other.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/13296371'},{key:2,name:'京东广告',fastQuery:true,activityIds:'run.xbud.android.mvp.ui.other.MainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/13296398'},{key:3,name:'字节广告-1',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13414538'},{key:4,name:'字节广告-2',fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[id=\"com.byted.pangle:id/tt_reward_full_count_down_after\"]',snapshotUrls:'https://i.gkd.li/i/13414544'}]}]},{id:'com.realtech.xiaocan',name:'小蚕霸王餐',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.realtech.xiaocan.MainActivity',matches:'View[childCount=3] > View + ImageView + ImageView[clickable=true][childCount=0]',snapshotUrls:'https://i.gkd.li/i/13694864'}]},{key:2,name:'功能类-签到成功弹窗',desc:'点击[关闭]按钮',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.realtech.xiaocan.MainActivity',matches:'[id=\"android:id/content\"] >5 View[childCount=6] > ImageView[index=5][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14290847'}]}]},{id:'com.xiaoe.client',name:'小鹅通',groups:[{key:1,name:'更新提示-版本更新弹窗',desc:'点击暂不更新',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaoe.app.ui.main.XiaoeMainActivity',matches:'FrameLayout[vid=\"centerPopupContainer\"] [text=\"暂不更新\"]',snapshotUrls:'https://i.gkd.li/i/13832282'}]}]},{id:'com.xiaoenai.app',name:'小恩爱',groups:[{key:6,name:'全屏广告',matchTime:15000,actionMaximum:1,resetMatch:'app',rules:[{key:1,fastQuery:true,activityIds:'.presentation.home.view.activity.HomeActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/3997eac2-4b0d-4adc-a00c-d7551ea4f364',snapshotUrls:'https://i.gkd.li/i/13728018'},{key:2,fastQuery:true,activityIds:'com.mzd.feature.launcher.view.activity.LauncherActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/e11364ec-62dc-483b-b8c9-28feab2563fb',snapshotUrls:'https://i.gkd.li/i/13867878'}]},{key:7,name:'局部广告-信息流广告',rules:[{name:'字节广告SDK',fastQuery:true,activityIds:'com.xiaoenai.app.presentation.home.view.activity.HomeActivity',matches:'@ImageView[clickable=true][width<90][height<90] -3 ImageView <<n [id=\"com.xiaoenai.app:id/view_ad_tpl\"]',snapshotUrls:'https://i.gkd.li/i/13728026'}]}]},{id:'com.xiaofeiji.app.disk',name:'小飞机网盘',groups:[{key:1,name:'分段广告',desc:'点击关闭-点击不感兴趣',rules:[{key:0,activityIds:'com.xiaofeiji.app.disk.MainActivity',matches:'@Image[visibleToUser=true] < View + View >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13857392'},{preKeys:[0],key:1,fastQuery:true,activityIds:'com.xiaofeiji.app.disk.MainActivity',matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13857537'}]}]},{id:'com.max.xiaoheihe',name:'小黑盒',groups:[{key:1,name:'功能类-签到成功弹窗',desc:'返回关闭弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',matches:'[text*=\"签到成功\"][text.length<10]',snapshotUrls:['https://i.gkd.li/i/13421535','https://i.gkd.li/i/15048252']}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{name:'收藏帖子后底部推荐关注卡片',fastQuery:true,activityIds:'com.max.xiaoheihe.module.bbs.post.ui.activitys.WebNewsPostPageActivity',matches:'[vid=\"iv_notify_close\"]',exampleUrls:'https://m.gkd.li/57941037/b7c25b6e-cc77-4bcc-a477-23b3de74c61f',snapshotUrls:'https://i.gkd.li/i/14914139'}]},{key:3,name:'功能类-自动点击查看原图',rules:[{fastQuery:true,activityIds:['.module.bbs.post.ui.activitys.WebNewsPostPageActivity','.module.bbs.post.ui.activitys.PicturePostPageActivity'],matches:'[vid=\"tv_original\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f7222b21-7037-4614-95ab-cff19ee15d38',snapshotUrls:['https://i.gkd.li/i/16646832','https://i.gkd.li/i/17574462'],excludeSnapshotUrls:'https://i.gkd.li/i/22377026'}]}]},{id:'com.didi.live.spring',name:'小红帽',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.qennnsad.aknkaksd.presentation.ui.MainContainerActivity',matches:'[vid=\"dialog_hall_iv_close\"]',exampleUrls:'https://m.gkd.li/57941037/0d0a2a0a-b9de-4f30-9e25-a0e3b3c111d6',snapshotUrls:'https://i.gkd.li/i/14341955'}]}]},{id:'com.xingin.xhs',name:'小红书',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,excludeActivityIds:['com.xingin.alioth.search.GlobalSearchActivity','com.xingin.growth.ob.FloatingObPageActivity','com.xingin.matrix.notedetail.NoteDetailActivity'],excludeMatches:'[text=\"首页\" || text=\"选择兴趣推荐更精准\"][visibleToUser=true]',matches:'[text*=\"跳过\" || text^=\"Skip Ad\"][text.length<10][!(vid=\"tv_user_name\")][visibleToUser=true]',exampleUrls:'https://e.gkd.li/9733ada7-4961-4a9f-b48d-3398ecd05508',snapshotUrls:['https://i.gkd.li/i/17452158','https://i.gkd.li/i/22951606'],excludeSnapshotUrls:['https://i.gkd.li/i/19035037','https://i.gkd.li/i/20585457','https://i.gkd.li/i/21937254']},{key:1,matches:'[vid=\"splash_count_down_view\"]',exampleUrls:'https://e.gkd.li/6ed22307-ce1d-479e-8a8d-a6fe4ffa614c',snapshotUrls:['https://i.gkd.li/i/17109105','https://i.gkd.li/i/17108010']}],order:-10},{key:1,name:'权限提示-通知权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['.index.v2.IndexActivityV2','.notification.NotificationAuthorizationTranslucentActivity','com.xingin.matrix.notedetail.r10.comment.r10.NoteCommentActivity','com.xingin.authorization.NotificationAuthorizationTranslucentActivity'],matches:'@ImageView[clickable=true][visibleToUser=true] - LinearLayout > [text^=\"打开通知\" || text^=\"Enable notifications\"]',snapshotUrls:['https://i.gkd.li/i/13195753','https://i.gkd.li/i/13222356','https://i.gkd.li/i/13255627','https://i.gkd.li/i/16918033','https://i.gkd.li/i/18417785']},{key:1,activityIds:'.index.v2.IndexActivityV2',matches:'@ImageView <2 FrameLayout - [text^=\"打开通知\"]',snapshotUrls:'https://i.gkd.li/i/13250418'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,activityIds:['.index.v2.IndexActivityV2','com.xingin.update.UpdateDialogActivity'],rules:[{key:0,matches:'@ImageView <2 * + * > [text=\"NEW\"]',snapshotUrls:['https://i.gkd.li/i/13246890','https://i.gkd.li/i/13741680','https://i.gkd.li/i/14445193']},{key:1,matches:'Button[text=\"立即安装\"] + Button[text=\"稍后再说\"]',exampleUrls:'https://e.gkd.li/7064a569-fcdd-44e2-b4d1-c55e093f4a02',snapshotUrls:['https://i.gkd.li/i/15283162','https://i.gkd.li/i/18289347']}]},{key:3,name:'分段广告-信息流广告',desc:'长按\"赞助\"/\"广告\"标识的卡片-点\"不感兴趣\"',fastQuery:true,activityIds:'com.xingin.xhs.index.v2.IndexActivityV2',rules:[{key:0,action:'longClick',name:'长按\"赞助\"/\"广告\"卡片',excludeMatches:'RecyclerView > LinearLayout > [text^=\"不喜欢\"]',matches:'@FrameLayout[clickable=true] > LinearLayout TextView[text=\"赞助\"||text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13455503','https://i.gkd.li/i/13470690','https://i.gkd.li/i/14392171']},{preKeys:[0],name:'点\"不感兴趣\"',matches:'RecyclerView > @LinearLayout[index=0] > TextView[text^=\"不喜欢\"]',snapshotUrls:['https://i.gkd.li/i/13455500','https://i.gkd.li/i/14392187']}]},{key:4,name:'全屏广告-优惠券弹窗',rules:[{key:0,fastQuery:true,activityIds:'com.xingin.reactnative.ui.XhsReactTranslucentActivity',matches:'@ImageView[visibleToUser=true] < * -2 * > [text=\"你有新人券待领取\"]',snapshotUrls:'https://i.gkd.li/i/14391484'}]},{key:5,name:'评价提示-评分弹窗',desc:'返回关闭弹窗',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:'com.xingin.lurker.appscore.ui.AppScoreDialogActivity',matches:'[text=\"您对小红书的评分如何?\"]',exampleUrls:'https://m.gkd.li/57941037/9727815d-b881-4904-bbdc-19ade426977e',snapshotUrls:'https://i.gkd.li/i/15281458'}]},{key:6,name:'功能类-评论区-自动展开回复',desc:'自动展开更多回复',rules:[{fastQuery:true,activityIds:'com.xingin.matrix.notedetail.NoteDetailActivity',matches:'@[clickable=true] > [vid=\"loadMoreTV\"][text^=\"展开\"][text$=\"回复\"]',snapshotUrls:'https://i.gkd.li/i/25048251'}]},{key:7,name:'局部广告-你可能感兴趣的人',rules:[{fastQuery:true,activityIds:'com.xingin.xhs.index.v2.IndexActivityV2',matches:'[text=\"你可能感兴趣的人\"] +2 Button[text=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/25244655'}]},{key:8,name:'局部广告-关闭首页信息流中推荐博主',rules:[{fastQuery:true,activityIds:'com.xingin.xhs.index.v2.IndexActivityV2',matches:'[vid=\"recommend_close\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25245325'}]},{key:9,name:'局部广告-直播间各种卡片',activityIds:'com.xingin.alpha.audience.v2.AlphaAudienceActivityV2',rules:[{key:1,fastQuery:true,matches:'@ViewGroup[clickable=true][visibleToUser=true] - ViewGroup <<n [vid=\"canvasLayout\"]',snapshotUrls:'https://i.gkd.li/i/25245250'}]}]},{id:'com.dz.xmbnxj',name:'小卖部逆袭记',groups:[{key:1,name:'局部广告-底部卡片广告',rules:[{fastQuery:true,activityIds:'com.lynx.boot.LynxActivity',matches:'[id=\"com.dz.xmbnxj:id/mix_img_close\"]',exampleUrls:'https://m.gkd.li/99116490/40d3c3c9-9443-4c71-9a98-69efa38f8bfd',snapshotUrls:'https://i.gkd.li/i/13399232'}]}]},{id:'com.vson.smarthome',name:'小美智能',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',matches:'[text^=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/15526571'}]}]},{id:'com.mi.earphone',name:'小米耳机',groups:[{key:1,name:'评价提示',rules:[{fastQuery:true,activityIds:'.main.MainActivity',matches:'@[vid=\"close_iv\"] + [text=\"喜欢“小米耳机”吗？\"]',snapshotUrls:'https://i.gkd.li/i/23263036'}]}]},{id:'com.miui.huanji',name:'小米换机',groups:[{key:1,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@[text=\"下次再说\"] + [text=\"立即升级\"]',snapshotUrls:'https://i.gkd.li/i/14332463'}]}]},{id:'com.xiaomi.bluetooth',name:'小米蓝牙扩展 (Bluetooth Extension)',groups:[{key:1,name:'功能类-耳机配对弹窗（仅限澎湃os3）',desc:'点击右上角的x',rules:[{fastQuery:true,activityIds:'com.android.bluetooth.ble.app.fastconnect.MiuiFastConnectActivity',matches:'[vid=\"pairingClosable\"]',snapshotUrls:'https://i.gkd.li/i/22922962'}]}]},{id:'com.android.browser',name:'小米浏览器',groups:[{key:0,name:'局部广告-关闭[个性推荐开启提示]',activityIds:['com.android.browser.BrowserActivity'],rules:[{matches:'@ImageView[id!=null][clickable=true] -2 [text=\"个性推荐获得更丰富内容\"]',snapshotUrls:'https://i.gkd.li/i/12829403'}]},{key:1,name:'分段广告-主页信息流广告',fastQuery:true,activityIds:['com.android.browser.BrowserActivity','com.android.browser.flow.view.FeedbackDialog'],rules:[{key:0,matches:'@[id!=null][desc=\"负反馈\"][visibleToUser=true] -n * > * > [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12894221','https://i.gkd.li/i/12893649']},{preKeys:0,key:1,matches:'@FrameLayout > ViewGroup > [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/12894234','https://i.gkd.li/i/13196059']}]},{key:2,name:'局部广告-搜索结果页底部必应推荐卡片',desc:'点击关闭',rules:[{activityIds:'com.android.browser.BrowserActivity',matches:'[id=\"bnp_close_icon\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/b0d601cf-6cd1-411c-8555-bd4a8ee3335c',snapshotUrls:['https://i.gkd.li/i/14256707','https://i.gkd.li/i/14256761']}]},{key:3,name:'分段广告-小说阅读页面广告',fastQuery:true,activityIds:'com.duokan.shop.mibrowser.reading.SdkReaderActivity',rules:[{key:0,excludeMatches:'[vid=\"reading__close_ad_view__subtitle_tv\"][visibleToUser=true]',matches:'[vid=\"reading__app_ad_view__close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5deac756-01a5-4ee0-a26f-9fb659115f78',snapshotUrls:'https://i.gkd.li/i/19718114',excludeSnapshotUrls:'https://i.gkd.li/i/19718162'},{preKeys:[0],matches:'[vid=\"reading__close_ad_view__subtitle_tv\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6e2c9635-4084-47e1-b255-4bc9728a7528',snapshotUrls:'https://i.gkd.li/i/19718162'}]}]},{id:'com.android.calendar',name:'小米日历',groups:[{key:1,name:'分段广告-卡片广告',desc:'注意⚠️：该广告需开启[智能服务]的对应规则才能关闭',rules:[{fastQuery:true,activityIds:'.homepage.AllInOneActivity',matches:'[vid=\"close\"][desc=\"关闭广告卡片\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/23619245'}]}]},{id:'com.xiaomi.shop',name:'小米商城',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:['com.xiaomi.shop2.activity.MainActivity','com.xiaomi.shop.plugin.homepage.utils.AdDialog'],matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true] <2 LinearLayout[childCount=2] < RelativeLayout < [id=\"android:id/content\"]',snapshotUrls:['https://i.gkd.li/i/12649330','https://i.gkd.li/i/14393039']},{key:1,fastQuery:true,activityIds:'com.xiaomi.shop2.activity.MainActivity',matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true] <2 FrameLayout[childCount=2] < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/22550140'}]},{key:2,name:'局部广告-悬浮广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaomi.shop2.activity.MainActivity',matches:'[id=\"com.xiaomi.shop.plugin.homepage:id/home_bottom_float_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/15528092'}]},{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{position:{left:'width * 0.3509',top:'width * 1.4046'},activityIds:'.lib.ForceUpdateActivity',matches:'@LinearLayout[childCount=0] < [id=\"android:id/content\"][childCount=1] < [vid=\"action_bar_root\"]',snapshotUrls:'https://i.gkd.li/i/19547338'}]},{key:4,name:'评价提示-客服',rules:[{fastQuery:true,activityIds:'com.xiaomi.miot.store.mirn.RNMainActivity',matches:'ImageView < @ViewGroup[clickable=true] - [text^=\"请对\"][text$=\"进行评价\"]',snapshotUrls:'https://i.gkd.li/i/23206873'}]}]},{id:'com.xiaomi.vipaccount',name:'小米社区',groups:[{key:1,name:'更新提示',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'miuix.appcompat.app.AlertDialog',matches:'@[text=\"稍后安装\"] < LinearLayout - ScrollView >(4) [text=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/12642466'}]},{key:2,name:'局部广告-评论区卡片广告',rules:[{activityIds:'com.xiaomi.vipaccount.newbrowser.NormalWebActivity',matches:'[text=\"closeGray\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12642459'}]},{key:3,name:'全屏广告-签到弹窗',rules:[{activityIds:'com.xiaomi.vipaccount.newbrowser.NormalWebActivity',matches:'[text=\"签到赢权益\"] +n Image[text*=\"cancel_circle\"]',snapshotUrls:'https://i.gkd.li/i/13328271'}]},{key:4,name:'全屏广告-公告板弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.xiaomi.vipaccount.ui.home.page.HomeFrameActivity','com.xiaomi.vipaccount.newbrowser.NormalWebActivity'],anyMatches:['[desc=\"公告版弹窗\"] +2 [id=\"com.xiaomi.vipaccount:id/close\"]','[desc=\"公告版弹窗\"] + ViewGroup[vid=\"image_container\"] > [id=\"com.xiaomi.vipaccount:id/close\"]'],exampleUrls:'https://e.gkd.li/46e16bc5-2f13-408e-9c34-927a13ba3e9c',snapshotUrls:['https://i.gkd.li/i/13400617','https://i.gkd.li/i/24289621']}]}]},{id:'com.miui.video',name:'小米视频',groups:[{key:1,name:'分段广告-卡片广告',desc:'该广告的第二段需开启[智能服务]的对应规则才能关闭',fastQuery:true,rules:[{key:0,activityIds:'com.miui.video.feature.detail.NewShortVideoDetailActivity',matches:'[vid=\"v_banner_bottom_right\"]',exampleUrls:'https://m.gkd.li/57941037/cd25f4a5-64db-4471-8eea-3d84a34ffb72',snapshotUrls:'https://i.gkd.li/i/16044569'},{key:1,activityIds:'com.miui.video.feature.detail.NewShortVideoDetailActivity',matches:'[vid=\"iv_ad\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/cd25f4a5-64db-4471-8eea-3d84a34ffb72',snapshotUrls:'https://i.gkd.li/i/16044569'}]}]},{id:'com.miui.gallery',name:'小米相册',groups:[{key:1,name:'功能类-删除时勾选[同时从云端删除]',rules:[{activityIds:'com.miui.gallery.activity.InternalPhotoPageActivity',matches:'[text=\"同时从云端删除\"][checked=false]',snapshotUrls:'https://i.gkd.li/i/15804289'}]},{key:2,name:'功能类-流量同步自动点击[继续同步]',rules:[{fastQuery:true,activityIds:'.activity.BackupDetailActivity',matches:['[text^=\"当前处于移动网络下，继续同步将消耗\"]','[text=\"继续同步\"]'],snapshotUrls:'https://i.gkd.li/i/23124555'}]},{key:3,name:'其他-图片保存成功弹窗',rules:[{fastQuery:true,activityIds:'.activity.ExternalPhotoPageActivity',matches:['[text=\"图片已经保存到相册\"]','[text=\"确定\"]'],snapshotUrls:'https://i.gkd.li/i/23383772'}]}]},{id:'com.xiaomi.mimobile',name:'小米移动',groups:[{key:1,name:'评价提示',rules:[{activityIds:'.activity.XiaomiMobileMainActivity',matches:'@ImageView[desc=null] < [desc=\"「小米移动」使用体验调查\"]',snapshotUrls:'https://i.gkd.li/i/23227230'}]}]},{id:'com.miui.player',name:'小米音乐',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25094542'}],order:-10},{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.player.MusicPlayerActivity',matches:'[id=\"com.miui.player:id/free_mode_tips_layout\"] + [id=\"com.miui.player:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13303283'},{key:1,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[id=\"com.miui.player:id/cl_floating_promote\"] > [id=\"com.miui.player:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13562649'}]},{key:2,name:'局部广告-横幅广告',desc:'关闭播放页面横幅广告',fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.player.MusicPlayerActivity',rules:[{key:0,matches:'[id=\"com.miui.player:id/ad_skip_text\"][text=\"关闭\"]',exampleUrls:'https://m.gkd.li/57941037/d923ba1b-3098-49b0-8593-c84dbaa16612',snapshotUrls:['https://i.gkd.li/i/13304347','https://i.gkd.li/i/13304344']},{key:1,matches:'[text=\"广告｜跳过\"]',exampleUrls:'https://m.gkd.li/57941037/2ae1ca24-fb50-48ff-9343-e5607b512127',snapshotUrls:'https://i.gkd.li/i/14711960'}]},{key:3,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',matches:'@ViewGroup[clickable=true][childCount=0][visibleToUser=true] < ViewGroup[childCount=1] < ViewGroup[childCount=2] < FrameLayout < FrameLayout < [vid=\"webview_container\"]',exampleUrls:'https://e.gkd.li/5e6fd5f8-6ad3-4a46-ab34-c9b6b2d7a112',snapshotUrls:'https://i.gkd.li/i/17783777'},{key:1,activityIds:'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',matches:'[id=null][desc~=\".*关闭.*按钮.*\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12700955','https://i.gkd.li/i/22562104']}]},{key:5,name:'全屏广告-弹窗广告（部分误触）',desc:'注意：会关闭年度报告邀请函弹窗',rules:[{fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[id=\"com.miui.player:id/iv_close_dialog_button\"]',snapshotUrls:'https://i.gkd.li/i/13623503'}]},{key:12,name:'功能类-看广告视频领VIP',desc:'等待15s自动点击\"退出\"',rules:[{actionDelay:15000,fastQuery:true,activityIds:'com.tencentmusic.ad.tmead.reward.TMERewardActivity',matches:'[id=\"com.miui.player:id/tme_ad_skip_button\"]',snapshotUrls:'https://i.gkd.li/i/13610667'}]},{key:13,name:'局部广告-主界面卡片广告',rules:[{key:1,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[vid=\"ad_close\"][text=null]',exampleUrls:'https://e.gkd.li/32ad4d0f-8992-45b0-9e1f-82ce2cc58dcb',snapshotUrls:'https://i.gkd.li/i/16773614'},{key:2,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[vid=\"banner_divider\"] - * > [vid=\"close_banner\"]',exampleUrls:'https://e.gkd.li/d9b74767-84b6-4668-8a9b-261bd938a8a3',snapshotUrls:'https://i.gkd.li/i/20420253'}]},{key:14,name:'分段广告-首页卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[vid=\"ad_more\"]',exampleUrls:'https://e.gkd.li/e7d3d6c3-d8be-4e0f-ac02-e5df2a0615b3',snapshotUrls:'https://i.gkd.li/i/20420265'},{preKeys:[0],key:20,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[vid=\"ad_close\"][text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/6ca7beba-98b8-4892-b275-1a116d040115',snapshotUrls:'https://i.gkd.li/i/20420322'}]}]},{id:'com.xiaomi.market',name:'小米应用商店',groups:[{key:0,name:'全屏广告-弹窗广告',matchRoot:true,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,action:'clickCenter',activityIds:['.ui.FloatWebActivity','.ui.HomeFloatWebActivity'],matches:'@Button[text=\"关闭\" || desc=\"关闭\"][clickable=true][visibleToUser=true] <<n [vid=\"webview\"]',snapshotUrls:['https://i.gkd.li/i/16323123','https://i.gkd.li/i/20946336','https://i.gkd.li/i/23249365']}]},{key:9,name:'局部广告-卡片广告',rules:[{fastQuery:true,activityIds:'com.xiaomi.market.ui.UpdateListActivity',matches:'[id=\"com.xiaomi.market:id/iv_close_tip\"]',snapshotUrls:'https://i.gkd.li/i/13197334'}]},{key:10,name:'功能类-忽略升级',desc:'应用升级界面-自动点击忽略',fastQuery:true,activityIds:'com.xiaomi.market.ui.UpdateListActivity',rules:[{key:1,excludeMatches:'[text=\"忽略本次\"][visibleToUser=true]',matches:'[vid=\"expand_button\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14931577'},{preKeys:[1],key:2,matches:'[text=\"忽略本次\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14931578'}]},{key:11,name:'权限提示-通知权限',desc:'自动点击关闭按钮',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'升级软件后的\"开启推送\"弹窗',activityIds:'.ui.UpdateListActivity',matches:'[vid=\"dialog_cancel\" || text=\"不再提醒\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14814456','https://i.gkd.li/i/19643114']},{key:1,name:'开启通知栏提醒',matchTime:10000,activityIds:'.business_ui.main.MarketTabActivity',matches:['[text=\"开启通知栏提醒\"]','[text=\"不了，谢谢\"]'],snapshotUrls:'https://i.gkd.li/i/13691701'}]},{key:12,name:'局部广告-个性化推荐卡片',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaomi.market.business_ui.main.MarketTabActivity',matches:'[id=\"com.xiaomi.market:id/close_float_recommend\"]',snapshotUrls:'https://i.gkd.li/i/13624971'}]},{key:13,name:'功能类-自动点击[查看全部升级]',desc:'应用升级页面',actionMaximum:1,rules:[{fastQuery:true,activityIds:['com.xiaomi.market.ui.UpdateListActivity','.ui.UpdateAppsActivity'],matches:'@[clickable=true] > [text^=\"查看全部升级\" || text^=\"查看全部更新\"]',exampleUrls:['https://m.gkd.li/57941037/8549db1e-17a5-44e3-b657-1d2d712efd2a','https://e.gkd.li/e1a4d832-e582-4185-b93e-08ca41f46d92'],snapshotUrls:['https://i.gkd.li/i/14782814','https://i.gkd.li/i/24461973']}]},{key:14,name:'功能类-移动数据更新弹窗点击继续',rules:[{fastQuery:true,activityIds:'com.xiaomi.market.ui.UpdateListActivity',matches:'@[text=\"继续\"] <n * - * >4 [text^=\"您在使用数据网络，升级应用可能产生流量费用\"]',snapshotUrls:'https://i.gkd.li/i/22927652'}]}]},{id:'com.xiaomi.gamecenter.sdk.service',name:'小米游戏服务',groups:[{key:1,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaomi.gamecenter.sdk.ui.actlayout.ViewUpgrade',matches:'[text=\"升级提示\"] < * + [vid=\"btn_close\"]',snapshotUrls:'https://i.gkd.li/i/14188929'}]}]},{id:'com.xiaomi.gamecenter',name:'小米游戏中心',groups:[{key:1,name:'局部广告-首页右侧悬浮广告',rules:[{activityIds:'com.xiaomi.gamecenter.ui.MainTabActivity',matches:'[id=\"com.xiaomi.gamecenter:id/ad_view\"] + [id=\"com.xiaomi.gamecenter:id/close_btn\"]',snapshotUrls:'https://i.gkd.li/i/12715800'}]}]},{id:'com.xiaomi.youpin',name:'小米有品',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{activityIds:'com.xiaomi.youpin.globalpopwindow.popwindow.PopWindowActivity',matches:'WebView[text=\"有品\"] > View > View[childCount=2] > Image[index=1][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14964897','https://i.gkd.li/i/12836727']}]},{key:2,name:'更新提示-版本升级弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.globalpopwindow.popwindow.PopWindowActivity',matches:'[id=\"com.xiaomi.youpin:id/ypd_alert_close_image\"]',snapshotUrls:'https://i.gkd.li/i/12836775'}]},{key:3,name:'局部广告-主页贴片广告',rules:[{fastQuery:true,activityIds:'com.xiaomi.youpin.activity.YouPinMainTabActivity',matches:'[vid=\"iv_float_close\"]',snapshotUrls:'https://i.gkd.li/i/15879481'}]}]},{id:'com.miui.cloudservice',name:'小米云服务',groups:[{key:0,name:'全屏广告-弹窗广告',rules:[{key:0,name:'云存储空间不足弹窗',activityIds:'com.miui.cloudservice.hybrid.SignDeductDialogHybridActivity',matches:'[text=\"以后再说\"]',exampleUrls:'https://m.gkd.li/57941037/df5f7c28-a1fa-4d1b-87b8-2f592e5a8423',snapshotUrls:'https://i.gkd.li/i/12847374'},{key:1,name:'会员打折弹窗',fastQuery:true,activityIds:'com.miui.cloudservice.ad.AdPopupActivity',matches:'[vid=\"ad_popup_close_iv\"]',exampleUrls:'https://m.gkd.li/57941037/fbb8a877-4e69-4d72-b31d-85ad87ab34af',snapshotUrls:'https://i.gkd.li/i/14320937'}]},{key:1,name:'更新提示',desc:'点击[以后再说]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.MiCloudMainActivity',matches:'@[text=\"以后再说\"] + [text=\"立即升级\"]',exampleUrls:'https://m.gkd.li/57941037/789b4472-f989-4d32-aff2-6b657b6e0deb',snapshotUrls:'https://i.gkd.li/i/14476801'}]},{key:2,name:'权限提示-通知权限',rules:[{fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'.ui.MiCloudMainActivity',matches:['[text$=\"开启“通知”权限。\"]','[text=\"取消\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23165486'}]}]},{id:'com.mi.health',name:'小米运动健康',groups:[{key:1,name:'评价提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaomi.fitness.baseui.common.CommonBaseActivity',matches:['[text=\"评分\"][visibleToUser=true]','[text=\"下次再说\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13258813','https://i.gkd.li/i/21979253']}]},{key:2,name:'权限提示-后台运行',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaomi.fitness.main.MainActivity',matches:'[text=\"开启后台无限制\"] + [id=\"com.mi.health:id/close_icon\"]',snapshotUrls:'https://i.gkd.li/i/13495035'}]},{key:3,name:'全屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'活动弹窗',activityIds:'com.xiaomi.fitness.main.MainActivity',matches:'[id=\"com.mi.health:id/cardview\"] + [id=\"com.mi.health:id/dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/13537836'},{key:1,name:'表盘广告',activityIds:'com.xiaomi.wearable.yrn.views.WearableRNActivity',matches:'@[clickable=true] > [desc=\"Close\"]',snapshotUrls:'https://i.gkd.li/i/23923968'}]},{key:4,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:['[text=\"下载并安装\" || text=\"立即更新\"]','[text=\"放弃更新\" || text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/13537840','https://i.gkd.li/i/13626328']}]},{key:5,name:'通知提示-公告栏',rules:[{fastQuery:true,activityIds:'com.xiaomi.fitness.main.MainActivity',matches:'[vid=\"bannerAnnouncementView\"] [vid=\"iv_close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24099864'}]},{key:6,name:'权限提示-麦克风',rules:[{fastQuery:true,activityIds:'com.xiaomi.fitness.baseui.common.CommonBaseActivity',matches:'@[vid=\"close_instruction\"][clickable=true] - [text^=\"鼾声梦话监测开关因麦克风未授权而关闭\"]',snapshotUrls:'https://i.gkd.li/i/24229351'}]}]},{id:'com.niu.cloud',name:'小牛电动',groups:[{key:1,name:'更新提示-固件更新弹窗',desc:'点击[以后再说]',matchRoot:true,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivityNew',matches:['[text=\"发现新固件\"][visibleToUser=true]','[text=\"以后再说\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/b486cc0b-3ac2-4be3-a38d-c16c952f4fce',snapshotUrls:'https://i.gkd.li/i/20919078'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.main.MainActivityNew',matches:'[vid=\"closeDialogIv\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/78f2afd2-de8b-46b5-ae6c-6df58862f00e',snapshotUrls:'https://i.gkd.li/i/20939822'}]}]},{id:'com.craftvpn.craft',name:'小牛加速器',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'@View < View[childCount=2] < View[childCount=1] < View[childCount=1] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13914788'}],order:-10}]},{id:'com.sjmly.sjmtask.xsh',name:'小柿子',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:'com.sjmly.sjmtask.xsh.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13761173'}]}]},{id:'com.xiaote',name:'小特',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.xiaote:id/ad_close\"][text*=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/14035706'}],order:-10}]},{id:'com.okii.watch.global',name:'小天才',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'com.xtc.widget.phone.popup.activity.CustomActivity',matches:'[id=\"com.okii.watch.global:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13630943'}]},{key:2,name:'其他-手表安全守护弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xtc.widget.phone.popup.activity.CustomActivity13',matches:'[id=\"com.okii.watch.global:id/photo_sensitive_close\"]',exampleUrls:'https://m.gkd.li/57941037/8a5030a1-2b24-4a8a-a944-29d0eaabf936',snapshotUrls:'https://i.gkd.li/i/13630944'}]}]},{id:'com.xtc.watch',name:'小天才',groups:[{key:2,name:'更新提示',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xtc.widget.phone.popup.activity.CustomActivity14',matches:['[text=\"App功能更新了\"]','[id=\"com.xtc.watch:id/iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/13197390'}]},{key:3,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.xtc.widget.phone.popup.activity.CustomActivity13',matches:['[text*=\"开启消息通知\"]','[id=\"com.xtc.watch:id/iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/13063274'},{key:1,activityIds:'.view.home.activity.XtcHomeActivity',matches:'[id=\"com.xtc.watch:id/iv_notify_permission_close\"]',snapshotUrls:'https://i.gkd.li/i/13059965'}]}]},{id:'com.ukids.client.phone',name:'小小优趣',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ukids.client.phone.parent.ParentClientHomeActivity',matches:'[id=\"com.ukids.client.phone:id/dialog_dismiss_btn_two\"]',snapshotUrls:'https://i.gkd.li/i/13400238'}]}]},{id:'com.firebear.androil',name:'小熊油耗',groups:[{key:1,name:'全屏广告',desc:'来自第三方SDK\"穿山甲\"',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',rules:[{key:0,name:'点击右上角x',matches:'[text=\"反馈\"] +2 View > Image',snapshotUrls:['https://i.gkd.li/i/12754919','https://i.gkd.li/i/13324698']},{key:1,name:'点击右上角[数字s|跳过]',matches:'[text=\"广告\"] + View >4 [text=\"| 跳过\"]',snapshotUrls:['https://i.gkd.li/i/12864214']},{key:2,name:'点击右上角x (2)',matches:'[id=\"com.byted.pangle.m:id/tt_reward_full_count_down\"]',snapshotUrls:['https://i.gkd.li/i/13175439']}]},{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.home.MainActivity',matches:'@[id=\"com.firebear.androil:id/dismissNtfImgView\"] < RelativeLayout - [id=\"com.firebear.androil:id/contentLay\"] >3 TextView[text^=\"升级\"]',snapshotUrls:'https://i.gkd.li/i/12755032'}]}]},{id:'com.xiaoxiongyhh',name:'小熊有好货',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:'com.uzmap.pkg.EntranceActivity',matches:'View[childCount=2] > ImageView + Button[childCount=0][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13401975'}]}]},{id:'com.sys.washmashine',name:'小依',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,ignoreGlobalGroupMatch:true,rules:[{fastQuery:true,matches:'@[desc=\"skip_button\"][clickable=true] - [text=\"跳过\"]',exampleUrls:'https://e.gkd.li/b0d7d8e3-fc68-4be8-aba0-c8100d4143fb',snapshotUrls:'https://i.gkd.li/i/22274999'}],order:-10},{key:2,name:'全屏广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.mvp.activity.SplashAy',matches:'@[desc=\"top_close_button\"][clickable=true] < ViewGroup <n ViewGroup + ViewGroup >3 [text=\"广告\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6817d76f-84fc-46af-9ed5-52388981841a',snapshotUrls:'https://i.gkd.li/i/22275000'}]}]},{id:'com.ants360.yicamera',name:'小蚁摄像机',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/13463241'},{key:1,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +3 ViewGroup[childCount=2] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13543175'},{key:2,activityIds:['.activity.MainActivity','com.xiaoyi.yiplayer.ui.PlayerActivity'],matches:'@[vid=\"ivClose\"] - [text=\"专属福利\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a7ba5126-27dd-450d-abf9-c3a8b6938727',snapshotUrls:['https://i.gkd.li/i/18410909','https://i.gkd.li/i/22652775']},{key:3,activityIds:['com.baidu.mobads.sdk.api.MobRewardVideoActivity','com.yd.saas.base.inner.interstitial.YdInterstitialActivity'],matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/1af231f8-bb98-450e-83d1-5bd067802de3',snapshotUrls:['https://i.gkd.li/i/19514818','https://i.gkd.li/i/19722625','https://i.gkd.li/i/22652776']},{key:4,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true] + RelativeLayout >2 [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/af626eb0-e24d-446d-8137-a4a9839ebc20',snapshotUrls:'https://i.gkd.li/i/19514819'}]},{key:2,name:'权限提示-通知权限',rules:[{fastQuery:true,activityIds:['com.xiaoyi.yiplayer.ui.PlayerActivity','.activity.MainActivity','.activity.camera.LandscapePlayerActivity'],matches:['[text=\"开启通知\"][visibleToUser=true]','[text=\"暂不开启\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/1cb1471e-94a5-430f-ac2f-b031413a067e',snapshotUrls:['https://i.gkd.li/i/18395740','https://i.gkd.li/i/19503517','https://i.gkd.li/i/19722627']}]},{key:3,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.activity.MainActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c9e67d26-d65f-4e24-9f62-cc29f29cff9b',snapshotUrls:'https://i.gkd.li/i/18406158'},{key:1,fastQuery:true,activityIds:'.activity.MainActivity',matches:'@[clickable=true][id=\"com.kwad.dy.sdk:id/ksad_ad_dislike\"] <<n [vid=\"ad_container\"]',exampleUrls:'https://e.gkd.li/2d358b3b-6a8e-4ebf-813b-03d01d18d5f1',snapshotUrls:'https://i.gkd.li/i/22652771'},{key:2,fastQuery:true,activityIds:'com.xiaoyi.yiplayer.ui.PlayerActivity',matches:'FrameLayout > FrameLayout > FrameLayout[childCount=1] > @ImageView[childCount=0][width<50 && height<50] <<n [vid=\"adContainer\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2c38cc0d-06e6-4075-86f8-cbb9c2453840',snapshotUrls:'https://i.gkd.li/i/22652772'}]}]},{id:'com.fenbi.android.leo',name:'小猿口算',groups:[{key:1,name:'评价提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.imgsearch.sdk.activity.NewCheckCameraActivity',matches:'@[text=\"残忍拒绝\"] + [text*=\"好评\"][text.length<=10]',snapshotUrls:'https://i.gkd.li/i/13226140'}]}]},{id:'com.fenbi.android.solar',name:'小猿搜题',groups:[{key:2,name:'评价提示',desc:'点击\"返回\"',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{matches:'[id=\"com.fenbi.android.solar:id/tv_cancel\"]',exampleUrls:'https://m.gkd.li/57941037/7864769f-542c-4f76-8b90-4d030b53651b',snapshotUrls:'https://i.gkd.li/i/14136539'}]},{key:3,name:'全屏广告-年卡广告',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{matches:'[id=\"com.fenbi.android.solar:id/v_firework_close\"]',exampleUrls:'https://e.gkd.li/874cdabf-8e49-4c6d-8fd0-48effd6e44e9',snapshotUrls:'https://i.gkd.li/i/16759322'}]}]},{id:'me.zhouzhuo810.zznote',name:'小周便签',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'@[vid^=\"btn_next_\"] - [vid=\"native_ad_container\"]',snapshotUrls:['https://i.gkd.li/i/12798528','https://i.gkd.li/i/14662294']},{key:1,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13800235','https://i.gkd.li/i/16115850']},{key:2,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/16118464'}],order:-10}]},{id:'io.iftech.android.box',name:'小组件盒子',groups:[{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[text=\"\"] < View +(n) View >(2) TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12706209'},{key:1,activityIds:'io.iftech.android.box.main.HomeActivity',matches:'ImageView - FrameLayout > ImageView[id=null]',snapshotUrls:'https://i.gkd.li/i/12706209'},{key:2,activityIds:'com.anythink.basead.ui.ATPortraitTranslucentActivity',matches:'[id=\"io.iftech.android.box:id/anythink_myoffer_btn_close_id\"]',snapshotUrls:'https://i.gkd.li/i/12706228'},{key:3,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[id=null][clickable=true] + RelativeLayout + ImageView + ImageView',snapshotUrls:'https://i.gkd.li/i/12706236'},{key:4,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[id=null][clickable=true] + RelativeLayout > RelativeLayout > ImageView + ImageView',snapshotUrls:'https://i.gkd.li/i/12706240'}]},{key:10,name:'全屏广告-会员限时优惠弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'io.iftech.android.box.main.HomeActivity',matches:'@[id=\"io.iftech.android.box:id/ivClose\"] + [text^=\"限时\"][text$=\"特惠\"]',snapshotUrls:'https://i.gkd.li/i/12706226'}]}]},{id:'ctrip.android.view',name:'携程旅行',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'ctrip.android.publicproduct.home.view.CtripHomeActivity',matches:'@ImageView[desc=\"关闭\"][clickable=true][visibleToUser=true] <3 FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13218347'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'ctrip.android.publicproduct.home.view.CtripHomeActivity',matches:'@ImageView[clickable=true] < RelativeLayout + RelativeLayout >5 [desc^=\"广告\"] + [text=\"立即领取\"]',exampleUrls:'https://e.gkd.li/00628604-fab9-432c-a70b-343c8c889c23',snapshotUrls:'https://i.gkd.li/i/16357287'},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,activityIds:'ctrip.business.planthome.CtripPlantHomeActivity',matches:'@ImageView[clickable=true][childCount=0][visibleToUser=true] <4 FrameLayout[childCount=4] < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/cdc28230-6ea7-4cf7-bef4-a31f7e36eed1',snapshotUrls:'https://i.gkd.li/i/19050401'},{key:2,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'ctrip.android.publicproduct.home.business.activity.CtripHomeActivity',matches:'@ImageView[childCount=0][clickable=true][visibleToUser=true][width<120 && height<120] < RelativeLayout[childCount=1] < RelativeLayout[childCount=2] < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/065da3a4-b746-4ec7-a681-a6fd687c5f70',snapshotUrls:'https://i.gkd.li/i/20921664'}]}]},{id:'com.youloft.icloser',name:'心动日常',groups:[{key:1,name:'全屏广告-购买会员弹窗广告',rules:[{fastQuery:true,activityIds:'com.youloft.icloser.view.dialog.VipRetainPacketDialog',matches:'[id=\"com.youloft.icloser:id/tv_later_buy\"]',snapshotUrls:'https://i.gkd.li/i/13067183'}]},{key:2,name:'局部广告-右下角悬浮窗小广告',rules:[{fastQuery:true,activityIds:'com.youloft.icloser.activity.MainActivity',matches:'[id=\"com.youloft.icloser:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13164387'}]}]},{id:'com.erksd.qdmk.yxml.sousou',name:'新大师兄影视',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'cn.haorui.sdk.activity.HRNativeInterstitialActivity',matches:'[vid=\"activity_sdk_interstitial_cacel\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8f712571-be10-4d59-afa4-6957492eb25d',snapshotUrls:'https://i.gkd.li/i/23435915'},{key:1,activityIds:'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',matches:'[id=\"ad_area\"] > [id=\"close_btn\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/92bb7cc8-c5c2-4ccf-8f1d-35bcc0e30f9e',snapshotUrls:'https://i.gkd.li/i/23435936'}]}]},{id:'com.miaoying.appmy.cs',name:'新小财神影视',groups:[{key:-1,name:'通知提示-公告弹窗',desc:'APP启动时出现的公告栏',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@[desc=\"我知道了\"] + [desc=\"了解更多\"]',snapshotUrls:'https://i.gkd.li/i/12522872'}]},{key:0,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',actionDelay:750,activityIds:'com.miaoying.appmy.cs.MainActivity',rules:[{key:0,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12565637','https://i.gkd.li/i/12522881','https://i.gkd.li/i/12565480','https://i.gkd.li/i/12565507','https://i.gkd.li/i/12565510']},{key:1,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/12565475'},{key:2,matches:'TextView[text=null] - FrameLayout > ImageView + FrameLayout > ImageView',snapshotUrls:'https://i.gkd.li/i/12565522'},{key:3,name:'全屏广告-弹窗广告2',activityIds:'com.sigmob.sdk.base.common.TransparentAdActivity',matches:'[id=\"close_btn\"][text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/12565375'}]}]},{id:'yyc.xk',name:'星空视频壁纸',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.activity.MainActivity',matches:'[vid=\"gm信息流广告关闭\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/972de09c-a399-4b7d-b7c4-e03c072a7170',snapshotUrls:'https://i.gkd.li/i/20863704'}]}]},{id:'com.wanbangauto.chargepile',name:'星星充电',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.newhome.MainActivity',matches:'@[vid=\"image_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ce4838fb-0f0d-4b20-bab3-565bd80bbc93',snapshotUrls:'https://i.gkd.li/i/18421090'}]},{key:2,name:'功能类-签到提示',desc:'点击[忽略]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.newhome.MainActivity',matches:['[text^=\"小星提醒您\"][visibleToUser=true]','[text=\"忽略\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/542507c4-57dd-46f5-b354-78cdbacb3191',snapshotUrls:'https://i.gkd.li/i/18421092'}]}]},{id:'com.jz.xydj',name:'星芽免费短剧',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,name:'底部卡片广告',fastQuery:true,activityIds:'com.jz.jzdj.ui.activity.shortvideo.ShortVideoActivity2',matches:'[vid=\"ad_close\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/c6e1dfa9-388e-417f-9ab2-d3ea63d3eb8a',snapshotUrls:'https://i.gkd.li/i/14391204'}]}]},{id:'com.xingye.app',name:'星野',groups:[{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.weaver.app.MainSplashActivity',matches:'[vid=\"settingUpdateCancelTv\"]',snapshotUrls:'https://i.gkd.li/i/14137987'}]}]},{id:'cn.nlyuming.duanju.ting',name:'星影视频',groups:[{key:1,name:'其他-[您还未登录]弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.nlyuming.duanju.ting.MainActivity',matches:'@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=3] < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://m.gkd.li/57941037/3041769f-b644-460b-b0de-9c2a84518849',snapshotUrls:'https://i.gkd.li/i/14321891'}]}]},{id:'cn.ylkj.xingying',name:'星影视频',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'cn.ylkj.xingying.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:'https://m.gkd.li/57941037/66b19fbd-b82d-4f10-b82d-0fc74c146b1c',snapshotUrls:'https://i.gkd.li/i/14783306'}]}]},{id:'com.xsj.app',name:'星影视频',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,name:'腾讯广告',activityIds:['com.xsj.app.MainActivity','com.qq.e.ads.ADActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13625504','https://i.gkd.li/i/13761165']},{key:1,fastQuery:true,activityIds:'com.qq.e.ads.ADActivity',matches:'@ImageView[clickable=true][childCount=0] - [text*=\"送福利啦\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13670176'}]},{key:2,name:'通知提示-公告弹窗',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13875711'}]}]},{id:'com.xt.retouch',name:'醒图',groups:[{key:5,name:'评价提示-好评反馈',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.uilauncher.MainActivity',matches:'[id=\"com.xt.retouch:id/market_feedback_dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/13062637'}]}]},{id:'com.showstartfans.activity',name:'秀动',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.showstartfans.activity.activitys.maintab.newmain.MainNewActivity',matches:'[id=\"com.showstartfans.activity:id/img_close_coupon\"]',snapshotUrls:'https://i.gkd.li/i/13670432'}]}]},{id:'cn.xuexi.android',name:'学习强国',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.alibaba.android.rimet.biz.SplashActivity',matches:'@[text=\"取消\"] + [text=\"立即升级\"]',snapshotUrls:'https://i.gkd.li/i/12715139'}]},{key:10,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.alibaba.android.rimet.biz.SplashActivity',matches:'[text^=\"开启消息通知\"] +2 [id=\"cn.xuexi.android:id/layout_close\"]',snapshotUrls:'https://i.gkd.li/i/12715160'}]}]},{id:'com.chaoxing.mobile',name:'学习通',groups:[{key:1,name:'功能类-提示没有网络时点击[重试/确定]',rules:[{fastQuery:true,activityIds:'.player.course.CoursePlayerWithNoteActivity',matches:['[text^=\"请在有网络时进行学习\"][visibleToUser=true]','[text=\"重试\" || text=\"确定\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/17573fa6-2143-4b41-9d61-e922117c9bc7',snapshotUrls:['https://i.gkd.li/i/23046734','https://i.gkd.li/i/23046852']}]},{key:2,name:'功能类-提示非WIFI环境时点击[继续]，使用流量播放',rules:[{fastQuery:true,activityIds:['.player.course.CoursePlayerWithNoteActivity','com.chaoxing.fanya.aphone.ui.chapter.detail.ui.ChapterDetailActivity'],matches:['[text^=\"正在使用非WiFi环境\"][visibleToUser=true]','[text=\"继续\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/d4a8ec6d-031f-4030-b111-51a2f37bd39d',snapshotUrls:['https://i.gkd.li/i/23046887','https://i.gkd.li/i/23046892']}]},{key:10,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.ui.MainTabActivity',matches:'[id=\"com.chaoxing.mobile:id/vNotificationItemClose\"]',snapshotUrls:'https://i.gkd.li/i/13197374'}]},{key:11,name:'功能类-电脑端登录自动确认',rules:[{fastQuery:true,activityIds:'com.chaoxing.mobile.webapp.ui.WebAppViewerActivity',matches:'TextView[text=\"登录\"] < @View[clickable=true][desc=\"登录\"] < * - * > View[childCount=0][text=\"电脑端学习通登录确认\"] <<n [vid=\"web_view_fragment_refresh_layout\"]',snapshotUrls:'https://i.gkd.li/i/23280198'}]}]},{id:'com.xuexiaoyi.xxy',name:'学小易',groups:[{key:1,name:'分段广告-首页-底部广告',activityIds:['com.xuexiaoyi.entrance.main.MainActivity','com.xuexiaoyi.platform.base.arch.RouterFragmentActivity'],rules:[{key:0,name:'点击在下方的X',matches:'View[text=\"广告\"&&longClickable=null] < View <n View <n View > View > Image[text.length=0]',snapshotUrls:['https://i.gkd.li/i/13068836','https://i.gkd.li/i/13375502','https://i.gkd.li/i/13375559']},{key:1,name:'点击在上方的X-类型1',matches:'Image[text.length>=20] < View < View + View > Image[text.length=0]',snapshotUrls:['https://i.gkd.li/i/13068811','https://i.gkd.li/i/13202990','https://i.gkd.li/i/13266356','https://i.gkd.li/i/13266362','https://i.gkd.li/i/13457114','https://i.gkd.li/i/13457204']},{key:2,name:'点击在上方的X-类型2',matches:'[text.length>=2&&text.length<=6] < FrameLayout -n FrameLayout > View',snapshotUrls:'https://i.gkd.li/i/13266689'},{key:3,name:'点击在内部的X',matches:'View[text.length=4] - View > View > Image[text.length=0]',snapshotUrls:['https://i.gkd.li/i/13457210','https://i.gkd.li/i/13457302']},{preKeys:[0,1,2,3],key:10,name:'点击不感兴趣',matches:'TextView[text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/13068819','https://i.gkd.li/i/13457380']}]},{key:10,name:'更新提示',desc:'点击以后再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xuexiaoyi.entrance.main.MainActivity',matches:'[text=\"立即体验\"] + [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13203105'}]}]},{id:'com.xueqiu.android',name:'雪球',groups:[{key:1,name:'局部广告-信息流广告',rules:[{fastQuery:true,activityIds:'com.xueqiu.android.mainnesting.view.MainNestingActivity',matches:'[id=\"com.xueqiu.android:id/ad_close\"]',exampleUrls:'https://m.gkd.li/33366298/d05d1eec-cda5-4d37-a494-8eef7b7871dd',snapshotUrls:'https://i.gkd.li/i/13388227'}]},{key:2,name:'局部广告-评论区广告',rules:[{fastQuery:true,activityIds:'com.xueqiu.android.community.StatusDetailActivity',matches:'[id=\"com.xueqiu.android:id/ad_card_close\"]',exampleUrls:'https://m.gkd.li/33366298/b223cc74-fd4f-45a2-89ab-4a18ddffc01c',snapshotUrls:'https://i.gkd.li/i/13388361'}]},{key:3,name:'全屏广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.mainnesting.view.MainNestingActivity',matches:'[vid=\"image_cancel\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5229142b-49d5-4985-ab75-104e46ede45e',snapshotUrls:'https://i.gkd.li/i/22995479'}]}]},{id:'com.xueqiu.fund',name:'雪球基金',groups:[{key:1,name:'全屏广告-基金页面弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.xueqiu.fund.commonlib.FundHomeActivityV2',matches:'[id=\"com.xueqiu.fund:id/image_cancel\"]',exampleUrls:'https://m.gkd.li/57941037/c43d58ab-a18c-4249-bc35-1c7aeab4c3ff',snapshotUrls:'https://i.gkd.li/i/14163901'}]}]},{id:'com.xunlei.downloadprovider',name:'迅雷',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,excludeActivityIds:'.search.ui.search.SearchOperateActivity',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15048443','https://i.gkd.li/i/15048416'],excludeSnapshotUrls:'https://i.gkd.li/i/16388942'},{key:1,position:{left:'width * 0.9055',top:'width * 0.1611'},excludeMatches:'[text*=\"跳过\"]',matches:'[vid=\"native_container\"]',snapshotUrls:'https://i.gkd.li/i/15048354',excludeSnapshotUrls:'https://i.gkd.li/i/15048376'},{key:2,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/24539634'}],order:-10},{key:1,name:'分段广告',rules:[{key:0,fastQuery:true,activityIds:['.frame.MainTabActivity','.download.taskdetails.newui.DownloadDetailsActivity'],matches:'[vid=\"hermes_ad_banner_negative\" || vid=\"close_iv\"  || vid=\"btn_ad_feedback\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/95d56e24-3223-4112-9222-de6d489aa79b',snapshotUrls:['https://i.gkd.li/i/23762793','https://i.gkd.li/i/23845066']},{preKeys:[0],fastQuery:true,activityIds:['.frame.MainTabActivity','.download.taskdetails.newui.DownloadDetailsActivity'],matches:'[text=\"不感兴趣\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/490bd679-86a5-432e-b0de-427da5513484',snapshotUrls:['https://i.gkd.li/i/23762972','https://i.gkd.li/i/23845065']}]},{key:3,name:'全屏广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.xunlei.downloadprovider.frame.MainTabActivity',matches:'[vid=\"close_btn\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/71c2dc44-a976-4910-8e44-26e39865406e',snapshotUrls:'https://i.gkd.li/i/16388890'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12868667','https://i.gkd.li/i/12881946','https://i.gkd.li/i/13295179']},{key:2,fastQuery:true,activityIds:['com.xunlei.downloadprovider.frame.MainTabActivity','com.xunlei.downloadprovider.launch.LaunchActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12882132','https://i.gkd.li/i/12901374','https://i.gkd.li/i/12882237']},{key:3,fastQuery:true,activityIds:'com.xunlei.web.XLWebViewActivity$XLWebViewActivityImpl',matches:'[text$=\"专属惊喜价\"] + View > @[desc^=\"javascript\"][clickable=true][childCount=0][width<120&&height<120][visibleToUser=true] <<n [vid=\"refreshLayout\"]',exampleUrls:'https://e.gkd.li/ade9ca8a-b7a5-4a22-8c1f-d14423a34136',snapshotUrls:['https://i.gkd.li/i/16914136','https://i.gkd.li/i/23833175','https://i.gkd.li/i/23845039']},{key:4,fastQuery:true,activityIds:'.download.center.DownloadCenterActivity',matches:['[text=\"开通超级会员\"]','[vid=\"close_btn\"]'],exampleUrls:'https://e.gkd.li/6448cedc-2bad-4aa5-846c-9ad82c310545',snapshotUrls:'https://i.gkd.li/i/17658831'},{key:5,fastQuery:true,activityIds:['com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'@ImageView[childCount=0] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] +2 ViewGroup >3 [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/23762955','https://i.gkd.li/i/24541418']}]},{key:6,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xunlei.upgrade.XUpgradeActivity',matches:'[id=\"com.xunlei.downloadprovider:id/x_upgrade_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13228920'}]},{key:12,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.xunlei.downloadprovider.frame.MainTabActivity',matches:'[text=\"立即领取\" || text=\"点击领取\" || text^=\"此云盘为您的私人云盘\"] + [vid=\"close\"]',snapshotUrls:['https://i.gkd.li/i/12882939','https://i.gkd.li/i/15048352','https://i.gkd.li/i/15048355','https://i.gkd.li/i/15048357']},{key:1,fastQuery:true,activityIds:'.search.ui.search.SearchOperateActivity',matches:'[vid=\"search_banner_ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d9e25fc3-249f-4fb9-8606-606ed0c9c893',snapshotUrls:'https://i.gkd.li/i/17725350'},{key:2,fastQuery:true,activityIds:'.frame.MainTabActivity',matches:'[vid=\"home_flow_item_close_iv\" || vid=\"ad_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/23762842','https://i.gkd.li/i/23762864']},{key:3,fastQuery:true,activityIds:'.xpan.pan.activity.XPanFileBrowserActivity',matches:'[vid=\"btn_ad_feedback\"]',snapshotUrls:'https://i.gkd.li/i/23795248'}]},{key:13,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xunlei.uikit.activity.TransformActivity',matches:['[text=\"是否打开系统通知\"]','[vid=\"btn_close\"]'],exampleUrls:'https://m.gkd.li/57941037/bf1ee4f5-126c-46c7-bac1-5e41ec4546e3',snapshotUrls:'https://i.gkd.li/i/15322046'}]}]},{id:'cn.wsds.gamemaster',name:'迅游手游加速器',groups:[{key:2,name:'分段广告-卡片广告',desc:'点击关闭-点击不感兴趣',fastQuery:true,rules:[{key:0,activityIds:'cn.wsds.gamemaster.ui.gamedetails.ActivityGameDetails',matches:'ViewGroup[childCount=2] > @ImageView[childCount=0][index=1][clickable=true][visibleToUser=true] - [text=\"立即下载\"]',snapshotUrls:'https://i.gkd.li/i/13930398'},{preKeys:[0],activityIds:'cn.wsds.gamemaster.ui.gamedetails.ActivityGameDetails',matches:'[text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13930399'}]}]},{id:'com.viva.timeplan.p5',name:'烟花动漫',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true] - RelativeLayout > [text=\"反馈\"]',exampleUrls:'https://m.gkd.li/57941037/3bfe1e95-56ed-43f7-b40c-e523953e71f6',snapshotUrls:'https://i.gkd.li/i/14481496'}]}]},{id:'com.cctv.yangshipin.app.androidp',name:'央视频',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/19859692',excludeSnapshotUrls:'https://i.gkd.li/i/20949002'}],order:-10},{key:1,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.tencent.videolite.android.ui.HomeActivity',matches:'[vid=\"lottery_popup_view_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8ae44849-08d0-4e7f-a3e1-a277a4e22315',snapshotUrls:'https://i.gkd.li/i/16493556'},{key:1,fastQuery:true,activityIds:'com.tencent.videolite.android.business.videolive.VideoLiveActivity',matches:'[vid=\"product_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/1dcd9a1c-4994-4d6f-8611-fcfbcfa184bd',snapshotUrls:'https://i.gkd.li/i/21209009'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,forcedTime:10000,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.tencent.videolite.android.ui.HomeActivity',matches:'[vid=\"iv_close\"]',exampleUrls:'https://e.gkd.li/abb06a51-6b92-4734-8a60-d0ef87b3364d',snapshotUrls:'https://i.gkd.li/i/16742915'}]},{key:3,name:'评价提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.tencent.videolite.android.ui.HomeActivity',matches:['[text=\"给个好评\"][visibleToUser=true]','[vid=\"close_btn\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/7d8f15f0-1f71-4538-8fde-144ebd81dead',snapshotUrls:'https://i.gkd.li/i/19788008'}]},{key:4,name:'全屏广告-底部关注弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.tencent.videolite.android.business.videolive.VideoLiveActivity',matches:'@[vid=\"close\"] <<n [vid=\"follow_float_container\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b4006011-8b13-431b-9af3-f4390898d12c',snapshotUrls:'https://i.gkd.li/i/21208995'}]}]},{id:'com.cctv.cctv5ultimate',name:'央视体育',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.cctv.cctv5ultimate.activity.MainActivity',matches:['[text=\"广告\"]','[id=\"com.cctv.cctv5ultimate:id/iv_close\"]'],snapshotUrls:'https://i.gkd.li/i/13405159'}]},{key:2,name:'局部广告-视频暂停时的广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.cctv.cctv5ultimate.videodetail.activity.VideoDetailActivity',matches:'@ImageView[clickable=true][childCount=0] + LinearLayout > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/26bf9fcc-9dda-4465-a4d5-3fd56a3addde',snapshotUrls:'https://i.gkd.li/i/16454650'}]}]},{id:'cn.cntvnews',name:'央视新闻',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,name:'右侧悬浮小卡片',fastQuery:true,activityIds:'com.torch.open.homeimpl.HomeActivity',matches:'[vid=\"btn_close\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/8c4308a3-4142-45a0-a085-af8ee89ead04',snapshotUrls:'https://i.gkd.li/i/14368501'}]},{key:2,name:'功能类-个性化推荐弹窗',desc:'点击[取消]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.torch.open.homeimpl.HomeActivity',matches:'[text=\"是否开启个性化推荐？\"] +3 * > [text=\"取消\"]',exampleUrls:'https://m.gkd.li/57941037/b3ee21aa-429d-4407-9b70-acecb222c354',snapshotUrls:'https://i.gkd.li/i/14444961'}]}]},{id:'com.baidu.youavideo',name:'一刻相册',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,excludeActivityIds:'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTRewardVideoActivity',excludeMatches:'[text=\"开启安全备份\"][visibleToUser=true]',anyMatches:['[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]','[text.length<10][text*=\"跳过\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/5185bf9d-70f7-4841-991e-55b1b6768e97',snapshotUrls:['https://i.gkd.li/i/23549481','https://i.gkd.li/i/23549490'],excludeSnapshotUrls:['https://i.gkd.li/i/23549097','https://i.gkd.li/i/23567868']},{key:1,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/23549504','https://i.gkd.li/i/23549553']}],order:-10},{key:2,name:'更新提示-软件升级提醒',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'.home.view.HomeActivity',matches:'[id=\"com.baidu.youavideo:id/tv_upgrade\"] < LinearLayout +2 [id=\"com.baidu.youavideo:id/img_close\"]',snapshotUrls:['https://i.gkd.li/i/12597916']}]},{key:3,name:'局部广告-悬浮窗广告',desc:'关闭广告悬浮窗',rules:[{fastQuery:true,activityIds:'.home.view.HomeActivity',matches:'[id=\"com.baidu.youavideo:id/img_operation_close\"]',snapshotUrls:'https://i.gkd.li/i/12970088'}]},{key:4,name:'评价提示',desc:'点击下次再说',matchTime:10000,actionMaximum:1,resetMatch:'app',fastQuery:true,rules:[{activityIds:'.home.view.HomeActivity',matches:'[id=\"com.baidu.youavideo:id/tv_next_time\"]',snapshotUrls:'https://i.gkd.li/i/12970094'}]},{key:5,name:'全屏广告-会员弹窗',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.vip.ui.VipPayWebDialogActivity',matches:'[text^=\"恭喜获得会员\"] - View[text=\"\"] > @Image[text!=null][visibleToUser=true] <<n [vid=\"fl_web_view\"]',exampleUrls:'https://e.gkd.li/c149b068-7f00-4173-9000-a41fa1603ba7',snapshotUrls:'https://i.gkd.li/i/17576805'}]},{key:6,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,activityIds:['.preview.ui.search.SearchPreviewActivity','.preview.ui.hometimeline.TimelinePreviewActivity','.preview.ui.album.AlbumPreviewActivity'],matches:'[vid=\"fl_ad\"] - [vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6b628b65-214f-4dc0-b0b8-805ea566464b',snapshotUrls:['https://i.gkd.li/i/14133595','https://i.gkd.li/i/14217352','https://i.gkd.li/i/17580816'],excludeSnapshotUrls:'https://i.gkd.li/i/15750684'},{key:2,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.home.view.HomeActivity',matches:'[vid=\"dialog_home_pop_close_button\"]',exampleUrls:'https://e.gkd.li/c83b5006-1b0d-478e-ab0a-d2f3f4957162',snapshotUrls:'https://i.gkd.li/i/17732139'}]},{key:7,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.app.ui.HomeActivity',matches:'[id=\"com.baidu.youavideo:id/dialog_open_guide_notification_root\"] > [id=\"com.baidu.youavideo:id/img_close\"]',snapshotUrls:'https://i.gkd.li/i/13413819'}]},{key:8,name:'局部广告-照片页底部浮窗广告',rules:[{fastQuery:true,activityIds:'com.baidu.youavideo.home.view.HomeActivity',matches:'[id=\"com.baidu.youavideo:id/cl_root\"] + [id=\"com.baidu.youavideo:id/img_close\"]',snapshotUrls:'https://i.gkd.li/i/13711475'}]},{key:9,name:'局部广告-卡片广告',rules:[{fastQuery:true,matches:'[vid=\"riv_banner\"] + [vid=\"iv_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13874124','https://i.gkd.li/i/15220559']}]}]},{id:'com.xingluo.allcolor',name:'一起来涂色',groups:[{key:1,name:'分段广告-底部穿山甲广告',desc:'点击卡片广告x关闭按钮-关闭反馈理由弹窗',activityIds:['com.cccgame.android.MainActivity','com.bytedance.sdk.openadsdk.core.dislike.ui.c'],rules:[{key:1,matches:'@Image[childCount=0][visibleToUser=true] < View[childCount=1] + View[childCount=2] >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12640359'},{key:2,matches:'@Image[id=null] < View -2 View > View > View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12640362'},{key:3,matches:'@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12640374'},{key:4,matches:'@Image[id=null] < View - View > View + View > TextView[text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12640406'},{preKeys:[1,2,3,4],name:'穿山甲广告-反馈理由',matches:'[id=\"com.byted.pangle:id/tt_item_tv\"][text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12640358'}]}]},{id:'com.taobao.etao',name:'一淘',groups:[{key:2,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['com.taobao.etao.app.home.view.NewHomeActivity','com.taobao.etao.app.homev4.HomeV4Activity'],matches:'LinearLayout[childCount=2] > @RelativeLayout[clickable=true][childCount=1] > ImageView[childCount=0]',snapshotUrls:['https://i.gkd.li/i/12739581','https://i.gkd.li/i/13670025']},{key:1,activityIds:'com.taobao.etao.app.homev4.HomeV4Activity',matches:'[text=\"一淘-首页红包升级-2312wf\"] >5 View[childCount=3] > View[index=0][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/db5c7761-3a8b-4bc6-a61c-65dd30f61b9f',snapshotUrls:'https://i.gkd.li/i/14622468'}]},{key:10,name:'权限提示-通知权限',desc:'点击关闭',actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.taobao.sns.app.message.MessageActivity',matches:'[text^=\"打开消息通知\"] + [text=\"去开启\"] + ImageView[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12684278'},{key:1,activityIds:'.mine.MetaXMineActivity',matches:'[text^=\"打开消息通知\"] + FrameLayout > [text=\"去开启\"] < FrameLayout + ImageView[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12684351'}]}]},{id:'com.yikaobang.yixue',name:'医考帮',groups:[{key:1,name:'全屏广告-会员活动弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.psychiatrygarden.activity.HomePageNewActivity',matches:'@ImageView[id=\"com.yikaobang.yixue:id/close\"]',snapshotUrls:'https://i.gkd.li/i/13425853'}]}]},{id:'com.cmri.universalapp',name:'移动爱家',groups:[{key:5,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.SmartMainProxyActivity',matches:'[vid=\"ivCancelDlg\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17872852'}]},{key:6,name:'局部广告-卡片广告',fastQuery:true,matchTime:10000,rules:[{key:0,name:'横幅式',activityIds:'.SmartMainProxyActivity',matches:'[vid=\"close_banner\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17872961'},{key:1,name:'卡片信息流式',activityIds:'.SmartMainProxyActivity',matches:'[vid=\"iv_close\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17872961'},{key:2,name:'横幅式2',activityIds:'.smarthome.control.view.CameraControlActivity',matches:'[vid=\"iv_item_banner_close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/25209084'}]}]},{id:'enfc.metro',name:'亿通行',groups:[{key:1,name:'全屏广告-出站后摇一摇广告',desc:'点击跳过',rules:[{fastQuery:true,activityIds:'enfc.metro.session.web.rn.RPReactActivity',matches:'@View[clickable=true] - * [text=\"扭动手机\"]',snapshotUrls:'https://i.gkd.li/i/13988597'}]}]},{id:'cn.com.hkgt.gasapp',name:'易捷加油',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.com.hkgt.gasapp.dialog.BannerDialog',matches:'ImageView[id=\"cn.com.hkgt.gasapp:id/exit\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12744270'}]},{key:2,name:'权限提示-定位权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.activity.main.HkMainActivity',matches:'@[vid=\"close_open\"] -2 [text*=\"开启定位\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/82022058-fadc-43de-baca-d254249b6c51',snapshotUrls:'https://i.gkd.li/i/20961130'}]}]},{id:'com.hose.ekuaibao',name:'易快报',groups:[{key:1,matchTime:10000,actionMaximum:2,resetMatch:'app',name:'局部广告-首页横幅广告',rules:'[text=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12649616','https://i.gkd.li/i/18455642']}]},{id:'com.lieju.lws.escanu',name:'易视看',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.jooan.qiaoanzhilian.ali.view.main_page.NewMainDeviceListActivity',matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][visibleToUser=true][childCount=1] <2 ViewGroup <2 ViewGroup - ViewGroup >3 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/47781f68-64d1-4bf6-8d09-85318ff5b78a',snapshotUrls:'https://i.gkd.li/i/17931020'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['com.jooan.qiaoanzhilian.ali.view.main_page.NewMainDeviceListActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:'https://e.gkd.li/4bd02512-bc63-4242-b3c5-c68d97b89f2d',snapshotUrls:['https://i.gkd.li/i/17930503','https://i.gkd.li/i/17931003']},{key:1,activityIds:'com.jooan.qiaoanzhilian.ui.activity.gun_ball.GunBallCameraPlayerNewActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/96f6fb24-37c6-4b3e-89e3-91c4279c7221',snapshotUrls:'https://i.gkd.li/i/17930496'}]},{key:3,name:'分段广告-首页下方广告',desc:'点击关闭-点击不感兴趣',fastQuery:true,activityIds:'com.jooan.qiaoanzhilian.ali.view.main_page.NewMainDeviceListActivity',rules:[{key:0,matches:'ViewGroup[desc=\"root\"] > ViewGroup[childCount=2] > ViewGroup[childCount=2][desc!=null] > @ImageView[clickable=true][visibleToUser=true][desc!=null][index=parent.childCount.minus(1)] <<n [vid=\"native_express_container\"]',exampleUrls:'https://e.gkd.li/6ff2f8fe-2269-4f52-b49f-3f997b405a8f',snapshotUrls:'https://i.gkd.li/i/17930498'},{preKeys:[0],matches:'@[clickable=true] > [text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/a8a4aeb9-ee6a-4fde-80be-0e78e346f673',snapshotUrls:'https://i.gkd.li/i/17930497'}]}]},{id:'cn.com.yunma.school.app',name:'易校园',groups:[{key:1,name:'功能类-打开应用后自动点击右上角扫一扫',desc:'仅开屏后触发一次',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.yunma.app.ui.main.MainActivity',matches:'[vid=\"fl_scan\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22451914'}]},{key:2,name:'功能类-用水自动点击开始',rules:[{fastQuery:true,matchRoot:true,activityIds:'com.yunma.baseextend.ui.WebActivity',matches:'@TextView[text=\"开始\"][childCount=0] < View[childCount=1] <<n WebView[text=\"立即用水\"] <<2 [vid=\"web_parent_layout_id\"]',snapshotUrls:'https://i.gkd.li/i/23327551'}]},{key:3,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.anythink.basead.ui.ATPortraitTranslucentActivity',matches:'[vid=\"anythink_myoffer_btn_close_id\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3ddc6da8-7bbf-43f8-8d79-1fabe1180fea',snapshotUrls:'https://i.gkd.li/i/23475779'}]},{key:4,name:'更新提示',rules:[{fastQuery:true,activityIds:'com.yunma.baseextend.appupdate.view.UpdateDialogActivity',matches:['[text^=\"发现新版本\"]','[vid=\"ib_close\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/24336659'}]}]},{id:'com.chinatelecom.bestpayclient',name:'翼支付',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.MainActivity',matches:'[id=\"com.chinatelecom.bestpayclient:id/bupdate_tv_bottom_tip\"]',snapshotUrls:'https://i.gkd.li/i/13391544'}]},{key:3,name:'全屏广告-弹窗广告',rules:[{key:0,name:'权益页',fastQuery:true,activityIds:'.ui.MainActivity',matches:'[name$=\"Dialog\"] >4 @[clickable=true][visibleToUser=true] - View >(1,2) [childCount=0][text=\"\"] + Image[text!=null][childCount=0] <<n [vid=\"best_h5_container\"]',snapshotUrls:['https://i.gkd.li/i/13402692','https://i.gkd.li/i/24428096']},{key:1,name:'首页1',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.MainActivity',matches:'[vid=\"iv_dialog_close_one\" || vid=\"iv_sky_close\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13455790','https://i.gkd.li/i/15369212','https://i.gkd.li/i/18160066']},{key:2,name:'首页2',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'[text=\"甜橙信用卡\"] >2  View[childCount=2] > @Image[clickable=true][text!=null] <<n [id=\"com.chinatelecom.bestpayclient:id/h5_pc_container\"]',snapshotUrls:'https://i.gkd.li/i/13626324'},{key:3,name:'借贷页',activityIds:'.ui.MainActivity',fastQuery:true,matches:'@[clickable=true][text=\"\"][visibleToUser=true] <<n [vid=\"best_h5_container\"]',snapshotUrls:['https://i.gkd.li/i/13455929','https://i.gkd.li/i/24427912']},{key:4,name:'信用卡页面',activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'[id=\"com.chinatelecom.bestpayclient:id/h5_pc_container\"] >2 bc >5 View > View >3 View[childCount=3] > @[clickable=true][width<150 && height<150][visibleToUser=true] + * + View[childCount=0]',snapshotUrls:['https://i.gkd.li/i/13696322','https://i.gkd.li/i/13696323'],excludeSnapshotUrls:'https://i.gkd.li/i/24420758'}]},{key:4,name:'局部广告-悬浮窗小广告',actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.chinatelecom.bestpayclient.ui.MainActivity',matches:'[id=\"com.chinatelecom.bestpayclient:id/best_h5_container\"] View[childCount=2] > @View[clickable=true] + View[clickable=true] > Image[text!=null]',exampleUrls:'https://m.gkd.li/57941037/4457a342-5750-45d8-ad8e-233dd1da3de3',snapshotUrls:'https://i.gkd.li/i/13402711'},{key:1,fastQuery:true,activityIds:'com.chinatelecom.bestpayclient.ui.MainActivity',matches:'[vid=\"iv_market_close\"]',exampleUrls:'https://m.gkd.li/57941037/14326e73-6c7c-4659-8493-d4b196746b2a',snapshotUrls:'https://i.gkd.li/i/14456159'}]},{key:5,name:'全屏广告-年底积分活动弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,rules:[{activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'View[childCount=2] > @View[index=1][clickable=true][childCount=1] > Image[childCount=0] <<n [id=\"com.chinatelecom.bestpayclient:id/h5_pc_container\"]',snapshotUrls:['https://i.gkd.li/i/13543032','https://i.gkd.li/i/13625037']}]},{key:6,name:'功能类-自动签到',desc:'点击[立即打卡]-关闭弹窗',rules:[{key:0,action:'clickCenter',activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'[text^=\"已连续签到\"] +12 * >2 Image[visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/8fd8a0ce-90a3-460b-9882-33fdb55cbca4',snapshotUrls:'https://i.gkd.li/i/14459643'},{preKeys:0,key:1,activityIds:'com.alipay.mobile.nebulacore.ui.H5Activity',matches:'[text=\"明日签到可得惊喜盲盒\"] <2 View + View > Image',exampleUrls:'https://m.gkd.li/57941037/31296e53-7d32-405b-b8ae-25855a02291d',snapshotUrls:'https://i.gkd.li/i/14459494'}]}]},{id:'com.heytap.music',name:'音乐',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.allsaints.music.MainActivity',matches:'@ImageView[clickable=true] + [text=\"检测到新版本\"]',snapshotUrls:'https://i.gkd.li/i/14987173'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.allsaints.ad.sjy.reward.SRewardLoadingActivity','com.allsaints.music.MainActivity'],matches:['[vid=\"btnFreeListening\"][visibleToUser=true]','[vid=\"close\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/16200623','https://i.gkd.li/i/21175600']}]}]},{id:'com.tencent.qqmusiclite.universal',name:'音乐',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.MainActivity',matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2b50621d-8425-4b5f-aed7-aa767cf5eecf',snapshotUrls:'https://i.gkd.li/i/18699697'},{key:1,fastQuery:true,activityIds:'com.tencent.qqmusiclite.activity.player.MusicPlayerActivity',matches:'[vid=\"ad_skip_text\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0b1ba9a0-03a9-421c-88f2-cc3bd8d6be3c',snapshotUrls:'https://i.gkd.li/i/18699710'}]}]},{id:'com.miui.packageinstaller',name:'应用包管理组件',groups:[{key:7,name:'功能类-放弃开启安全守护',fastQuery:true,actionMaximum:1,activityIds:'com.miui.packageInstaller.ui.normalmode.InstallProgressActivity',rules:[{key:0,matches:'[text=\"30天内不再提示\"][checked=false]',exampleUrls:'https://e.gkd.li/fe6682cd-a27a-4183-8717-15fd373bafcf',snapshotUrls:'https://i.gkd.li/i/16487140'},{preKeys:[0],key:1,matches:'[text=\"放弃\"]',exampleUrls:'https://e.gkd.li/859dac99-62ca-4876-bdfb-c84795254111',snapshotUrls:'https://i.gkd.li/i/16487142'}]},{key:13,name:'功能类-自动安装/更新应用',desc:'该规则仅适配关闭[应用安全验证]和[安全守护]的情况，可在安装页面右上角设置里关闭，关闭后的风险自行承担',matchRoot:true,fastQuery:true,actionMaximum:1,rules:[{key:0,name:'点击[安装]/[更新]',activityIds:['com.miui.packageInstaller.NewInstallerPrepareActivity','com.miui.packageInstaller.ui.InstallPrepareAlertActivity'],excludeMatches:'[text=\"已了解此应用存在风险\"][checked=false][visibleToUser=true]',matches:'@FrameLayout[clickable=true] > LinearLayout[childCount=1] > [text^=\"继续\" || text^=\"仍然\"][text.length=4][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bd3e2764-4978-44ed-93d3-f176c23c3ec4',snapshotUrls:['https://i.gkd.li/i/16487278','https://i.gkd.li/i/16487282','https://i.gkd.li/i/17691996','https://i.gkd.li/i/20053957'],excludeSnapshotUrls:'https://i.gkd.li/i/25095995'},{preKeys:[0],key:1,name:'点击[完成]',activityIds:'com.miui.packageInstaller.ui.normalmode.InstallProgressActivity',excludeMatches:'[text*=\"安装失败\"]',matches:'[text=\"完成\"]',exampleUrls:'https://e.gkd.li/0011622b-580a-4810-81a4-b4a1181d121d',snapshotUrls:'https://i.gkd.li/i/16487274',excludeSnapshotUrls:'https://i.gkd.li/i/20282424'}]},{key:14,name:'功能类-自动允许应用安装软件',fastQuery:true,actionMaximum:1,activityIds:['com.miui.packageInstaller.ui.InstallPrepareAlertActivity','com.miui.packageInstaller.NewInstallerPrepareActivity'],rules:[{key:0,name:'点击[记住我的选择]',matches:['[text^=\"是否允许\"][text*=\"安装应用\"][visibleToUser=true]','CheckBox[text=\"记住我的选择\"][checked=false][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/af834ca4-744a-485f-bec6-9802979fe949',snapshotUrls:['https://i.gkd.li/i/16487366','https://i.gkd.li/i/16487389','https://i.gkd.li/i/18937578','https://i.gkd.li/i/20287209']},{preKeys:[0],name:'点击[允许]',matches:'[text=\"允许\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4f4ce827-6b74-4b55-8fed-5e009acd4bbd',snapshotUrls:['https://i.gkd.li/i/16487365','https://i.gkd.li/i/18937576','https://i.gkd.li/i/20287160']}]},{key:15,name:'功能类-安装来源不可信',desc:'点击[授权本次安装]',actionMaximum:1,rules:[{fastQuery:true,position:{left:'width * 0.3511',top:'height * 0.5'},activityIds:'com.miui.packageInstaller.ui.InstallPrepareAlertActivity',matches:'[text$=\"授权本次安装\"]',exampleUrls:'https://e.gkd.li/e470baf2-56dc-4e3c-8da0-9747eeec602f',snapshotUrls:'https://i.gkd.li/i/17898736'}]},{key:16,name:'功能类-关闭备案信息弹窗',desc:'点击[继续安装]',actionMaximum:1,rules:[{fastQuery:true,activityIds:['com.miui.packageInstaller.ui.InstallPrepareAlertActivity','com.miui.packageInstaller.NewInstallerPrepareActivity'],matches:['[text$=\"备案信息\"]','[text=\"继续安装\"]'],exampleUrls:'https://e.gkd.li/d5bc4b1a-e363-4aab-9240-e6d914730935',snapshotUrls:['https://i.gkd.li/i/17908298','https://i.gkd.li/i/20642970']}]},{key:17,name:'功能类-无视风险继续安装',fastQuery:true,actionMaximum:1,activityIds:'com.miui.packageInstaller.NewInstallerPrepareActivity',rules:[{key:0,matches:'@[clickable=true] >2 [text=\"无视风险继续安装\"]',exampleUrls:'https://e.gkd.li/46f06948-5ec1-4054-8aa3-a8f39e5d1f26',snapshotUrls:'https://i.gkd.li/i/18002566'},{preKeys:[0],key:1,matches:'[text=\"继续\"]',exampleUrls:'https://e.gkd.li/375fc2ec-841a-4af6-be99-9391ebeb7dc5',snapshotUrls:'https://i.gkd.li/i/18002704'},{preKeys:[1],key:2,matches:'@[clickable=true][desc=\"更多\"] > [vid=\"action_menu_item_child_icon\"]',exampleUrls:'https://e.gkd.li/de8fb9c9-ea4e-4c03-93bd-047bf31cd4c8',snapshotUrls:'https://i.gkd.li/i/18002708'},{preKeys:[2],key:3,matches:'@[clickable=true] >(1,2) [text=\"单次安装授权\"]',exampleUrls:'https://e.gkd.li/0e8afdd7-04d3-46fd-9095-b61123d041b2',snapshotUrls:['https://i.gkd.li/i/18002712','https://i.gkd.li/i/20746863']}]},{key:18,name:'功能类-自动勾选[已了解此应用存在风险]',rules:[{fastQuery:true,activityIds:'com.miui.packageInstaller.NewInstallerPrepareActivity',matches:'[text=\"已了解此应用存在风险\"][checked=false][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/25095995'}]}]},{id:'com.tencent.android.qqdownloader',name:'应用宝',groups:[{key:1,name:'功能类-关闭登录弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.assistantv2.activity.MainActivity',matches:'@Button[clickable=true] - [text=\"欢迎登录应用宝\"]',exampleUrls:'https://m.gkd.li/57941037/29c109c2-7993-4b39-ba80-6ae6451ab533',snapshotUrls:'https://i.gkd.li/i/16012576'}]}]},{id:'com.yingyonghui.market',name:'应用汇',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'快手广告',fastQuery:true,activityIds:'com.yingyonghui.market.ui.MainActivity',matches:['[text=\"广告\"]','@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]'],snapshotUrls:'https://i.gkd.li/i/13538316'}]}]},{id:'com.sec.android.app.samsungapps',name:'应用商店',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[vid=\"skip\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14810528','https://i.gkd.li/i/18329468']}],order:-10},{key:1,name:'其他-[您是否年满 18 岁？]弹窗',desc:'点击[是]',rules:[{fastQuery:true,activityIds:'com.sec.android.app.samsungapps.SearchResultActivity',matches:'[text=\"您是否年满 18 岁？\"] +4 @[clickable=true] > [text=\"是\"]',exampleUrls:'https://m.gkd.li/57941037/cee78493-fbe1-46a0-8dcf-a8b1f1f61f19',snapshotUrls:'https://i.gkd.li/i/14473690'}]},{key:2,name:'全屏广告-[大家还下载了]弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.detail.activity.ContentDetailActivity',matches:'@[desc=\"关闭\"][clickable=true] - [vid=\"tv_detail_related_other_opp_title_layout\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/de1b9cc4-c47e-456a-b975-5eefaedb5e42',snapshotUrls:'https://i.gkd.li/i/18209149'}]}]},{id:'zte.com.market',name:'应用中心',groups:[{key:1,name:'功能类-流量模式点击[继续下载]',rules:[{fastQuery:true,activityIds:'cn.nubia.neostore.WifiLimitActivity',matches:'[text=\"继续下载\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6bab3e98-7b52-49eb-b8e8-ae47b871343d',snapshotUrls:'https://i.gkd.li/i/16478331'}]}]},{id:'com.videogo',name:'萤石云视频',groups:[{key:1,name:'分段广告-主页广告',fastQuery:true,activityIds:'com.videogo.main.MainTabActivity',rules:[{key:0,matches:'[id=\"com.videogo:id/ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13255684'},{preKeys:[0],matches:'[id=\"com.videogo:id/ad_closead_nointerest\"]',snapshotUrls:'https://i.gkd.li/i/13255697'}]},{key:7,name:'全屏广告-弹窗广告',fastQuery:true,activityIds:['.main.MainTabActivity','.login.LoadingActivity'],matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,action:'back',matches:'TextView[text=\"了解并试用服务\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15338834'},{key:1,action:'back',matches:'[text=\"新机礼包专享\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b9045305-ce34-43f7-ab86-b48a672281cb',snapshotUrls:['https://i.gkd.li/i/18843418','https://i.gkd.li/i/20139706']}]}]},{id:'com.fongmi.android.tv',name:'影视',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.activity.MainActivity',matches:'[id=\"com.fongmi.android.tv:id/buttonPanel\"] >2 [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14035154'}]}]},{id:'com.movie.store',name:'影视仓',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'快手广告',activityIds:'com.github.tvbox.osc.ui.activity.mobile.MobileHomeActivity',matches:'[text=\"广告\"] +2 View > View + TextView',snapshotUrls:'https://i.gkd.li/i/13476107'},{key:1,activityIds:'com.github.tvbox.osc.ui.activity.mobile.MobileHomeActivity',matches:'[desc$=\"dislike\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/df960a4d-764d-4a9e-bb1e-f0ab325e4cb0',snapshotUrls:'https://i.gkd.li/i/14396706'}]}]},{id:'com.le123.ysdq',name:'影视大全',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.elinkway.infinitemovies.ui.activity.NewMainActivity',matches:'[id=\"com.le123.ysdq:id/ad_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/13635244'}]}]},{id:'com.flttrade.flt1064trade.gong',name:'影视工场',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯广告',activityIds:'com.flttrade.flt1064trade.gong.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13759472'},{key:1,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/fc9d81bc-d215-4ebd-84a9-ed369d63f037',snapshotUrls:'https://i.gkd.li/i/13798323'},{key:2,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text^=\"打开或下载\" || text=\"了解更多\" || text^=\"下载或打开\"]',exampleUrls:'https://e.gkd.li/bd2a716e-691a-4c2c-91e2-da41e3bf2b9c',snapshotUrls:'https://i.gkd.li/i/13798327'}]}]},{id:'cn.yonghui.hyd',name:'永辉生活',groups:[{key:1,name:'全屏广告-红包弹窗',desc:'点击关闭',rules:[{key:1,name:'好券即将过期弹窗',activityIds:'cn.yonghui.hyd.coupon.couponfactory.CouponFactoryActivity',matches:['[id=\"cn.yonghui.hyd:id/advance\" || id=\"cn.yonghui.hyd:id/couponsWillGoneHeaderIv\"]','[id=\"cn.yonghui.hyd:id/close\"]'],snapshotUrls:['https://i.gkd.li/i/13414401','https://i.gkd.li/i/13414444']}]}]},{id:'com.ky.medical.reference',name:'用药参考',groups:[{key:-1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:'[id=\"com.ky.medical.reference:id/btn_go\"][text^=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/12918049',order:-10},{key:0,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ky.medical.reference.promotion.AdDialogActivity',matches:'[id=\"com.ky.medical.reference:id/icClose\"]',snapshotUrls:'https://i.gkd.li/i/12840924'}]}]},{id:'com.youku.phone',name:'优酷视频',groups:[{key:3,name:'全屏广告-视频推荐弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.youku.vip.wrapper.VipHomeActivity',matches:'[id=\"com.youku.phone:id/closeView\"][desc=\"关闭弹层\"]',snapshotUrls:'https://i.gkd.li/i/12701029'}]},{key:4,name:'全屏广告-视频播放时的广告',desc:'点击[关闭广告]',rules:[{key:0,fastQuery:true,activityIds:'com.youku.ui.activity.DetailActivity',matches:'[text=\"关闭广告\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/529c75b6-1a97-4765-856b-dd4d4c810207',snapshotUrls:'https://i.gkd.li/i/14321401'},{key:1,fastQuery:true,activityIds:'com.youku.ui.activity.DetailActivity',matches:'[vid=\"xadsdk_pause_ad_close\"]',exampleUrls:'https://m.gkd.li/57941037/42773084-a7db-4e70-878d-6a5eacd5ecb2',snapshotUrls:'https://i.gkd.li/i/14321469'}]},{key:5,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,name:'视频播放时的广告',fastQuery:true,activityIds:'com.youku.ui.activity.DetailActivity',matches:'[vid=\"novelad_corner_close\"]',exampleUrls:'https://m.gkd.li/57941037/8994fdc0-fce0-4a06-8bc5-2ff23fc3afe5',snapshotUrls:'https://i.gkd.li/i/14321461'},{key:1,name:'历史记录/搜索页面广告',fastQuery:true,activityIds:['com.youku.android.youkuhistory.activity.HistoryActivity','com.soku.searchsdk.activity.SearchActivity'],matches:'[vid=\"novel_banner_ad_close\"]',exampleUrls:'https://m.gkd.li/57941037/7a160f41-b101-40dc-b875-533623228406',snapshotUrls:['https://i.gkd.li/i/14670383','https://i.gkd.li/i/14680702']},{key:2,fastQuery:true,activityIds:'com.youku.ui.activity.DetailActivity',matches:'[vid=\"xadsdk_banner_ad_close\"]',exampleUrls:'https://e.gkd.li/8577d2e5-20a4-40e0-92f0-191bafeb55ed',snapshotUrls:'https://i.gkd.li/i/16925042'}]},{key:6,name:'分段广告-首页卡片广告',fastQuery:true,activityIds:'com.youku.v2.HomePageEntry',rules:[{key:0,matches:'[vid=\"novel_banner_ad_feed_back\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6ae8cc7b-1302-4f10-b544-8d8265a69610',snapshotUrls:'https://i.gkd.li/i/16925043'},{preKeys:[0],matches:'[text=\"就是不感兴趣\"]',exampleUrls:'https://e.gkd.li/be57974c-6656-4619-aed8-c61421f6a748',snapshotUrls:'https://i.gkd.li/i/16977036'}]}]},{id:'com.yek.android.uniqlo',name:'优衣库',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.yek.android.uniqlo.uiux.Home.activity.HomeActivity',matches:'ImageView[id=\"com.yek.android.uniqlo:id/pop_close\"]',snapshotUrls:'https://i.gkd.li/i/13212320'}]},{key:2,name:'更新提示',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.WelcomeActivity',matches:'@TextView[text=\"取消\"] + TextView[text=\"确定\"]',snapshotUrls:'https://i.gkd.li/i/13446421'}]}]},{id:'com.zhishan.washer',name:'悠洗',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] + View[text=\"\"][childCount=1] > Image[text=\"\"][childCount=0][visibleToUser=true]',exampleUrls:'https://e.gkd.li/355f6e11-c21f-4cb2-b103-1a56032da15c',snapshotUrls:'https://i.gkd.li/i/17002026'},{key:1,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -4 View[text=\"\"][childCount=1] > Image[text=\"\"][childCount=0][visibleToUser=true]',exampleUrls:'https://e.gkd.li/13cb561b-cfd5-44a8-b8ed-8bc1500b73a8',snapshotUrls:'https://i.gkd.li/i/17088067'}]}]},{id:'com.yitong.mbank.psbc',name:'邮储银行',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.module.home.view.activity.MainActivity','.module.app.view.customview.dialog.DialogUpdateApk'],matches:'Button[id=\"com.yitong.mbank.psbc:id/bt_cancel\"]',snapshotUrls:['https://i.gkd.li/i/12685350','https://i.gkd.li/i/13695462']}]},{key:2,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.yitong.mbank.psbc.module.home.view.activity.MainActivity',matches:'[id=\"com.yitong.mbank.psbc:id/iv_theme\"] + [id=\"com.yitong.mbank.psbc:id/iv_theme_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/12755516'}]},{key:3,name:'局部广告-首页-浮窗广告',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.yitong.mbank.psbc.module.home.view.activity.MainActivity',matches:'[id=\"com.yitong.mbank.psbc:id/img_close_float_window\"]',snapshotUrls:'https://i.gkd.li/i/13797314'}]}]},{id:'com.gamersky',name:'游民星空',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/16322789'},{key:1,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/16333782'},{key:2,fastQuery:true,matches:'[vid=\"ms_skipView\"]',exampleUrls:'https://e.gkd.li/4b7fd3fe-8467-49e3-93af-64515416911c',snapshotUrls:'https://i.gkd.li/i/16860311',excludeSnapshotUrls:'https://i.gkd.li/i/16902939'},{key:3,fastQuery:true,position:{left:'width * 0.9041',top:'width * 0.1598'},matches:'[vid=\"animation_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6bca4f19-320d-42e4-affb-4667a8112653',snapshotUrls:'https://i.gkd.li/i/17565808'}],order:-10},{key:1,name:'局部广告-卡片广告',fastQuery:true,rules:[{key:0,activityIds:['.main.activity.LibMainActivity','.common.activity.LibDetailContentDetailActivity'],matches:['[text=\"广告\" || vid=\"badge\"][visibleToUser=true]','[vid=\"delete\" || vid=\"close\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/18122883','https://i.gkd.li/i/18122884','https://i.gkd.li/i/20422031']},{key:1,activityIds:'com.gamersky.common.activity.LibDetailContentDetailActivity',matches:'WebView >2 View[childCount=2] > View[index=1] > @View[clickable=true][visibleToUser=true][childCount=0] <<n [vid=\"contentWebView\"]',snapshotUrls:'https://i.gkd.li/i/14622935',excludeSnapshotUrls:'https://i.gkd.li/i/14892583'},{key:2,activityIds:'com.gamersky.common.activity.LibDetailContentDetailActivity',matches:'@[clickable=true][visibleToUser=true][text=\"\"] - [childCount=0][text=\"广告\"] <<n [vid=\"nested_view_group\" || vid=\"contentWebView\"]',snapshotUrls:['https://i.gkd.li/i/13635579','https://i.gkd.li/i/15477470','https://i.gkd.li/i/17356753']},{key:4,activityIds:'com.gamersky.main.activity.LibMainActivity',matches:'[vid=\"recommended_reviews_or_rating_close_img\"]',exampleUrls:'https://e.gkd.li/f214c099-c22a-4c20-abc0-4cdddc2fe614',snapshotUrls:'https://i.gkd.li/i/16556122'}]},{key:2,name:'功能类-签到成功弹窗',desc:'点击[确定]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.gamersky.main.activity.LibMainActivity',matches:['[text=\"签到成功！\"]','[text=\"确定\"]'],exampleUrls:'https://m.gkd.li/57941037/696e417a-3100-43a2-a401-f4f80dfa9f47',snapshotUrls:'https://i.gkd.li/i/14761502'}]}]},{id:'com.youdao.translator',name:'有道翻译官',groups:[{key:1,name:'局部广告-翻译界面-结果下方广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.youdao.translator.activity.trans.TransResultActivity',matches:'@ImageView[id=\"com.youdao.translator:id/close_iv\"] + [id=\"com.youdao.translator:id/native_ad_flag_tv\"]',snapshotUrls:'https://i.gkd.li/i/13259910'}]}]},{id:'com.youdao.note',name:'有道云笔记',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:1,name:'首页上方卡片广告',fastQuery:true,activityIds:'com.youdao.note.activity2.MainActivity',matches:'[id=\"com.youdao.note:id/recycle_view\"] + [id=\"com.youdao.note:id/close_ad\"]',snapshotUrls:'https://i.gkd.li/i/13379524'}]}]},{id:'com.example.youxyouy',name:'有鱼生活',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ddeb0c34-6a3d-407d-b600-96d21dd1f77b',snapshotUrls:['https://i.gkd.li/i/20637763','https://i.gkd.li/i/20637764']}]}]},{id:'io.dcloud.H576E6CC7',name:'鱼泡网',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.yupao.entry.MainActivity',matches:'[vid=\"ad_close\"]',exampleUrls:'https://m.gkd.li/57941037/42273686-b44a-4964-80a5-84b55e6ad75c',snapshotUrls:'https://i.gkd.li/i/14731764'},{key:1,activityIds:'com.yupao.entry.MainActivity',matches:'[text=\"广告\"] <2 View +3 View > TextView[clickable=true]',exampleUrls:'https://m.gkd.li/57941037/123997dd-4783-4aac-a787-e02daccd43da',snapshotUrls:'https://i.gkd.li/i/14732000'},{key:2,fastQuery:true,activityIds:'com.yupao.entry.MainActivity',matches:'ImageView < @FrameLayout <3 FrameLayout <2 FrameLayout - FrameLayout >2 [text=\"摇动或点击了解更多\"]',exampleUrls:'https://m.gkd.li/57941037/c79e700b-74ef-40bf-93e5-222d5e2a8a26',snapshotUrls:'https://i.gkd.li/i/14743452'}]},{key:2,name:'局部广告-悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,activityIds:'com.yupao.entry.MainActivity',matches:'@[vid=\"close\"][visibleToUser=true] - [vid=\"flItemContent\"]',exampleUrls:'https://m.gkd.li/57941037/42273686-b44a-4964-80a5-84b55e6ad75c',snapshotUrls:'https://i.gkd.li/i/14731764'}]}]},{id:'com.yujian.ResideMenuDemo',name:'雨见',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.yujian.MainActivity',matches:'TextView[id=\"com.yujian.ResideMenuDemo:id/btn_selectOther\"]',snapshotUrls:'https://i.gkd.li/i/13224234'}]}]},{id:'com.yuque.mobile.android.app',name:'语雀',groups:[{key:0,name:'局部广告-\"用语雀公众号\"横幅提示',desc:'点x取消提示',rules:[{activityIds:'com.yuque.mobile.android.app.rn.activity.ReactNativeMainActivity',matches:'TextView[text=\"了解更多\"] + ViewGroup[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12911014'}]},{key:1,name:'功能类-自动原图',desc:'如果没有勾选原图, 则勾选',rules:[{activityIds:'com.yuque.mobile.android.app.rn.activity.ReactNativeMainActivity',matches:'ViewGroup[desc=\"原图未勾选\"][clickable=true][childCount=2]',snapshotUrls:'https://i.gkd.li/i/12911013'}]}]},{id:'com.ydtx.camera',name:'元道经纬相机',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true][top<600]',exampleUrls:'https://e.gkd.li/a2e4b32b-dfee-4626-9612-6df0cb530f9e',snapshotUrls:['https://i.gkd.li/i/20882921','https://i.gkd.li/i/20896758'],excludeSnapshotUrls:'https://i.gkd.li/i/20882935'},{key:1,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/20883248'}],order:-10}]},{id:'com.vivo.remoteassistant',name:'远程协助',groups:[{key:1,name:'功能类-自动同意远程协助请求',desc:'发来远程协助请求，点击同意',rules:[{fastQuery:true,activityIds:'.InviteeActivity',matches:['[text=\"发来远程协助请求\"][visibleToUser=true]','Button[vid=\"inviteeAgree\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/20768251'}]}]},{id:'com.wwwscn.yuexingbao',name:'悦通行',groups:[{key:1,name:'功能类-扫码确认解锁',desc:'扫码成功后点击[确认并解锁]',rules:[{fastQuery:true,activityIds:'.ui.qrcode.ScanResultActivity',matches:['[text=\"扫码成功\"]','[text=\"确认并解锁\"]'],exampleUrls:'https://e.gkd.li/31a62ba3-9329-4abe-ab30-99006ffa04d4',snapshotUrls:'https://i.gkd.li/i/17632893'}]}]},{id:'com.heytap.reader',name:'阅读',groups:[{key:2,name:'全屏广告-首页弹窗广告',rules:[{fastQuery:true,activityIds:'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',matches:'[id=\"com.zhangyue.commonplugin:id/dialog_welfare_card_close\"]',exampleUrls:'https://e.gkd.li/76f226bb-fcd4-439a-9eed-520a9c35a0c0',snapshotUrls:'https://i.gkd.li/i/19890575'}]},{key:3,name:'局部广告-首页浮窗广告',rules:[{fastQuery:true,activityIds:'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',matches:'[id=\"com.heytap.reader:id/float_delete\"]',exampleUrls:'https://m.gkd.li/6328439/860371ea-1f09-4f82-8ed6-1436eca4a50d',snapshotUrls:'https://i.gkd.li/i/13387138'}]},{key:4,name:'局部广告-今日推荐',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',matches:'[id=\"com.heytap.reader:id/iv_float_read_continue_close\"]',exampleUrls:'https://m.gkd.li/6328439/3ee7210c-970e-4c9a-acb6-9254245c27a0',snapshotUrls:'https://i.gkd.li/i/13387159'}]}]},{id:'com.cmstop.shaoxing',name:'越牛新闻',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"com.cmstop.shaoxing:id/roundProgressBar\"]',snapshotUrls:'https://i.gkd.li/i/13611775'}],order:-10}]},{id:'com.miHoYo.cloudgames.Nap',name:'云·绝区零',groups:[{key:1,name:'功能类-自动点击[使用流量进行游戏]',rules:[{fastQuery:true,activityIds:'com.mihoyo.cloudgame.main.MiHoYoCloudMainActivity',matches:'[text=\"使用流量进行游戏\" || text=\"继续使用移动网络\"][visibleToUser=true]',exampleUrls:['https://e.gkd.li/6936d19b-bd2a-46d4-8284-93f0b2238359','https://e.gkd.li/f1d57678-ce9a-4384-b7ea-077e55b2aa49'],snapshotUrls:['https://i.gkd.li/i/20705751','https://i.gkd.li/i/20705824']}]}]},{id:'com.miHoYo.cloudgames.hkrpg',name:'云·星穹铁道',groups:[{key:1,name:'功能类-自动点击[使用流量进行游戏]',rules:[{fastQuery:true,activityIds:'com.mihoyo.cloudgame.main.MiHoYoCloudMainActivity',matches:'[text=\"使用流量进行游戏\"]',exampleUrls:'https://m.gkd.li/57941037/f33b53ea-32a2-48b3-a4a8-54bfa8b1fdd8',snapshotUrls:'https://i.gkd.li/i/14784161'}]}]},{id:'com.miHoYo.cloudgames.ys',name:'云·原神',groups:[{key:1,name:'功能类-自动点击[使用流量进行游戏]',rules:[{fastQuery:true,activityIds:'com.mihoyo.cloudgame.main.MiHoYoCloudMainActivity',matches:'[text=\"使用流量进行游戏\"]',exampleUrls:'https://m.gkd.li/57941037/84c18536-b3a4-4f6e-99b2-264c1a36beb5',snapshotUrls:'https://i.gkd.li/i/14783168'}]}]},{id:'com.mosoink.teach',name:'云班课',groups:[{key:0,name:'全屏广告-首页班课列表广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.mosoink.teach.MainMenuActivity',rules:[{key:0,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',exampleUrls:'https://m.gkd.li/64072399/4f7366d4-77eb-4a11-8e08-26afc29f29ed',snapshotUrls:'https://i.gkd.li/i/13778179'},{key:1,matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup -4 ViewGroup >2 [text^=\"扭动手机\"]',exampleUrls:'https://m.gkd.li/64072399/ab4a196f-725d-4e03-aabf-fb0eb6018f51',snapshotUrls:'https://i.gkd.li/i/13786802'},{key:2,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://m.gkd.li/64072399/69bb91ee-5367-4819-94d7-90e357dd9d3c',snapshotUrls:'https://i.gkd.li/i/13784406'},{key:3,matches:'[vid=\"interact_ad_root\"] > [vid=\"iv_close\"]',exampleUrls:'https://m.gkd.li/64072399/695871fb-9c73-4c93-a6d1-18d90786604a',snapshotUrls:'https://i.gkd.li/i/13778123'}]}]},{id:'com.heytap.cloud',name:'云服务',groups:[{key:1,name:'更新提示',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.heytap.cloud.home.ui.CloudSettingsActivity2',matches:['[text=\"检测到新版本\"]','[vid=\"cancel\"]'],snapshotUrls:'https://i.gkd.li/i/16097208'}]}]},{id:'com.huawei.hidisk',name:'云空间',groups:[{key:1,name:'全屏广告-[升级云空间]弹窗',desc:'点击[放弃]/[以后再说]/[关闭]',fastQuery:true,rules:[{key:1,activityIds:'com.huawei.android.hicloud.ui.activity.BackupNotificationActivity',matches:['[text=\"免费升级云空间\" || text=\"云空间不够了\"]','[text=\"放弃\" || text=\"以后再说\"]'],exampleUrls:'https://e.gkd.li/5a445ec2-e3bf-445a-be82-7c91036bd05a',snapshotUrls:['https://i.gkd.li/i/14881774','https://i.gkd.li/i/14881775']},{key:2,activityIds:'com.huawei.android.hicloud.ui.activity.GuideWebViewActivity',matches:'@[clickable=true] + [visibleToUser=true][text^=\"equityDistri\"] <<n [vid=\"guid_webview_mian\"]',exampleUrls:'https://e.gkd.li/a541bce4-3fb3-412a-8c51-d93f4eb78848',snapshotUrls:['https://i.gkd.li/i/15523963','https://i.gkd.li/i/16511513']}]}]},{id:'com.unionpay',name:'云闪付',groups:[{key:2,name:'分段广告-支付完成界面卡片广告',fastQuery:true,activityIds:'com.unionpay.activity.react.UPActivityReactNative',rules:[{key:0,matches:'[id=\"bannerBox\"] > @View[clickable=true] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13070564'},{preKeys:[0],key:1,matches:'[text=\"关闭广告\"]',snapshotUrls:'https://i.gkd.li/i/13070974'}]},{key:9,name:'局部广告-右侧悬浮广告',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,position:{left:'width * 0.8893',top:'width * 0.4607'},activityIds:'com.unionpay.activity.UPActivityMain',matches:'@[vid=\"frog_float\"][visibleToUser=true] >2 [vid=\"close_view\"]',exampleUrls:'https://m.gkd.li/57941037/0f4f6a7f-55ce-4f87-a4cb-97e9c7107359',snapshotUrls:'https://i.gkd.li/i/14586427'}]},{key:10,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.activity.UPActivityMain',matches:'[id=\"com.unionpay:id/view_locate_close\"]',snapshotUrls:'https://i.gkd.li/i/13634882'},{key:1,activityIds:['.activity.UPActivityMain','.base.UPDialog'],matches:['[text*=\"访问您的位置信息\"]','[text=\"不允许\"]'],snapshotUrls:['https://i.gkd.li/i/12695773','https://i.gkd.li/i/14209001']}]},{key:12,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.base.UPDialog',matches:'[text=\"开启消息通知\"] < * + [id=\"com.unionpay:id/view_alert_cancel\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12695736'}]},{key:13,name:'全屏广告-天天签到-获得新勋章提示',desc:'点击左上角返回',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.unionpay.cordova.UPActivityCordovaWeb',matches:'WebView[text=\"天天签到\"] TextView[text=\"炫耀一下\"] + TextView[clickable=true]',snapshotUrls:'https://i.gkd.li/i/13440341'}]},{key:15,name:'全屏广告-领取优惠弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.unionpay.cordova.UPActivityCordovaWeb',matches:'@View[clickable=true][text=\"关闭按钮\"] <<n [vid=\"view_content_container\"]',snapshotUrls:'https://i.gkd.li/i/13848688'}]}]},{id:'com.jovetech.CloudSee.temp',name:'云视通',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.jovision.saas.multiplay.ui.JVMultiPlayActivity',matches:'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][text=null] <<n [vid=\"mAdContainer\"]',exampleUrls:'https://e.gkd.li/1118299d-d74c-4f64-b5c8-fa1d8d2a48db',snapshotUrls:'https://i.gkd.li/i/16537379'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.jovision.saas.ui.activity.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/92d3c1a3-3990-4f2c-b564-6f79f69f9b14',snapshotUrls:'https://i.gkd.li/i/16567977'}]}]},{id:'com.shinyv.cnr',name:'云听',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'yt.com.module.home.MainActivity',matches:'[vid=\"iv_close\"]',exampleUrls:'https://e.gkd.li/d1680c51-70c8-4d50-9560-f5e091685ee8',snapshotUrls:'https://i.gkd.li/i/16914130'}]}]},{id:'com.yunyi.smartcamera',name:'云蚁物联',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.ants360.yicamera.activity.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/ad388d03-bb0a-44a4-92ee-af37b83776da',snapshotUrls:'https://i.gkd.li/i/24979355'},{key:1,fastQuery:true,activityIds:'com.xiaoyi.yiplayer.ui.PlayerActivity',matches:'@[vid=\"ivClose\"] - [text=\"专属福利\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/248a2243-5323-4a21-bed2-25f6afc8a88b',snapshotUrls:'https://i.gkd.li/i/24979364'},{key:2,fastQuery:true,matches:['[text*=\"广告\"][visibleToUser=true]','[text=\"关闭\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/24989298'},{key:3,fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/24989256'},{key:4,fastQuery:true,matches:'[vid=\"iv_ad_logo\"] - [vid=\"iv_close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/25016571'}]},{key:2,name:'局部广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.ants360.yicamera.activity.MainActivity',matches:'ImageView[childCount=0] < @* - * > [text^=\"立即\" || text*=\"了解更多\" || text*=\"快手\"][visibleToUser=true] <<n [vid=\"native_ad_container\"]',exampleUrls:'https://e.gkd.li/0f5246d3-42c4-486d-9694-f90dd19a22d2',snapshotUrls:['https://i.gkd.li/i/24979363','https://i.gkd.li/i/24989254','https://i.gkd.li/i/24989255']}]},{key:3,name:'权限提示-通知权限',rules:[{key:0,fastQuery:true,activityIds:'com.ants360.yicamera.activity.MainActivity',matches:'[text=\"开启通知\"][childCount=0] +n [text=\"暂不开启\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/25017451'}]}]},{id:'com.yunzhi.tiyu',name:'云运动',groups:[{key:2,name:'分段广告-首页卡片广告',desc:'点击关闭-点击[不感兴趣]',fastQuery:true,rules:[{key:0,name:'点击关闭',activityIds:'com.yunzhi.tiyu.module.MainActivity',matches:'@Image[childCount=0][visibleToUser=true][width<80&&height<80] < View[childCount=1] +n View[childCount=2] >(2,3) [text=\"广告\"] <<n [vid=\"viewAd\" || vid=\"fl_flow_content\"]',exampleUrls:'https://m.gkd.li/57941037/369a65c8-4207-441b-a20d-2f5e402ea983',snapshotUrls:['https://i.gkd.li/i/14428780','https://i.gkd.li/i/14428777','https://i.gkd.li/i/14446375']},{preKeys:[0],key:1,name:'点击[不感兴趣]',activityIds:'com.yunzhi.tiyu.module.MainActivity',matches:'@[clickable=true] > [text=\"不感兴趣\"]',exampleUrls:'https://m.gkd.li/57941037/1e5bff7e-b82b-458e-9179-364e6bf2c1da',snapshotUrls:'https://i.gkd.li/i/14446216'}]}]},{id:'com.zjwh.android_wh_physicalfitness',name:'运动世界',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matches:'[id=\"com.zjwh.android_wh_physicalfitness:id/iv_close\" || vid=\"ad_close\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/12673231','https://i.gkd.li/i/12673523','https://i.gkd.li/i/13166472','https://i.gkd.li/i/22437128','https://i.gkd.li/i/22449070','https://i.gkd.li/i/22495266','https://i.gkd.li/i/22495298','https://i.gkd.li/i/22495361','https://i.gkd.li/i/22508959']},{key:1,fastQuery:true,activityIds:['.activity.HomeActivity','.mvi.home.HomeActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/a7753ec9-5382-42ee-9a41-b4e2b61b9050',snapshotUrls:'https://i.gkd.li/i/17355585'},{key:2,fastQuery:true,activityIds:['.activity.HomeActivity','.ui.AdActivity','.mvi.home.HomeActivity'],matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] < ViewGroup <n ViewGroup <n ViewGroup  >n [text=\"广告\"]',exampleUrls:'https://e.gkd.li/cb21dc41-bcca-47ec-ae0a-df9aedde48b5',snapshotUrls:['https://i.gkd.li/i/12826124','https://i.gkd.li/i/13228216','https://i.gkd.li/i/13601132','https://i.gkd.li/i/22427117']},{key:3,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][width<110 && height<110] - RelativeLayout >(1,2) [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/6882bcf4-1aa1-47e1-b7ad-299d4aa7bfd9',snapshotUrls:['https://i.gkd.li/i/13554229','https://i.gkd.li/i/22960459']},{key:4,activityIds:'com.zjwh.android_wh_physicalfitness.activity.SplashActivity',matches:'@[text=\"跳过\"][clickable=true] +3 RelativeLayout >2 [text=\"点击跳转至第三方页面\"]',snapshotUrls:'https://i.gkd.li/i/12673349'},{key:5,fastQuery:true,activityIds:['.activity.HomeActivity','.mvi.home.HomeActivity'],matches:'@ImageView[childCount=0] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/2debed48-37f2-43ec-8b0f-3a5e06c23ed1',snapshotUrls:['https://i.gkd.li/i/17378546','https://i.gkd.li/i/23145860']},{key:6,fastQuery:true,activityIds:['.activity.HomeActivity','.mvi.home.HomeActivity','.mvi.notice.NoticeListActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/f640d0c2-197d-45ef-98ff-58a04920bd2d',snapshotUrls:['https://i.gkd.li/i/17358027','https://i.gkd.li/i/23206013','https://i.gkd.li/i/23455815']},{key:7,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][width<80 && height<80] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22946236'},{key:8,fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][width<100 && height<100] <2 RelativeLayout < RelativeLayout < RelativeLayout < RelativeLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/22946242'},{key:9,fastQuery:true,activityIds:'.mvi.home.HomeActivity',matches:'@Image[text=\"\"][childCount=0][width<70 && height<70] < View[childCount=1] + * >2 [childCount=0][text=\"淘宝精选广告\"] <<n [vid=\"fl_native\"]',snapshotUrls:'https://i.gkd.li/i/23254520'},{key:10,fastQuery:true,activityIds:'.mvi.me.VipPayActivity',matches:'@[desc=\"top_close_button\"][clickable=true] < * + * > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/23255102'}]},{key:10,name:'局部广告-卡片广告',desc:'点击关闭',activityIds:'.mvi.home.HomeActivity',rules:[{key:0,fastQuery:true,matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] <<n * >4 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/ca109fa3-5a7a-400d-911b-36dd8ac42656',snapshotUrls:['https://i.gkd.li/i/22387192','https://i.gkd.li/i/22656913','https://i.gkd.li/i/22863607','https://i.gkd.li/i/23087561']},{key:1,fastQuery:true,matches:'@Image[childCount=0] < [childCount=1] <n * - * >3 [childCount=0][text=\"广告\"] <<n [vid=\"fl_native\"]',snapshotUrls:'https://i.gkd.li/i/22585927'},{key:2,fastQuery:true,activityIds:'.mvi.home.HomeActivity',matches:'[vid=\"ksad_ad_dislike\"]',snapshotUrls:'https://i.gkd.li/i/23054142'},{key:3,fastQuery:true,activityIds:'.mvi.home.HomeActivity',matches:'@ImageView[width<70 && height<70][childCount=0] < FrameLayout[childCount=1] - * > TextView[childCount=0][text.length>0] <<n [vid=\"fl_native\"]',snapshotUrls:['https://i.gkd.li/i/23289399','https://i.gkd.li/i/23289402']},{key:4,fastQuery:true,activityIds:'com.zjwh.android_wh_physicalfitness.mvi.home.HomeActivity',matches:'@[id=\"com.kwad.dy.sdk:id/ksad_ad_dislike\"][clickable=true] - * >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/23773011'}]},{key:11,name:'分段广告-卡片广告',desc:'点击关闭-不感兴趣',activityIds:'.mvi.home.HomeActivity',rules:[{key:0,fastQuery:true,matches:'@Image[childCount=0][width<70&&height<70][id=null][text=\"\"][desc=null] < View[childCount=1][parent.childCount!=2] <n View <n View >n [childCount=0][text=\"广告\"] <<n [vid=\"fl_native\"]',snapshotUrls:['https://i.gkd.li/i/22514469','https://i.gkd.li/i/22691578','https://i.gkd.li/i/22798099']},{key:1,fastQuery:true,matches:'@TextView[text=\"···\"][visibleToUser=true] <n * >3 [childCount=0][text=\"广告\"] <<n [vid=\"fl_native\"]',snapshotUrls:['https://i.gkd.li/i/22861405','https://i.gkd.li/i/23451517']},{preKeys:[0,1],fastQuery:true,matches:'@[clickable=true] >(1,2) [text=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/22514499','https://i.gkd.li/i/22691590']}]},{key:12,name:'通知提示-公告',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['.mvi.home.HomeActivity','.mvi.splash.AdActivity'],matches:'@ImageView[vid=\"dialog_close\"] +n [text*=\"公告\"]',snapshotUrls:['https://i.gkd.li/i/22526467','https://i.gkd.li/i/23883452']},{key:1,fastQuery:true,activityIds:'.mvi.home.HomeActivity',matches:'[vid=\"iv\"] + [vid=\"iv_cancel\"]',snapshotUrls:'https://i.gkd.li/i/23205159'}]},{key:13,name:'权限提示-不开启可选权限',desc:'点击[暂不开启，继续跑步]',rules:[{key:0,fastQuery:true,activityIds:'.mvi.home.HomeActivity',matches:['[text=\"必要权限未开启！\" || text^=\"当前必要权限不完整\"]','[text^=\"暂不开启\"]'],snapshotUrls:['https://i.gkd.li/i/23054372','https://i.gkd.li/i/23054373']}]},{key:14,name:'权限提示-定位权限',desc:'点击取消',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.mvi.home.HomeActivity',matches:['[text=\"定位服务未开启\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/3be509e1-0663-4989-b763-6d68d88979fe',snapshotUrls:'https://i.gkd.li/i/23096707'}]}]},{id:'com.cheersedu.app',name:'湛庐阅读',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.main.MainActivity',matches:'[id=\"com.cheersedu.app:id/iv_version_close\"]',snapshotUrls:'https://i.gkd.li/i/13315712'}]}]},{id:'com.shengjue.cashbook',name:'章鱼记账',groups:[{key:1,name:'全屏广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.hjq.demo.ui.activity.SplashActivity',matches:'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] <n ViewGroup < ViewGroup - ViewGroup >2 [text=\"广告\"]',exampleUrls:'https://e.gkd.li/2828ac84-f5e0-44c0-aab8-a12bff976fca',snapshotUrls:'https://i.gkd.li/i/22882021'},{key:1,fastQuery:true,activityIds:'com.hjq.demo.ui.activity.SplashActivity',matches:'@ImageView[childCount=0][width<60 && height<60] < FrameLayout[childCount=1] - LinearLayout > [text^=\"立即\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a305c944-d3fe-4531-958a-1b6356f60c32',snapshotUrls:'https://i.gkd.li/i/22961847'}]}]},{id:'com.lphtsccft',name:'涨乐财富通',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.lphtsccft.zhangle.startup.SplashScreenActivity','com.lphtsccft.zhangle.main.MainActivity'],matches:'[id=\"com.lphtsccft:id/tv_never\"][text=\"不再提醒\"]',snapshotUrls:['https://i.gkd.li/i/12646899','https://i.gkd.li/i/12646925']}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.zhangle.main.MainActivity',rules:[{key:0,matches:'[text*=\"升级体验\"] +2 LinearLayout > [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/12699308'},{key:1,matches:'[vid=\"iv_update_close\"]',snapshotUrls:'https://i.gkd.li/i/16760030'}]},{key:3,name:'局部广告-右侧悬浮广告',rules:[{activityIds:'com.lphtsccft.zhangle.main.MainActivity',matches:'[id=\"com.lphtsccft:id/home_float_close\"]',snapshotUrls:'https://i.gkd.li/i/12892821'}]}]},{id:'com.tencent.qt.sns',name:'掌上穿越火线',groups:[{key:1,name:'全屏广告-首页活动弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.tencent.qt.sns:id/closebtn\"]',snapshotUrls:'https://i.gkd.li/i/13497978'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.gamehelper.ui.main.MainActivity',matches:['[text=\"版本更新\" || text=\"现在升级\"][visibleToUser=true]','[text=\"取消\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13713478','https://i.gkd.li/i/20851162']}]}]},{id:'com.tencent.djcity',name:'掌上道聚城',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15137209'}],order:-10},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.djcity.activities.homepage.MainActivity',matches:'[vid=\"main_container\"] >7 View[childCount=7] > View[childCount=2] > @View[index=1][childCount=1][clickable=true] > ImageView[childCount=0] <<n [vid=\"main_container\"]',exampleUrls:'https://m.gkd.li/57941037/151fd8a5-8c44-4368-a8ba-3563df44e492',snapshotUrls:'https://i.gkd.li/i/14229532'}]},{key:2,name:'功能类-\"签到成功\"弹窗',desc:'点击\"好的\"',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.djcity.activities.homepage.MainActivity',matches:'@View[clickable=true] > [desc=\"好的\"]',exampleUrls:'https://m.gkd.li/57941037/22ba335b-c225-41f0-97be-a91377ebc121',snapshotUrls:'https://i.gkd.li/i/14229554'}]}]},{id:'com.mygolbs.mybus',name:'掌上公交',groups:[{key:1,name:'分段广告-卡片广告',activityIds:['com.mygolbs.mybus.RTimeActivity','com.mygolbs.mybus.NewHomePageActivity','com.mygolbs.mybus.StationsResultActivityNew','com.mygolbs.mybus.mapsearch.poisearch.PoiSearchActivity'],rules:[{key:1,name:'点击底部中间x关闭图标',matches:'[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] RelativeLayout[childCount=4] > TextView[text.length>0] + ImageView + ImageView[clickable=true][id=null]',snapshotUrls:['https://i.gkd.li/i/12790521','https://i.gkd.li/i/12790706','https://i.gkd.li/i/12790841','https://i.gkd.li/i/12790887']},{key:2,name:'点击右上/下角x关闭图标',matches:'[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] View[childCount=2||childCount=3] > View[childCount=4] > View[childCount=1] > Image[text=\"\"]',snapshotUrls:['https://i.gkd.li/i/12790656','https://i.gkd.li/i/12790903']},{key:3,name:'点击右上角x关闭图标-2',matches:'[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] View[childCount=5] > View[childCount=2][index=4] > View[childCount=1] > Image[text=\"\"]',snapshotUrls:'https://i.gkd.li/i/12790610'},{key:4,name:'点击右上角x关闭图标-3',matches:'[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] View[childCount=2] > View[childCount=6][index=0] > View[childCount=1][index=3] > Image[text=\"\"]',snapshotUrls:'https://i.gkd.li/i/12790941'},{key:5,name:'点击右下角x关闭按钮',matches:'[text=\"广告\"] <3 View + @View[clickable=true] >2 [text=\"×\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/12791122'},{preKeys:[1,2,3,4,5],name:'点击不感兴趣',matches:'@LinearLayout[clickable=true][childCount<=2] > [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/12790671','https://i.gkd.li/i/12790551','https://i.gkd.li/i/12790616','https://i.gkd.li/i/12790707','https://i.gkd.li/i/12790717']}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['com.mygolbs.mybus.mapsearch.poisearch.PoiSearchActivity','com.mygolbs.mybus.LoginActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/12790762','https://i.gkd.li/i/14587392']},{key:1,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'ImageView[childCount=0] < LinearLayout < @LinearLayout[clickable=true] - * > [text=\"反馈\"]',exampleUrls:'https://m.gkd.li/57941037/ec768f05-5431-4684-af40-a7987dff2ec6',snapshotUrls:'https://i.gkd.li/i/14546373'},{key:2,fastQuery:true,activityIds:'com.qq.e.ads.ADActivity',matches:'@ImageView[clickable=true][visibleToUser=true] - [text=\"国货大牌 新年必囤\"]',exampleUrls:'https://m.gkd.li/57941037/f7dc0b47-b37f-409a-aebe-4aaa844aa897',snapshotUrls:'https://i.gkd.li/i/14587397'},{key:3,fastQuery:true,activityIds:['com.mygolbs.mybus.NewHomePageActivity','com.mygolbs.mybus.RTimeActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/14219270','https://i.gkd.li/i/14572506']}]},{key:3,name:'局部广告-顶栏小广告',activityIds:'com.mygolbs.mybus.RTimeActivity',rules:[{name:'点击右侧x关闭按钮',matches:'[id=\"com.mygolbs.mybus:id/ad_close2\"]',snapshotUrls:'https://i.gkd.li/i/12790841'}]},{key:10,name:'权限提示-通知权限',desc:'自动点击\"取消\"',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.defines.CustomDialog',matches:['[text$=\"请开启通知权限\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/12715980'}]},{key:11,name:'功能类-签到成功弹窗',desc:'点击关闭',rules:[{activityIds:'com.mygolbs.mybus.guligold.SignSuccessActivity',matches:'@[id=\"com.mygolbs.mybus:id/iv_close\"] < RelativeLayout - LinearLayout >n [text=\"签到成功\"]',snapshotUrls:'https://i.gkd.li/i/12716035'}]}]},{id:'com.cmbchina.ccd.pluto.cmbActivity',name:'掌上生活',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.CMBRootActivityV2','.secplugin.activity.login.fingerprint.cmbR6VH0R'],matches:'[text=\"暂不更新\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12647025','https://i.gkd.li/i/12727203','https://i.gkd.li/i/13345771']}]},{key:2,name:'全屏广告-首页弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2'],rules:'[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/lly_pop_shell\"] > [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/img_cf_view_close\"]',snapshotUrls:['https://i.gkd.li/i/12647000','https://i.gkd.li/i/13360282']},{key:3,name:'局部广告-右侧悬浮广告',fastQuery:true,matchTime:10000,actionMaximum:2,resetMatch:'app',rules:[{name:'信用卡、我的页面',activityIds:['com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2','com.cmbchina.ccd.pluto.cmbActivity.secondNav'],matches:'[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/img_floating_ad_cmb\"] - [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/img_close_floating_ad_cmb\"]',snapshotUrls:['https://i.gkd.li/i/12647039','https://i.gkd.li/i/12647052']},{name:'查账页面',activityIds:['com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2','com.cmbchina.ccd.pluto.cmbActivity.repaymentBillv3.billRepay','com.cmbchina.ccd.pluto.cmbActivity.repaymentBillv3.billDetail.view'],matches:'@[vid=\"img_cmb_drag_pendant_close\"] + [vid=\"img_cmb_drag_pendant_bg\"]',snapshotUrls:['https://i.gkd.li/i/12647127','https://i.gkd.li/i/14209121']},{name:'发现页',activityIds:'com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2',matches:'[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/view_cat\"] + [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/view_close\"]',snapshotUrls:'https://i.gkd.li/i/13402782'}]},{key:4,name:'权限提示-通知权限',desc:'点击x按钮，不开启系统通知',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:'[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/btn_open_notify\"] + [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/iv_delete\"]',snapshotUrls:['https://i.gkd.li/i/12647068']},{key:5,name:'权限提示-定位权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:'[text=\"定位服务\"] +n * > [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14209071'}]},{id:'com.tencent.qt.qtl',name:'掌上英雄联盟',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/8e923c51-48e7-431c-abf8-e564761b772e',snapshotUrls:'https://i.gkd.li/i/16568456'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.qt.module_appupdate.soft_update.impl.SoftUpdateConfirmActivity',matches:'[id=\"com.tencent.qt.qtl:id/btn_update_cancel\"]',snapshotUrls:'https://i.gkd.li/i/13611286'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.tencent.zone.main.MainZoneHomeActivity',matches:'[vid=\"notice_close_pic\"]',exampleUrls:'https://e.gkd.li/d1747892-c416-4877-a706-fb3c16e5b049',snapshotUrls:'https://i.gkd.li/i/16581606'}]}]},{id:'com.seebaby',name:'掌通家园',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.login.ui.activity.LauncherActivity',matches:'@[id=\"com.seebaby:id/btn_later\"] + [text$=\"新版本\"]',snapshotUrls:'https://i.gkd.li/i/12705351'}]},{key:2,name:'分段广告-信息流、文章底部广告',activityIds:['com.seebaby.login.ui.activity.LauncherActivity','com.seebaby.parent.article.ui.activity.NativeArticleDetailActivity'],rules:[{key:1,matches:'[id=\"com.seebaby:id/tv_ad_detail\"] + [id=\"com.seebaby:id/ic_delad\"]',snapshotUrls:['https://i.gkd.li/i/12705353','https://i.gkd.li/i/12705363']},{key:2,matches:'[id=\"com.seebaby:id/ad_tv_advertiser\"] + [id=\"com.seebaby:id/ad_iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12705372'},{preKeys:[1,2],key:3,matches:'[id=\"com.seebaby:id/tv_un_instrest\"]',snapshotUrls:'https://i.gkd.li/i/12705358'}]},{key:3,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.ranfeng.adranfengsdk.biz.activity.InterstitialActivity','com.tianmu.biz.activity.InterstitialActivity'],matches:'[vid=\"ranfeng_widget_iv_close\" || vid=\"tianmu_widget_iv_close\"][clickable=true]',exampleUrls:'https://e.gkd.li/0ae7b19f-6fa1-4eaf-a5b9-0dfb214541b4',snapshotUrls:['https://i.gkd.li/i/23981370','https://i.gkd.li/i/24360340']}]}]},{id:'com.zgnet.eClass',name:'掌医课堂',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'TextView[id$=\"tv_close_time\"&&text^=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/12644260'}],order:-10},{key:2,name:'功能类-退出确认弹窗',rules:[{matches:'[text*=\"确定要退出\"] < LinearLayout +n LinearLayout > TextView[id$=\"tv_exit_sure\"]',snapshotUrls:'https://i.gkd.li/i/12645513'}]}]},{id:'com.chaozh.iReaderFree',name:'掌阅',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[name!$=\"ViewGroup\"] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/84df4bd7-bdf9-4b34-bb3c-57dfe9c09454',snapshotUrls:['https://i.gkd.li/i/23046697','https://i.gkd.li/i/23186001']},{key:1,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/24635516'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',matches:'[vid=\"dialog_public_top_bar_title_close\"]',snapshotUrls:'https://i.gkd.li/i/16549332'}]}]},{id:'cmb.pb',name:'招商银行',groups:[{key:3,name:'局部广告-首页活动悬浮广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cmb.pb.app.mainframe.container.PBMainActivity',matches:'[vid=\"float_window\"] > [vid=\"ivCancle\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/14208669'}]},{key:10,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'cmb.pb.app.h5container.webviewcontainer.PBWebContainerActivity',matches:'[id=\"cover-img\"] + [text=\"关闭推荐\"]',snapshotUrls:'https://i.gkd.li/i/12706022'},{key:1,fastQuery:true,activityIds:'com.pb.marketing.PopupWindowActivity',matches:'[desc^=\"活动图片\"] + [vid=\"ivCancle\"][desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/14208693'}]},{key:11,name:'权限提示-定位权限',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.app.h5container.webviewcontainer.PBWebContainerActivity','.app.search.PBSearchWebActivity','com.pb.marketing.PopupWindowActivity'],matches:'@[desc=\"关闭\"] - * > [text*=\"开启\"][text*=\"定位\"]',snapshotUrls:['https://i.gkd.li/i/13248893','https://i.gkd.li/i/13897345','https://i.gkd.li/i/14208717']}]}]},{id:'com.huodao.hdphone',name:'找靓机',groups:[{key:1,name:'全屏广告-超级补贴日弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[vid=\"iv_adv\"] + [vid=\"dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/13927567'}]},{key:2,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.huodao.hdphone.mvp.view.main.NewMainActivity',matches:'[vid=\"iv_recycle_close\"]',exampleUrls:'https://m.gkd.li/57941037/dc1534ca-9ab1-4d7b-8da4-6c7992882c94',snapshotUrls:'https://i.gkd.li/i/15052025'}]}]},{id:'com.hanweb.android.zhejiang.activity',name:'浙里办',groups:[{key:1,name:'更新提示',fastQuery:true,resetMatch:'app',rules:[{key:0,actionMaximum:1,matches:'@[id=\"com.hanweb.android.zhejiang.activity:id/iv_cancel\"] -2 * >2 [text=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/13402048'},{key:1,actionMaximumKey:0,matches:'LinearLayout[childCount=2] > LinearLayout[childCount=2] > [text=\"立即升级\"]',snapshotUrls:'https://i.gkd.li/i/13520598'},{preKeys:[1],key:2,matches:'[text=\"版本更新\"] - [id=\"com.hanweb.android.zhejiang.activity:id/rl_back\"]',snapshotUrls:'https://i.gkd.li/i/13521059'}]}]},{id:'com.czbank.mbank',name:'浙商银行',groups:[{key:1,name:'全屏广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mixhome.MainMarsMixAct',matches:'[vid=\"ad_close_btn\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/5c4f7917-8d01-419e-ac77-3d1fb27a9613',snapshotUrls:'https://i.gkd.li/i/23324592'}]}]},{id:'com.xiaolan.tv.chat',name:'真不卡',groups:[{key:1,name:'通知提示-温馨提示弹窗',desc:'点击[确定]',rules:[{key:0,activityIds:'com.xiaolan.tv.chat.MainActivity',matches:'[desc=\"确定\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/884dc3b4-e60d-4b21-90c9-a68b96632070',snapshotUrls:'https://i.gkd.li/i/15484133'},{key:1,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.xiaolan.tv.chat.MainActivity',matches:'[desc=\"我知道了\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fe0403ee-0ffb-4921-a06a-ccefa5c26bcc',snapshotUrls:'https://i.gkd.li/i/16476930'}]},{key:2,name:'分段广告-看视频领奖励广告',desc:'点击关闭-点击[放弃奖励离开]',fastQuery:true,activityIds:'com.qq.e.ads.PortraitADActivity',rules:[{key:0,matches:'@ImageView[visibleToUser=true] < FrameLayout -2 * > [text*=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/15484070'},{preKeys:[0],key:1,matches:'[text=\"放弃奖励离开\"]',snapshotUrls:'https://i.gkd.li/i/15484521'}]},{key:3,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.xiaolan.tv.chat.MainActivity',matches:'@[desc$=\"dislike\"][clickable=true] <2 FrameLayout +4 [text=\"立即下载\"]',exampleUrls:'https://e.gkd.li/ff11b8f3-16d8-4613-a113-827f6389c30e',snapshotUrls:'https://i.gkd.li/i/16476931'}]},{key:4,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] + @View[childCount=1] > Image[childCount=0][text=\"\"]',exampleUrls:'https://e.gkd.li/bbb19188-567d-4e5c-8ffd-f9576b5e1188',snapshotUrls:'https://i.gkd.li/i/16476933'}]}]},{id:'com.zhengnengliang.precepts',name:'正气',groups:[{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:['com.zhengnengliang.precepts.ui.activity.MainActivity','com.zhengnengliang.precepts.ui.dialog.DialogTwoButton'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <(2,3) FrameLayout[childCount=4] +(1,2) FrameLayout[childCount=2] >2 [text^=\"立即\" || text=\"去逛逛\"]',exampleUrls:'https://e.gkd.li/9b352715-611f-4fa3-a66e-cf9203dddf75',snapshotUrls:['https://i.gkd.li/i/12739767','https://i.gkd.li/i/12727705']},{key:1,fastQuery:true,activityIds:'.ui.activity.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/5813656b-8d39-4c14-b459-038fa41366a3',snapshotUrls:'https://i.gkd.li/i/14338307'}]}]},{id:'com.eg.android.AlipayGphone',name:'支付宝',groups:[{key:0,name:'全屏广告-关闭花呗升级弹窗',fastQuery:true,rules:[{key:1,activityIds:['com.alipay.android.msp.ui.views.MspContainerActivity','com.alipay.android.msp.ui.views.MspUniRenderActivity'],matches:['[text=\"根据相关法律法规要求，请尽快完成花呗升级\"]','FrameLayout > FrameLayout  > FrameLayout > [text=\"关闭\"]'],snapshotUrls:['https://i.gkd.li/i/13183946','https://i.gkd.li/i/12826077']},{key:2,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text*=\"花呗服务\"]','@[clickable=true] >2 [text=\"暂不升级，继续付款\"]'],snapshotUrls:['https://i.gkd.li/i/13631362','https://i.gkd.li/i/13857535']},{key:3,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@Image[width<90] - [text=\"花呗服务升级\"] <<3 Dialog <2 View < View[index=parent.childCount.minus(1)] <n WebView <<4 [id=\"com.alipay.multiplatform.phone.xriver_integration:id/h5_pc_container\"]',snapshotUrls:'https://i.gkd.li/i/25000603'}]},{key:1,name:'权限提示-定位权限',fastQuery:true,rules:[{key:0,activityIds:['.AlipayLogin','com.alipay.mobile.nebulax.xriver.activity.XRiverActivity$App','com.alipay.mobile.beehive.cityselect.ui.CeilingHomeCitySelectActivity'],matches:'@[desc=\"取消\"] + [text*=\"位置权限\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/caa96cc4-9943-40d8-8cb6-8c89aa60b20f',snapshotUrls:['https://i.gkd.li/i/18549931','https://i.gkd.li/i/23415365','https://i.gkd.li/i/23415366']},{key:1,activityIds:'.AlipayLogin',matches:'@[desc=\"关闭\"] - LinearLayout >(2,4) [text^=\"定位到\" || text^=\"开启定位权限\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c153cd53-16a1-4d77-bf99-9cac8821ccf8',snapshotUrls:['https://i.gkd.li/i/18551258','https://i.gkd.li/i/19267032','https://i.gkd.li/i/25041632']}]},{key:2,name:'权限提示-通知权限',fastQuery:true,rules:[{key:0,name:'底部悬浮提示',activityIds:['com.alipay.android.phone.messageboxapp.ui.MsgBoxTabActivity','com.eg.android.AlipayGphone.AlipayLogin'],matches:['[text^=\"开启通知权限\" || text^=\"开通推送通知\"][visibleToUser=true]','[id=\"com.alipay.mobile.antui:id/closeButton\"][desc=\"关闭\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13194955','https://i.gkd.li/i/16494085']},{key:1,name:'消息页弹窗提示',activityIds:'com.alipay.mobile.rome.pushservice.integration.PushOpenGuideActivity',matches:'[text=\"选择通知接收范围\"] +3 * > [text=\"暂时不用\"]',snapshotUrls:['https://i.gkd.li/i/13669620','https://i.gkd.li/i/14944514']}]},{key:3,name:'更新提示-版本更新弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:['com.alipay.mobile.alipassapp.alkb.kb.ALPMainPage','.AlipayLogin'],matches:['[text=\"立即更新\" || text=\"马上体验\"]','[text^=\"稍后\"][text.length=4]'],snapshotUrls:['https://i.gkd.li/i/13327095','https://i.gkd.li/i/15010554']},{key:1,activityIds:['com.alipay.mobile.about.ui.AboutAlipayActivity','.AlipayLogin','com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaTransActivity$Main'],matches:['[text=\"版本更新\" || text^=\"Version\"]','[id=\"com.alipay.mobile.antui:id/btn_close\" || id=\"com.alipay.mobile.accountauthbiz:id/close_dialog_button\"]'],snapshotUrls:['https://i.gkd.li/i/13490805','https://i.gkd.li/i/13580594','https://i.gkd.li/i/23236828']},{key:2,activityIds:'.AlipayLogin',matches:'[text=\"立即升级最新版支付宝客户端\"] < LinearLayout + [id=\"com.alipay.mobile.advertisement:id/announcementview_righticon\"]',snapshotUrls:'https://i.gkd.li/i/13490797'}]},{key:4,name:'全屏广告-小组件弹窗',desc:'点击[近期不再提醒我]',rules:[{key:0,fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text=\"设置支付宝小组件\"]','@[clickable=true] > [text=\"关闭\"]'],snapshotUrls:'https://i.gkd.li/i/13327349'},{key:1,activityIds:['com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main','com.alipay.mobile.nebulax.xriver.activity.XRiverActivity'],matches:'[text^=\"去\"][text.length>2] + [text=\"近期不再提醒我\"]',exampleUrls:'https://e.gkd.li/de3df4c8-6ab4-45a0-aec5-0fbdfa75e823',snapshotUrls:['https://i.gkd.li/i/16427922','https://i.gkd.li/i/22984695','https://i.gkd.li/i/22984696','https://i.gkd.li/i/24981728']}]},{key:11,name:'全屏广告-借呗消费信贷协议',desc:'点击X',rules:[{activityIds:'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',matches:'[text=\"同意协议并刷脸验证\"] < * -4 * >2 Image[visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13915022'}]},{key:12,name:'功能类-支付后自动点击完成',fastQuery:true,rules:[{activityIds:['com.alipay.android.msp.ui.views.MspContainerActivity','com.alipay.android.phone.businesscommon.ucdp.nfc.activity.NResPageActivity'],matches:['[text=\"支付成功\" || text=\"充值成功\" || text=\"提交成功\"]','[text=\"完成\"]'],snapshotUrls:['https://i.gkd.li/i/14008852','https://i.gkd.li/i/16328809','https://i.gkd.li/i/17503266','https://i.gkd.li/i/17686972']}]},{key:13,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.eg.android.AlipayGphone.AlipayLogin',matches:'RelativeLayout[childCount=2][desc=\"全屏广告\"] ImageView[desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/14034152'},{key:1,fastQuery:true,activityIds:'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',matches:'WebView > View > View > View > View > @TextView[clickable=true][visibleToUser=true][text=\"\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',exampleUrls:'https://e.gkd.li/ebbd606a-0e21-4fc5-b0c3-49e4d87d065c',snapshotUrls:'https://i.gkd.li/i/16812751'},{key:2,fastQuery:true,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@[text*=\"跳过\"] + [visibleToUser=true][text^=\"账单分期还\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',exampleUrls:'https://e.gkd.li/cc064c84-75a9-4447-b01b-9d5597515093',snapshotUrls:'https://i.gkd.li/i/18409779'},{key:3,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'Image[text=\"关闭弹屏\"]',snapshotUrls:'https://i.gkd.li/i/22531246'},{key:4,fastQuery:true,activityIds:'.AlipayLogin',matches:'@[text=\"我知道了\"][clickable=true] -n [text^=\"用碰一下支付\"]',snapshotUrls:'https://i.gkd.li/i/24563264'}]},{key:14,name:'全屏广告-支付后的推荐弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text$=\"推荐你\"][visibleToUser=true]','@[clickable=true] > [text=\"关闭\"]'],exampleUrls:'https://m.gkd.li/57941037/8daecaeb-35f0-4f3a-8d5a-a19098a992d5',snapshotUrls:['https://i.gkd.li/i/14060628','https://i.gkd.li/i/14893122','https://i.gkd.li/i/15050300','https://i.gkd.li/i/20684144']}]},{key:16,name:'分段广告-扫码乘车后出现的广告',desc:'点击[展开更多]-点击[对该内容不感兴趣]',fastQuery:true,activityIds:'com.alipay.android.phone.wallet.aptrip.ui.activity.result.ResultPageActivityV2',rules:[{key:0,name:'点击[展开更多]',matches:'@[desc=\"展开更多选项\"] - * >2 [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/d7c12df8-a92e-45be-a462-bef23ca9b5fc',snapshotUrls:'https://i.gkd.li/i/14546044'},{key:1,preKeys:[0],name:'点击[对该内容不感兴趣]',matches:'@RelativeLayout[clickable=true] >2 [text$=\"内容不感兴趣\"]',exampleUrls:'https://m.gkd.li/57941037/7008e1da-738c-4790-9f12-6a5155d42c47',snapshotUrls:['https://i.gkd.li/i/14546047','https://i.gkd.li/i/15209602']}]},{key:17,name:'全屏广告-关闭免密支付广告',actionMaximum:1,rules:[{key:0,fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:'@[checked=true] < FrameLayout - [text*=\"免密\"][text$=\"支付\"]',exampleUrls:'https://e.gkd.li/7c789099-9b6f-40a2-bc3b-c73b30891cf0',snapshotUrls:['https://i.gkd.li/i/14630824','https://i.gkd.li/i/14630825','https://i.gkd.li/i/17107841']},{key:1,fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text^=\"开通\"][text$=\"免密支付\"][visibleToUser=true]','@[clickable=true] > [text=\"关闭\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/c8388cd5-a97f-4683-9ef1-2caa0a24de91',snapshotUrls:'https://i.gkd.li/i/19449399'}]},{key:19,name:'分段广告-服务消息页面卡片广告',desc:'点击关闭-不感兴趣',fastQuery:true,activityIds:['com.alipay.android.phone.messageboxapp.ui.MsgBoxTabActivity','com.alipay.android.phone.msgboxapp.ui.activity.MBoxTabPageActivity'],rules:[{key:0,matches:'@[clickable=true] > [text=\"广告\"]',exampleUrls:'https://m.gkd.li/57941037/c3e08729-6d97-4a87-bfc3-1e38dd95c384',snapshotUrls:['https://i.gkd.li/i/14787644','https://i.gkd.li/i/23935865']},{preKeys:[0],key:1,matches:'@[clickable=true] >2 [text=\"不感兴趣\"]',exampleUrls:'https://m.gkd.li/57941037/64c8c27d-23de-43b1-a87b-e2107b644eb1',snapshotUrls:['https://i.gkd.li/i/14787585','https://i.gkd.li/i/23935930']}]},{key:21,name:'局部广告-卡片广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,matchRoot:true,forcedTime:10000,activityIds:['com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main','com.alipay.mobile.nebulax.xriver.activity.XRiverActivity'],matches:'WebView[text=\"基金\"] >(2,3) View[childCount=3] > @TextView[clickable=true][visibleToUser=true][text=\"\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',exampleUrls:'https://m.gkd.li/57941037/5df9b6fb-7455-492c-a726-fb6a42266a02',snapshotUrls:['https://i.gkd.li/i/14907533','https://i.gkd.li/i/15144834','https://i.gkd.li/i/15220394','https://i.gkd.li/i/15231403']},{key:1,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'View[childCount=3] >4 View[childCount=6] > @TextView[index=2][clickable=true][visibleToUser=true] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',exampleUrls:'https://m.gkd.li/57941037/2d714755-efe9-4c63-8187-7f9b7a5a199c',snapshotUrls:'https://i.gkd.li/i/15144844'},{key:2,name:'余额宝广告',activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@TextView[width<50 && height<50] -n [text=\"去看看\"]',snapshotUrls:'https://i.gkd.li/i/23054580'},{key:3,name:'余额宝转出-询问转出原因',activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@TextView[text=\"15天内不再询问\"][clickable=true] -n [text$=\"转出原因\"]',snapshotUrls:'https://i.gkd.li/i/24229300'}]},{key:22,name:'其他-蚂蚁理财社区-[加入同路人]弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverTransActivity$Main',matches:'@TextView[clickable=true][text=\"\"] < * > [visibleToUser=true][text=\"立即加入\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_trans_web_content\"]',exampleUrls:'https://m.gkd.li/57941037/e6332999-1c2b-49f0-84e1-780424a5cf2a',snapshotUrls:'https://i.gkd.li/i/15289022'}]},{key:23,name:'全屏广告-[银行卡还款服务升级]弹窗',desc:'点击[放弃升级，直接付款]',rules:[{fastQuery:true,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@[clickable=true] >2 [text=\"放弃升级，直接付款\"]',exampleUrls:'https://m.gkd.li/57941037/1b788a34-68f6-43c0-8be4-e13cb8221852',snapshotUrls:'https://i.gkd.li/i/16106615'}]},{key:24,name:'开屏广告-小程序开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity$XRiverLite1',matches:'@View[id=null][text=null][childCount=0][visibleToUser=true] < ViewGroup[id=null][text=null][childCount=1][index=parent.childCount.minus(1)] <7 ViewGroup <2 ViewGroup < ViewGroup < LinearLayout < RelativeLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/a243e31f-f1b5-4689-8d1a-c53250be651e',snapshotUrls:'https://i.gkd.li/i/17141999'}],order:-10},{key:25,name:'功能类-自动授权登录',rules:[{fastQuery:true,actionMaximum:1,action:'clickCenter',activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'[text=\"支付宝授权\"] >3 @[childCount=0][text=\"同意\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',snapshotUrls:'https://i.gkd.li/i/17376764'}]},{key:26,name:'局部广告-直播悬浮窗',desc:'点击关闭',rules:[{key:0,fastQuery:true,position:{left:'width * 0.8893',top:'width * 0.1230'},activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@[id=\"com.alipay.mobile.beevideo:id/fl_bee_player_view_container\"][childCount=2] > [id=\"com.alipay.mobile.beevideo:id/rl_player_poster\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3698e238-f39b-47ce-b0df-e2e47c15b400',snapshotUrls:'https://i.gkd.li/i/21467483',excludeSnapshotUrls:'https://i.gkd.li/i/23763580'},{key:1,activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@TextView[clickable=true][width<110 && height<110] +n [text=\"产品动态\"]',snapshotUrls:'https://i.gkd.li/i/24548034'}]},{key:27,name:'功能类-余额宝转出自动勾选[短期不再提示]',actionMaximum:1,resetMatch:'activity',rules:[{activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:['[text^=\"该笔为你快速转出\"]','@CheckBox + [text$=\"不再提示\"]'],snapshotUrls:['https://i.gkd.li/i/22798330','https://i.gkd.li/i/22798432','https://i.gkd.li/i/24230171']}]},{key:28,name:'功能类-自动领取会员积分',desc:'点击[全部领取]',rules:[{activityIds:'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',matches:'@[text*=\"领取\"] < [childCount=1] <n View <<2 * - * >2 [text=\"我的积分\"]',snapshotUrls:['https://i.gkd.li/i/22951439','https://i.gkd.li/i/22960401','https://i.gkd.li/i/23455621','https://i.gkd.li/i/23577538']}]},{key:29,name:'功能类-无法访问时点击[返回]',rules:[{fastQuery:true,activityIds:['com.alipay.mobile.nebulax.xriver.activity.XRiverActivity','com.alipay.mobile.nebulax.xriver.activity.XRiverTransActivity$Main','.AlipayLogin','com.alipay.android.phone.wallet.blessingcard_receive.biz.activity.ReceiveDialogActivity'],matches:['[text=\"访问被拒绝\" || text=\"人气太旺啦，请稍后再试\"][visibleToUser=true]','[id=\"com.alipay.mobile.antui:id/back_button\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/c1ddb8bf-084b-4109-b777-96c02858d266',snapshotUrls:['https://i.gkd.li/i/23046994','https://i.gkd.li/i/23096790','https://i.gkd.li/i/23549719','https://i.gkd.li/i/24183318','https://i.gkd.li/i/25199767']}]},{key:30,name:'其他-滑动验证时返回',rules:[{fastQuery:true,action:'back',activityIds:'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaTransActivity$Main',matches:'[childCount=0][text=\"为保障您的正常访问请进行验证\"] <<n [id=\"com.alipay.multiplatform.phone.xriver_integration:id/h5_trans_progress_rl\"]',exampleUrls:'https://e.gkd.li/f2571f51-3a8c-4e47-a7c5-3363375c1b78',snapshotUrls:'https://i.gkd.li/i/23158302'}]},{key:31,name:'其他-开通刷脸支付弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.alipay.android.msp.ui.views.MspContainerActivity',matches:['[text=\"开通刷脸支付\"]','@[clickable=true] > [text=\"关闭\"]'],snapshotUrls:'https://i.gkd.li/i/23455533'}]},{key:32,name:'功能类-确认清理已选中的缓存',rules:[{fastQuery:true,activityIds:'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',matches:['[text=\"是否确认清理已选中的缓存\"][visibleToUser=true]','[text=\"确定\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/4dfc8429-e633-4cab-8f0e-7cf1f86f98ce',snapshotUrls:'https://i.gkd.li/i/23619464'}]},{key:33,name:'青少年模式',rules:[{key:0,name:'底部悬浮卡片-启用未成年人保护模式\"',fastQuery:true,activityIds:'.AlipayLogin',matches:['@[id=\"com.alipay.android.phone.wallet.manufacturebiz:id/teenager_cancel\"] - RelativeLayout[childCount=4] > [text=\"启用未成年人保护模式\"]'],snapshotUrls:'https://i.gkd.li/i/24992663'}]}]},{id:'pansong291.xposed.quickenergy.repair',name:'芝麻粒',groups:[{key:1,name:'通知提示-开屏[提示]弹窗',desc:'点击[我知道了]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'pansong291.xposed.quickenergy.ui.MainActivity',matches:'[text=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/13445477'}]}]},{id:'tkaxv7s.xposed.sesame',name:'芝麻粒',groups:[{key:1,name:'通知提示-提示弹窗',desc:'点击[我知道了]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'tkaxv7s.xposed.sesame.ui.MainActivity',matches:'[text=\"我知道了\"]',exampleUrls:'https://m.gkd.li/57941037/75d1d639-5234-4ad4-865d-2b1617994a16',snapshotUrls:'https://i.gkd.li/i/16060201'}]}]},{id:'com.ping.cimoc',name:'芝士漫画',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ping.cimoc.ui.activity.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13187751'}]}]},{id:'com.able.wisdomtree',name:'知到',groups:[{key:2,name:'权限提示-通知权限',desc:'点击[暂不开启]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.widget.MyAlertDialog','.login.MainGroupActivity','com.example.advertisement_business.advertisement.AdvertisementActivity'],matches:['[text=\"开启消息推送通知\"][visibleToUser=true]','[text=\"暂不开启\"][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13458779','https://i.gkd.li/i/13623441','https://i.gkd.li/i/13695447']}]},{key:3,name:'更新提示',desc:'点击[忽略]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.login.StartActivity','com.example.advertisement_business.advertisement.AdvertisementActivity'],matches:['[text=\"更新\"] ',' [text=\"忽略\"]'],snapshotUrls:['https://i.gkd.li/i/13458796','https://i.gkd.li/i/13797285']}]},{key:4,name:'通知提示-课程提醒',desc:'点击[已绑定，不再提示]',rules:[{fastQuery:true,matches:['[text=\"课程提醒\"][visibleToUser=true]','[text=\"已绑定，不再提示\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/cceb9974-935d-496b-9b26-431864364433',snapshotUrls:'https://i.gkd.li/i/23122012'}]},{key:5,name:'通知提示-AI分析',rules:[{fastQuery:true,activityIds:'com.able.wisdomtree.course.course.studycourse.activity.StudyCourseVideoActivity',matches:'@[vid=\"im_close\"][clickable=true] - [text$=\"同学\"]',snapshotUrls:'https://i.gkd.li/i/24230330'}]}]},{id:'com.zhihu.android',name:'知乎',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,excludeActivityIds:['.app.SearchActivity','.comment.ui.activity.CommentListActivity','.feature.short_container_feature.ui.ShortContainerHostActivity'],matches:'([vid=\"btn_skip\"][visibleToUser=true]) || ([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true])',exampleUrls:'https://e.gkd.li/e129aaa6-bf4f-4455-9242-a6779667d814',snapshotUrls:['https://i.gkd.li/i/18221451','https://i.gkd.li/i/22714295'],excludeSnapshotUrls:['https://i.gkd.li/i/18221225','https://i.gkd.li/i/23141429','https://i.gkd.li/i/24229324']}],order:-10},{key:6,name:'分段广告-信息流广告',desc:'点击关闭-点击内容不感兴趣',fastQuery:true,rules:[{key:0,activityIds:['.feature.short_container_feature.ui.ShortContainerHostActivity','.ContentActivity'],matches:'@[clickable=true][visibleToUser=true] -(1,2) TextView[childCount=0][id=null][text=null][desc=null] <n ViewGroup >n [text*=\"广告\"][childCount=0][id=null][desc=null]',snapshotUrls:['https://i.gkd.li/i/13849671','https://i.gkd.li/i/14645530','https://i.gkd.li/i/14178516','https://i.gkd.li/i/13849442','https://i.gkd.li/i/14178979','https://i.gkd.li/i/14178980','https://i.gkd.li/i/14206949','https://i.gkd.li/i/14206988','https://i.gkd.li/i/18008867'],excludeSnapshotUrls:['https://i.gkd.li/i/17002118','https://i.gkd.li/i/17002119','https://i.gkd.li/i/17002120']},{key:2,activityIds:'.app.ui.activity.MainActivity',matches:'@ImageView[clickable=true][childCount=0] < FrameLayout[childCount=1] - * > [text*=\"广告\" || text$=\"商品介绍\"]',snapshotUrls:['https://i.gkd.li/i/14296163','https://i.gkd.li/i/14321041','https://i.gkd.li/i/14468152','https://i.gkd.li/i/17237944']},{key:3,activityIds:['.app.ui.activity.MainActivity','.ContentActivity','.feature.short_container_feature.ui.ShortContainerHostActivity'],matches:'@ViewGroup[clickable=true][childCount=1] <(2,3,4) ViewGroup -(2,3) ViewGroup[childCount>1] >(1,2) [text*=\"广告\"]',exampleUrls:'https://e.gkd.li/60c4dea8-99c1-4a6f-aca6-a098b5ed76d7',snapshotUrls:['https://i.gkd.li/i/14192451','https://i.gkd.li/i/18217217','https://i.gkd.li/i/19591989','https://i.gkd.li/i/21813914','https://i.gkd.li/i/24214771']},{key:4,activityIds:'.app.ui.activity.MainActivity',matches:'@ViewGroup[clickable=true][childCount=1] <3 ViewGroup < ViewGroup -(2,3) ViewGroup >2 [text*=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/14332161','https://i.gkd.li/i/14730741']},{key:5,activityIds:'.feature.short_container_feature.ui.ShortContainerHostActivity',matches:'@[vid=\"remove\"] - [vid=\"subtitle\"][text*=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/17268845','https://i.gkd.li/i/17268869']},{preKeys:[0,2,3,4,5],key:90,activityIds:['.feature.short_container_feature.ui.ShortContainerHostActivity','.ContentActivity','.app.ui.activity.MainActivity'],matches:'@[clickable=true] >(1,3) [text$=\"不感兴趣\" || text^=\"屏蔽作者\" || text=\"不喜欢该内容\"]',snapshotUrls:['https://i.gkd.li/i/13849689','https://i.gkd.li/i/17237940','https://i.gkd.li/i/17268849','https://i.gkd.li/i/23431871']}]},{key:10,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:['.app.ui.activity.MainActivity','.mix.activity.ContentMixProfileActivity','.app.ui.activity.HostActivity'],matches:['[text$=\"内容推送\" || text=\"开启私信通知\"]','[vid=\"btn_close\"]'],snapshotUrls:['https://i.gkd.li/i/18057057','https://i.gkd.li/i/20647853','https://i.gkd.li/i/22762314']}]},{key:12,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,name:'会员页弹窗广告',activityIds:'com.zhihu.android.app.ui.activity.MainActivity',matches:'[id=\"com.zhihu.android:id/dismiss\"]',snapshotUrls:'https://i.gkd.li/i/12707676'},{key:1,name:'首页弹窗广告',activityIds:'com.zhihu.android.app.ui.activity.AdAlphaVideoActivity',matches:'[vid=\"tv_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/14648128'},{key:2,name:'会员页红包弹窗',activityIds:'com.zhihu.android.app.ui.activity.MainActivity',matches:'[id=\"com.zhihu.android:id/floating_close_btn\"]',snapshotUrls:'https://i.gkd.li/i/12647421'},{key:3,action:'clickCenter',activityIds:'com.zhihu.android.creatorcenter.CreatorCenterHostActivity',matches:'View[text=\"关闭\"] > @[visibleToUser=true][text=\"关闭\"] <<n [vid=\"webview_bg\"]',snapshotUrls:'https://i.gkd.li/i/14955183'}]},{key:13,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{key:0,name:'搜索栏上方广告',fastQuery:true,activityIds:'com.zhihu.android.app.ui.activity.MainActivity',matches:['[vid=\"ad_container\"]','[vid=\"img_close_focus\"]'],exampleUrls:'https://m.gkd.li/101449500/11c26ab8-0b01-4345-8ea8-d4e97233b723',snapshotUrls:'https://i.gkd.li/i/14156887'},{key:1,name:'评论区广告',fastQuery:true,activityIds:'.comment.ui.activity.CommentListActivity',matches:'@ViewGroup[childCount=1][clickable=true][visibleToUser=true][getChild(0).name$=\"SvgView\"] - [text=\"广告\"]',exampleUrls:'https://e.gkd.li/d81b6bc4-f4f9-466d-8edb-7af27c707ca5',snapshotUrls:'https://i.gkd.li/i/20711018'},{key:2,name:'优质答主推荐',fastQuery:true,activityIds:'com.zhihu.android.feature.short_container_feature.ui.ShortContainerHostActivity',matches:'@[vid=\"ic_close\"][clickable=true] -n [text=\"更多优质答主\"]',snapshotUrls:'https://i.gkd.li/i/24335648'}]},{key:14,name:'局部广告-信息流广告',desc:'点击关闭',fastQuery:true,rules:[{key:2,activityIds:['.mix.activity.ContentMixProfileActivity','.mixshortcontainer.MixShortContainerActivity'],matches:'@[text=\"×\"][visibleToUser=true] <n View > [visibleToUser=true][text*=\"广告\" || text=\"查看详情\"] <<n [vid=\"web_frame\" || vid=\"view_content\"]',snapshotUrls:['https://i.gkd.li/i/14220104','https://i.gkd.li/i/14421277','https://i.gkd.li/i/15285359']},{key:5,activityIds:['.mixshortcontainer.MixShortContainerActivity','.mix.activity.ContentMixProfileActivity'],matches:'@Image[visibleToUser=true] <2 View > [visibleToUser=true][text$=\"广告\"] <<n [vid=\"view_content\"]',snapshotUrls:['https://i.gkd.li/i/14391614','https://i.gkd.li/i/15282584','https://i.gkd.li/i/20648888']},{key:6,activityIds:'.feature.short_container_feature.ui.ShortContainerHostActivity',matches:'@ImageView[clickable=true][visibleToUser=true]  -(1,2) TextView[childCount=0][id=null][text=null][desc=null] <n ViewGroup > [text*=\"知乎\" || text=\"创作者小助手\"][childCount=0][id=null][desc=null]',snapshotUrls:['https://i.gkd.li/i/14235024','https://i.gkd.li/i/14944631','https://i.gkd.li/i/14232195'],excludeSnapshotUrls:'https://i.gkd.li/i/14232195'}]},{key:15,name:'局部广告-悬浮广告',fastQuery:true,rules:[{key:0,name:'发现页面-右侧年卡折扣悬浮窗',activityIds:'com.zhihu.android.app.ui.activity.MainActivity',matches:['[vid=\"activity_img\"]','[vid=\"activity_close\"]'],snapshotUrls:'https://i.gkd.li/i/14296251'},{key:1,name:'首页-右侧悬浮窗广告',activityIds:'com.zhihu.android.app.ui.activity.MainActivity',matches:'@ImageView[clickable=true][visibleToUser=true] + * >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/14635636'},{key:2,name:'回答页-底部关注悬浮窗',activityIds:'com.zhihu.android.feature.short_container_feature.ui.ShortContainerHostActivity',matches:'[vid=\"close_img\"]',snapshotUrls:'https://i.gkd.li/i/14970008'},{key:3,activityIds:'com.zhihu.android.mix.activity.ContentMixProfileActivity',matches:'View[childCount=3] > @View[clickable=true][childCount=1][text=\"\"] > Image[childCount=0][text=\"\"] <<n [vid=\"view_content\"]',exampleUrls:'https://e.gkd.li/6b9afb50-47a3-4426-a157-9b170b57c616',snapshotUrls:'https://i.gkd.li/i/16422471'}]},{key:16,name:'更新提示',matchTime:10000,fastQuery:true,resetMatch:'app',actionMaximum:1,activityIds:['.app.ui.activity.MainActivity','.feature.short_container_feature.ui.ShortContainerHostActivity'],rules:[{key:0,name:'勾选[不再提醒]',matches:'CheckBox[text=\"不再提醒\"][checked=false][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/728ea1cd-ca19-4de9-9e7e-eb2a3513f965',snapshotUrls:['https://i.gkd.li/i/14445502','https://i.gkd.li/i/14445815']},{preKeys:[0],key:1,name:'点击[取消]',matches:['[text=\"去应用市场\"]','[text=\"取消\"]'],exampleUrls:'https://m.gkd.li/57941037/728ea1cd-ca19-4de9-9e7e-eb2a3513f965',snapshotUrls:'https://i.gkd.li/i/14445502'}]},{key:17,name:'功能类-热榜页自动点击[展开更多]',rules:[{fastQuery:true,activityIds:'com.zhihu.android.app.ui.activity.MainActivity',matches:'@[clickable=true] >2 [text=\"展开更多\"]',exampleUrls:'https://m.gkd.li/57941037/09616b29-8a83-4f0f-9f8e-0100fa61738d',snapshotUrls:'https://i.gkd.li/i/14974198'}]},{key:18,name:'功能类-自动展开回答',desc:'自动点击展开',rules:[{fastQuery:true,activityIds:'com.zhihu.android.mixshortcontainer.MixShortContainerActivity',matches:'ImageView[id=\"com.zhihu.android:id/iv_expand\"] - TextView[id=\"com.zhihu.android:id/tv_expand\"][text=\"展开\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/6f6e5fd0-98a8-4a92-be02-7f34e3c5b8bd',snapshotUrls:['https://i.gkd.li/i/12647688','https://i.gkd.li/i/12707687']}]},{key:19,name:'评价提示-评论区氛围评价卡片',desc:'点击关闭',actionMaximum:1,rules:[{fastQuery:true,activityIds:'.comment.ui.activity.CommentListActivity',matches:'@ViewGroup[clickable=true] - [text^=\"你对该内容下的评论氛围是否满意\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/60674332-41a3-4a31-907e-7af6c23182bf',snapshotUrls:'https://i.gkd.li/i/20473238'}]}]},{id:'com.zhihu.android.lite',name:'知乎极速版',groups:[{key:1,name:'局部广告-底部悬浮卡片',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.zhihu.android.mixshortcontainer.MixShortContainerActivity',matches:'View[childCount=3] > @View[clickable=true][childCount=1][text=\"\"] > Image[childCount=0][text=\"\"] <<n [vid=\"view_content\"]',exampleUrls:'https://e.gkd.li/23c80cb4-4bad-451c-b8e9-bfdbdfa7c6c5',snapshotUrls:'https://i.gkd.li/i/16413243'}]}]},{id:'com.pcs.knowing_weather',name:'知天气',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"btn_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/68883ff3-cc5a-46a1-9258-bfeff208dbee',snapshotUrls:'https://i.gkd.li/i/19832565'}],order:-10}]},{id:'com.cnki.view',name:'知网文化',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.cnki.view.core.navigator.main.HomeActivity','com.cnki.view.core.tramp.main.SplashActivity'],matches:'[id=\"com.cnki.view:id/update_undo\"]',snapshotUrls:['https://i.gkd.li/i/12755689','https://i.gkd.li/i/12755700']}]}]},{id:'android.zhibo8',name:'直播吧',groups:[{key:1,name:'分段广告-信息流广告',desc:'点击[关闭]-点击[不感兴趣]',fastQuery:true,activityIds:['android.zhibo8.ui.contollers.main.MainActivity','android.zhibo8.ui.contollers.detail.DetailActivity'],rules:[{key:0,name:'点击关闭',matches:'[vid=\"iv_tip\"][clickable=true][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13786148','https://i.gkd.li/i/14428863','https://i.gkd.li/i/15443198']},{preKeys:[0],key:1,name:'点击不感兴趣',matches:'@[clickable=true] >3 [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/14428912'}]},{key:3,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'.ui.contollers.main.MainActivity',matches:['[text=\"发现新版本\"]','[text$=\"不再提醒\"]'],snapshotUrls:['https://i.gkd.li/i/14395465','https://i.gkd.li/i/17825255']}]},{key:4,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:'[vid=\"pushsetting_close_iv\"]',exampleUrls:'https://e.gkd.li/e28aa1f2-8088-4f78-bee9-2d5832637671',snapshotUrls:'https://i.gkd.li/i/17825298'}]}]},{id:'com.zzw.october',name:'志愿汇',groups:[{key:2,name:'全屏广告-弹窗广告',rules:[{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.MainActivity',matches:'[id=\"com.zzw.october:id/interact_ad_root\"] >n ImageView[id=\"com.zzw.october:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12842675'},{key:2,fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/2033b8e2-8234-486d-ba8a-e7d140215d88',snapshotUrls:'https://i.gkd.li/i/18235996'},{key:3,fastQuery:true,activityIds:'com.beizi.ad.v2.activity.BeiZiNewInterstitialActivity',matches:'[vid=\"beizi_interstitial_ad_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/23003165'},{key:4,fastQuery:true,activityIds:'com.beizi.ad.AdActivity',matches:'[vid=\"close_iv\"]',snapshotUrls:'https://i.gkd.li/i/23002976'},{key:5,fastQuery:true,activityIds:'com.octopus.ad.AdActivity',matches:'@ImageView[clickable=true][width<90 && height<90] - [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/23021515'}]},{key:3,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:['.MainActivity','.LaunchActivity'],anyMatches:['[vid=\"dialog_de\"][visibleToUser=true]','[text=\"以后再说\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/f80b0ecb-a704-495d-9afc-c1ffcba2108f',snapshotUrls:['https://i.gkd.li/i/19485921','https://i.gkd.li/i/19535009']}]},{key:4,name:'通知提示-志愿者保险提示弹窗',desc:'点击[暂不领取]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[text=\"暂不领取\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/fe4b163a-bb6c-4337-b095-4bdf1219e9b2',snapshotUrls:'https://i.gkd.li/i/19485920'}]},{key:5,name:'局部广告-浮标广告',rules:[{fastQuery:true,activityIds:'com.zzw.october.MainActivity',matches:'[vid=\"channel_banner_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/23003170'}]}]},{id:'cn.edu.buaa.wxwork',name:'智慧北航',groups:[{key:0,name:'功能类-扫码后自动确认登录',desc:'点击[确认登录]',matchTime:10000,actionMaximum:1,rules:[{activityIds:['com.tencent.wework.common.web.JsWebActivity','com.tencent.wework.launch.WwMainActivity'],matches:'[desc=\"确认登录\"][clickable=true]',exampleUrls:'https://e.gkd.li/501ba684-b4a5-40e8-9e24-c61048569667',snapshotUrls:['https://i.gkd.li/i/16784272','https://i.gkd.li/i/16784259']}]}]},{id:'com.powersi.zhrs',name:'智慧人社',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"tv_time\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/1cad6c38-5c76-4b5a-b350-bb9630221661',snapshotUrls:'https://i.gkd.li/i/19746757'}],order:-10}]},{id:'com.hyww.wisdomtree',name:'智慧树',groups:[{key:1,name:'全屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'百度广告',fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][childCount=0] + RelativeLayout >(1,2) [text=\"反馈\"]',snapshotUrls:['https://i.gkd.li/i/13799876','https://i.gkd.li/i/13852024']}]},{key:2,name:'局部广告',rules:[{key:0,name:'信息流广告',fastQuery:true,matches:'@[vid=\"rl_down\"] <<n [vid=\"tt_ad_content\"]',snapshotUrls:'https://i.gkd.li/i/13852023'}]}]},{id:'com.zhx.wisdomtree',name:'智慧树家长端',groups:[{key:1,name:'局部广告-信息流广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'net.hyww.wisdomtree.parent.common.MainActivity',matches:'[vid=\"iv_close_ad\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/82c2a85d-1007-45e2-abed-3c5933563a92',snapshotUrls:'https://i.gkd.li/i/20062093'},{key:1,fastQuery:true,activityIds:'net.hyww.wisdomtree.parent.common.MainActivity',matches:'[vid=\"tv_close_ad\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/486eae02-6c25-4e2a-b6a4-7997a8887eac',snapshotUrls:'https://i.gkd.li/i/20062094'},{key:2,fastQuery:true,activityIds:'net.hyww.wisdomtree.parent.common.MainActivity',matches:'@[vid=\"rl_down\"] <<n [vid=\"tt_ad_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/46522b87-512c-47ab-9a57-c333eca6a789',snapshotUrls:'https://i.gkd.li/i/20074571'},{key:3,fastQuery:true,activityIds:'net.hyww.wisdomtree.core.act.FragmentSingleAct',matches:'FrameLayout[childCount=1] > FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[id=null][text=null][width<50 && height<50] <<n [vid=\"fl_csj_banner_view\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ee6796d4-ba24-4d34-8ef2-07969d102715',snapshotUrls:'https://i.gkd.li/i/20074641'}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@View[childCount=1][visibleToUser=true] < View[childCount=1][visibleToUser=true] + View[childCount=1][visibleToUser=true] > [text=\"反馈\"]',exampleUrls:'https://e.gkd.li/708daddf-5d9b-4cc9-977f-ba48c3f33ba3',snapshotUrls:'https://i.gkd.li/i/20074568'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',exampleUrls:'https://e.gkd.li/f6c1c4ec-56d8-4c02-a66d-42a005bb196c',snapshotUrls:'https://i.gkd.li/i/20095481'},{key:2,fastQuery:true,activityIds:'net.hyww.wisdomtree.parent.common.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/c72c44bc-a16a-4929-8aa6-457893c1254f',snapshotUrls:'https://i.gkd.li/i/20154496'},{key:3,fastQuery:true,activityIds:'net.hyww.wisdomtree.parent.common.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/91f3f0d3-d424-4e06-99a2-8e31dd71df41',snapshotUrls:'https://i.gkd.li/i/20154499'},{key:4,fastQuery:true,activityIds:'net.hyww.wisdomtree.parent.common.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',exampleUrls:'https://e.gkd.li/c24edc78-83d6-4a73-a555-fd69635a92b8',snapshotUrls:'https://i.gkd.li/i/20154500'}]}]},{id:'com.huawei.search',name:'智慧搜索',groups:[{key:0,name:'分段广告-下拉搜索横幅广告',fastQuery:true,activityIds:['.HomeActivity','.MainActivity'],rules:[{key:0,matches:'[id=\"com.huawei.search:id/iv_topic_close_in_image\" || id=\"com.huawei.search:id/iv_topic_left_close\" || id=\"com.huawei.search:id/iv_topic_close_in_pps\"]',snapshotUrls:['https://i.gkd.li/i/12667938','https://i.gkd.li/i/12745008','https://i.gkd.li/i/12841076','https://i.gkd.li/i/13266095']},{preKeys:[0],key:1,matches:'TextView[text=\"直接关闭\"]',snapshotUrls:['https://i.gkd.li/i/12745001']}]},{key:1,name:'局部广告-搜索框下广告',desc:'点击x掉',rules:[{fastQuery:true,activityIds:'.HomeActivity',matches:'[vid=\"btn_full_mode_cancel\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/24856481'}]}]},{id:'com.xiaolian.prometheus',name:'智慧笑联',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaolian.home.ui.HomeActivity',matches:'@[vid=\"close_rel\"] - * > [text=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/14292788'}]},{key:2,name:'全屏广告-关注公众号弹窗',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.xiaolian.home.ui.HomeActivity',matches:'@[vid=\"close_img\"] + [text=\"关注\"]',snapshotUrls:'https://i.gkd.li/i/14292789'}]}]},{id:'com.miui.systemAdSolution',name:'智能服务',groups:[{key:2,name:'分段广告-为什么不希望看到这条推广',desc:'点击\"不感兴趣\"',activityIds:['com.xiaomi.ad.feedback','com.android.thememanager.module.detail.view.ThemeDetailActivity','com.android.thememanager.ThemeResourceProxyTabActivity','com.android.calendar.homepage.AllInOneActivity'],rules:[{key:0,fastQuery:true,anyMatches:['[text=\"不感兴趣\"][clickable=true]','@[clickable=true] > [text=\"不感兴趣\"][clickable=false][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/13227328','https://i.gkd.li/i/13255751','https://i.gkd.li/i/14946925','https://i.gkd.li/i/23619341']},{preKeys:[0],key:1,fastQuery:true,anyMatches:['[text=\"广告密集\"][clickable=true]','@[clickable=true] > [text=\"广告密集\"][clickable=false][visibleToUser=true]'],snapshotUrls:['https://i.gkd.li/i/19636920','https://i.gkd.li/i/23619357']}]}]},{id:'com.crirp.zhipu',name:'智谱',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13725305'}],order:-10},{key:2,name:'全屏广告-今日要闻弹窗',desc:'点击不再提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ruipeng.zipu.ui.main.uniauto.UniautoHomeActivity',matches:'[text=\"今日不再提示\"]',snapshotUrls:'https://i.gkd.li/i/13725337'}]}]},{id:'com.hnjiajie.zhixiaole',name:'智校乐',groups:[{key:1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'[vid=\"tev_countdown\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/0b7ec3a5-d601-489a-a50c-32c876f38edf',snapshotUrls:'https://i.gkd.li/i/20745490'}],order:-10}]},{id:'com.yipiao',name:'智行火车票',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/4bae84e9-357a-4cc9-a38b-c6949f5753cd',snapshotUrls:'https://i.gkd.li/i/20903066'},{key:1,position:{left:'width * 0.8759',top:'width * 2.0519'},excludeMatches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',matches:'[desc=\"广告素材\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/375bf789-95f6-4646-b433-3d3b25dda58a',snapshotUrls:'https://i.gkd.li/i/16896514',excludeSnapshotUrls:'https://i.gkd.li/i/20903066'}],order:-10}]},{id:'com.zol.android',name:'中关村在线',groups:[{key:0,name:'局部广告-首页悬浮广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.renew.ui.MainActivity',matches:'@[vid=\"close_active\"][visibleToUser=true] + [vid=\"active_enter_layout\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/ac4f334e-54e7-4df8-b708-2ad101962b4c',snapshotUrls:'https://i.gkd.li/i/17965705'}]}]},{id:'com.ct.client',name:'中国电信',groups:[{key:-1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15084759','https://i.gkd.li/i/15079224']}],order:-10},{key:1,name:'功能类-软件更新/安装后的用户引导',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.ct.client.activity.UserGuideActivity',matches:'[id=\"com.ct.client:id/tvSkip\"]',snapshotUrls:'https://i.gkd.li/i/12508971'}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.activity.MainActivity','.activity.SplashActivity','.common.ConfirmDialogActivity'],matches:'LinearLayout > [text=\"取消升级\"]',snapshotUrls:['https://i.gkd.li/i/12819594','https://i.gkd.li/i/13316168','https://i.gkd.li/i/13695096']}]},{key:3,name:'全屏广告-浮窗广告',desc:'会出现在首页、查询办理页面',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.ct.client.common.ConfirmDialogActivity','com.ct.client.activity.MainActivity'],matches:'[vid=\"rlActivity\"] > [vid=\"close\"]',snapshotUrls:['https://i.gkd.li/i/12819676','https://i.gkd.li/i/15104434']}]},{key:4,name:'全屏广告-弹窗广告',activityIds:'com.ct.client.common.webview.OnlineBusinessWebkitActivity',rules:'Image[text=\"tishi-close\"]',snapshotUrls:'https://i.gkd.li/i/12913804'},{key:5,name:'权限提示-通知权限',desc:'自动点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'ImageView[id=\"com.ct.client:id/msg_close\"]',snapshotUrls:'https://i.gkd.li/i/13043522'},{key:1,fastQuery:true,activityIds:'com.ct.client.activity.MainActivity',matches:'[text^=\"开启消息通知\"] - [vid=\"ivClose\"]',snapshotUrls:'https://i.gkd.li/i/15209597'}]},{key:6,name:'功能类-右下角客服悬浮窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.ct.client.MainActivity',matches:'[id=\"com.ct.client:id/close\"]',exampleUrls:'https://m.gkd.li/57941037/3a14e0ac-ce6a-411d-9f92-e50da5165119',snapshotUrls:'https://i.gkd.li/i/14133742'},{activityIds:'com.ct.client.activity.MainActivity',matches:'[id=\"com.ct.client:id/ivFloatClose\"]',exampleUrls:'https://m.gkd.li/57941037/a97bf7a2-6e35-4922-ad0d-8677fca79f7c',snapshotUrls:'https://i.gkd.li/i/13043345'}]},{key:7,name:'局部广告-悬浮广告',desc:'点击关闭',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ct.client.activity.MainActivity',matches:'[vid=\"ivFloatClose\"]',exampleUrls:'https://m.gkd.li/57941037/5dd9c9e3-f290-4b73-abdd-dc5e97a99772',snapshotUrls:'https://i.gkd.li/i/15137220'}]},{key:8,name:'功能类-英文版未登录时自动一键登录',desc:'仅在使用该卡移动数据时可用',actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'.international.homepage.InternationalHomePageActivity',matches:'[text=\"Login\"]',snapshotUrls:['https://i.gkd.li/i/22843837','https://i.gkd.li/i/22846926']},{key:1,preKeys:[0],fastQuery:true,activityIds:'.international.login.InternationalLoginActivity',matches:'@CheckBox[checked=false] + [text^=\"I agree that I have read and accepted\"]',snapshotUrls:['https://i.gkd.li/i/22843889','https://i.gkd.li/i/22843896']},{preKeys:[1],fastQuery:true,activityIds:'.international.login.InternationalLoginActivity',matches:'[text=\"Login with Current Number\"]',snapshotUrls:'https://i.gkd.li/i/22843896'}]}]},{id:'com.icbc',name:'中国工商银行',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.main.MainActivity',matches:'[id=\"com.icbc:id/tv_time\"][text*=\"跳过\"][text.length<=6]',snapshotUrls:'https://i.gkd.li/i/13330431'}]},{key:2,name:'评价提示',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,matches:['[text^=\"觉得“中国工商银行”好用吗\"]','[text=\"下次再说\"][clickable=true]'],exampleUrls:'https://e.gkd.li/85e48265-4269-4122-a70f-5361698954c0',snapshotUrls:['https://i.gkd.li/i/18296892','https://i.gkd.li/i/24981859']}]},{key:3,name:'局部广告-右下角浮标广告',rules:[{fastQuery:true,activityIds:['.activity.web.ICBCWebView','.activity.main.MainActivity'],matches:'[vid=\"iv_close_task_center\"]',snapshotUrls:['https://i.gkd.li/i/22616307','https://i.gkd.li/i/23227312']}]},{key:4,name:'功能类-未登录时自动点击登录',desc:'仅限老年版和英文版可用',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.activity.main.MainActivity',matches:'[vid=\"rl_remit_login_button_background\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/23227516','https://i.gkd.li/i/23227551']}]}]},{id:'com.ai.obc.cbn.app',name:'中国广电',groups:[{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.ui.other.activity.MainActivity','.ui.main.fragment.MainFragment$7$1'],matches:'[id$=\"/ivDis\"]',snapshotUrls:['https://i.gkd.li/i/12617201','https://i.gkd.li/i/12655061']}]}]},{id:'com.chinamworld.main',name:'中国建设银行',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:['[vid=\"ll_load\"][visibleToUser=true]','[vid=\"skip\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/69567942-f5a1-40f0-b4b6-7f8bf2348052',snapshotUrls:'https://i.gkd.li/i/20649289'}],order:-10},{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ccb.start.view.startdialog.StartDialogActivity',matches:['[vid=\"tip_view_pager\"][visibleToUser=true]','[vid=\"close\"][visibleToUser=true]'],exampleUrls:'https://e.gkd.li/d1f24a66-8d46-4c0d-9ca9-ac5b540a6548',snapshotUrls:'https://i.gkd.li/i/20649291'}]},{key:2,name:'通知提示-VPN风险弹窗',desc:'点击[知晓风险，继续使用]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ccb.start.MainActivity',matches:'[text=\"知晓风险，继续使用\"]',exampleUrls:'https://e.gkd.li/827582b2-d449-429c-b21d-7277c618d8bf',snapshotUrls:'https://i.gkd.li/i/18113538'}]}]},{id:'cn.mil.junhao',name:'中国军号',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"splash_adv_ship\"]',snapshotUrls:'https://i.gkd.li/i/13806892'}],order:-10},{key:2,name:'局部广告-右侧悬浮窗',desc:'点击关闭',rules:[{key:0,fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'com.mediacloud.app.nav2.AppHome21Style',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 [vid=\"float_feedback\"]',snapshotUrls:'https://i.gkd.li/i/13806896'},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.mediacloud.app.nav2.AppHome21Style',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 FrameLayout <2 [vid=\"fragment_containerx\"]',snapshotUrls:'https://i.gkd.li/i/13806894'}]}]},{id:'com.sinovatech.unicom.ui',name:'中国联通',groups:[{key:1,name:'权限提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.sinovatech.unicom.basic.ui.activity.MainActivity','com.sinovatech.unicom.basic.ui.activity.WelcomeClient'],matches:'[text=\"去开启\"] - [vid=\"custom_dialog_cancel_button\"]',snapshotUrls:['https://i.gkd.li/i/13331268','https://i.gkd.li/i/14751210']}]},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.sinovatech.unicom.basic.ui.activity.MainActivity',matches:'[id=\"com.sinovatech.unicom.ui:id/custom_dialog_cancel_button\"]',snapshotUrls:'https://i.gkd.li/i/13511386'}]},{key:3,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,forcedTime:10000,activityIds:'com.sinovatech.unicom.basic.ui.activity.MainActivity',matches:'[text=\"首页弹窗\"] >2 View > @Image[clickable=true][text!=null] <<n [vid=\"main_fragment_layout\"]',snapshotUrls:'https://i.gkd.li/i/14504242'},{key:1,activityIds:'com.sinovatech.unicom.basic.ui.activity.MainActivity',matches:'WebView[text!=null] > View[id=\"app\"] >2 View[childCount>3] > View[childCount=1] > @TextView[childCount=0][visibleToUser=true][text=\"\"][width<150&&height<150] <<n [vid=\"main_fragment_layout\" || vid=\"main_fragment_layout_haoka\"]',snapshotUrls:['https://i.gkd.li/i/15971964','https://i.gkd.li/i/18290899']},{key:2,activityIds:'com.sinovatech.unicom.basic.ui.activity.MainActivity',matches:'@Image[text^=\"close\"][childCount=0][width<150 && height<150] <2 View < View <2 View < View < View <2 View < View < WebView < WebView < [vid=\"homeweb_rootview\"]',snapshotUrls:'https://i.gkd.li/i/23764750'}]},{key:4,name:'局部广告-首页右下角卡片悬浮窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.sinovatech.unicom.basic.ui.activity.MainActivity',matches:'[vid=\"home_xuanfu_close\" || vid=\"home_drag_view_close\"]',snapshotUrls:['https://i.gkd.li/i/13930543','https://i.gkd.li/i/23141106']}]}]},{id:'com.android.bankabc',name:'中国农业银行',groups:[{key:1,name:'开屏广告',matchRoot:true,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'[id=\"com.android.bankabc:id/close\"]',exampleUrls:'https://m.gkd.li/57941037/67cfc2f8-a108-4382-976a-0da7d13764e9',snapshotUrls:'https://i.gkd.li/i/14179162'},{key:1,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/a5f6ec81-04f6-4678-b1d5-f2f326521945',snapshotUrls:'https://i.gkd.li/i/17879768'}],order:-10},{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.MainActivity',rules:[{key:0,matches:'[vid=\"upgrade_checkbox\"][checked=false]',snapshotUrls:['https://i.gkd.li/i/14208545','https://i.gkd.li/i/16410094']},{preKeys:[0],key:1,matches:'[vid=\"negativeTextView\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14208545'},{preKeys:[0],key:2,matches:'[vid=\"iv_negative\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/16410094'}]},{key:3,name:'权限提示-定位权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[text=\"允许获取位置信息\"] +n * > [text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/14208572'}]},{key:4,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[vid=\"iv_notification_reminder_dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/14208621'}]}]},{id:'com.cloudpower.netsale.activity',name:'中国人保',groups:[{key:1,name:'更新提示',desc:'点击下次再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.picc.aasipods.module.versionupdate.controller.VersionUpdateActivity',matches:'[id=\"com.cloudpower.netsale.activity:id/tvw_cancel\"]',snapshotUrls:'https://i.gkd.li/i/14005533'}]}]},{id:'com.greenpoint.android.mc10086.activity',name:'中国移动',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:2,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/16335136'},{key:1,position:{left:'width * 0.8731',top:'width * 0.1352'},matches:'@FrameLayout[childCount=2] > [vid=\"ll_top_right\"][childCount=0]',exampleUrls:'https://e.gkd.li/6fca95f1-d672-4d1d-bcf5-e71f1865dd52',snapshotUrls:'https://i.gkd.li/i/20903074',excludeSnapshotUrls:'https://i.gkd.li/i/16335136'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:'[text=\"暂不更新\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/130e0c2e-f568-4a96-9c06-9876a21e0466',snapshotUrls:'https://i.gkd.li/i/18271745'}]},{key:2,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:'[id=\"com.greenpoint.android.mc10086.activity:id/ad_image\"] < RelativeLayout + [id=\"com.greenpoint.android.mc10086.activity:id/close_btn\"]',snapshotUrls:'https://i.gkd.li/i/12662361'}]},{key:10,name:'权限提示-通知权限',desc:'请求推送通知弹窗，点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.mc10086.cmcc.base.StartPageActivity',matches:['[text*=\"开启推送通知\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13327880'},{key:1,activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:'[text=\"授权提醒\"] +3 [text=\"拒绝\"]',snapshotUrls:'https://i.gkd.li/i/13775652'}]},{key:11,name:'权限提示-请求获取剪贴板权限弹窗',desc:'请求获取剪贴板权限弹窗，点击不允许',actionMaximum:1,resetMatch:'app',activityIds:['com.mc10086.cmcc.view.tabs.AppTabFragment','com.mc10086.cmcc.base.StartPageActivity'],rules:[{matches:'[text*=\"获取您的\"] < LinearLayout +(2) LinearLayout >(2) [text=\"不允许\"]',snapshotUrls:['https://i.gkd.li/i/12662251','https://i.gkd.li/i/13775651','https://i.gkd.li/i/15944173']}]},{key:12,name:'局部广告-右侧悬浮小图标',fastQuery:true,rules:[{key:0,activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:'[id=\"com.greenpoint.android.mc10086.activity:id/close_btn\"]',snapshotUrls:'https://i.gkd.li/i/12662265'},{key:1,activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:'[vid=\"close_btn_bottom\"]',exampleUrls:'https://m.gkd.li/57941037/276c7811-52f7-4379-8782-f9fb0b6cec1c',snapshotUrls:'https://i.gkd.li/i/14570369'},{key:2,activityIds:'com.cmccit.webview.ac.CommonHtml5Activity',matches:'[text=\"余量查询\"] > View > View > @Image[clickable=true][text!=null] <<n [vid=\"patmentwebview\"]',exampleUrls:'https://m.gkd.li/57941037/69c6bf73-d901-4816-a9da-e4bcb0f4b9c6',snapshotUrls:'https://i.gkd.li/i/14738550'}]},{key:13,name:'评价提示-请求好评弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:'@[id=\"com.greenpoint.android.mc10086.activity:id/close_img\"][desc=\"关闭\"] - RelativeLayout >(2) [text$=\"好评\"]',snapshotUrls:'https://i.gkd.li/i/12662345'}]},{key:14,name:'权限提示-通讯录权限申请弹窗',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.cmccit.paycenter.PayCenterActivity',matches:['[text=\"通讯录权限申请\"]','[text=\"取消\"]'],exampleUrls:'https://e.gkd.li/7d332325-497f-47a4-a322-729ffa5dd121',snapshotUrls:'https://i.gkd.li/i/16369235'}]},{key:15,name:'权限提示-定位权限',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.mc10086.cmcc.view.tabs.AppTabFragment',matches:['[text^=\"位置权限\" || text$=\"定位权限\"]','[text=\"取消\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23445705'}]}]},{id:'com.xinhang.mobileclient',name:'中国移动河南',groups:[{key:1,name:'全屏广告-弹窗广告',activityIds:'com.xinhang.mobileclient.home.activity.HomeActivity',rules:[{key:0,matches:'View[desc^=\"close\"]',snapshotUrls:'https://i.gkd.li/i/13024867'},{key:1,matches:'View > View > TextView + TextView[text=\"\"]',snapshotUrls:'https://i.gkd.li/i/13024869'}]},{key:2,name:'局部广告-右侧悬浮广告',rules:[{activityIds:'com.xinhang.mobileclient.home.activity.HomeActivity',matches:'@[id=\"com.xinhang.mobileclient:id/iv_close\"] + [id=\"com.xinhang.mobileclient:id/iv_advert\"]',snapshotUrls:['https://i.gkd.li/i/13024863','https://i.gkd.li/i/13024872']}]}]},{id:'com.jsmcc',name:'中国移动江苏',groups:[{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:'.ui.MainActivityGroupNew',matches:'ImageView[vid=\"notice_dia\"]',snapshotUrls:'https://i.gkd.li/i/16215987'}]}]},{id:'com.chinamobile.mcloud',name:'中国移动云盘',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:'.client.ui.setting.UpgradeActivity',matches:['[text=\"发现新版本\"]','[vid=\"bn_cancel\"]'],snapshotUrls:'https://i.gkd.li/i/14297700'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['com.chinamobile.mcloud.client.ui.MenuActivity','com.chinamobile.mcloud.client.ui.CustomScanActivity','com.mcloud.login.ui.ConfirmLoginTvActivity'],matches:'[id=\"com.chinamobile.mcloud:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/13627826','https://i.gkd.li/i/14549523','https://i.gkd.li/i/14732062']},{key:1,fastQuery:true,activityIds:'com.chinamobile.mcloud.client.ui.MenuActivity',matches:'@Image[clickable=true] < View -3 [text=\"马上领取\"] < View < View < View < WebView < WebView < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13627832'}]},{key:3,name:'局部广告-悬浮广告',rules:[{key:0,fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'com.chinamobile.mcloud.client.ui.MenuActivity',matches:'[id=\"com.chinamobile.mcloud:id/iv_logo\"] + [id=\"com.chinamobile.mcloud:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13627834'}]},{key:4,name:'全屏广告-请求开启自动备份弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.client.ui.MenuActivity',matches:'[text=\"开启自动备份\"] +4 [text=\"暂不设置\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13627830'}]},{key:5,name:'权限提示-通知权限',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.client.ui.MenuActivity',matches:'[vid=\"btn_push_notice_close_dialog\"]',snapshotUrls:'https://i.gkd.li/i/14882447'}]}]},{id:'com.chinamworld.bocmbci',name:'中国银行',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.boc.bocsoft.mobile.bocmobile.buss.system.main.ui.MainActivity',matches:'@[desc=\"关闭\"] > [vid=\"btn_action\"]',exampleUrls:'https://e.gkd.li/988dbaff-68b3-499a-8736-a6e5b3364ed9',snapshotUrls:'https://i.gkd.li/i/17691747'},{key:1,fastQuery:true,activityIds:'com.boc.bocsoft.mobile.bocmobile.buss.system.main.ui.MainActivity',matches:'@Image[clickable=true][childCount=0][visibleToUser=true][width<150 && height<150] <2 View[childCount=2] < View <4 View < View < WebView < WebView < [vid=\"webview_layout\"]',exampleUrls:'https://e.gkd.li/13b6fa95-5198-41f5-b39c-d40166a624fb',snapshotUrls:'https://i.gkd.li/i/19567854'}]}]},{id:'com.wisentsoft.chinapost.android',name:'中国邮政',groups:[{key:1,name:'全屏广告-首页弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@ImageView[clickable=true] <2 LinearLayout <3 ViewGroup < [vid=\"ll_main\"]',snapshotUrls:'https://i.gkd.li/i/15914347'}]}]},{id:'com.ecitic.bank.mobile',name:'中信银行',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.MainActivity',matches:'@[text=\"暂不更新\"] + [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/12701217'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{fastQuery:true,activityIds:['com.ecitic.bank.mobile.ui.MainActivity','com.ecitic.bank.mobile.ui.webview.CordovaWebViewActivity'],matches:'[id=\"com.ecitic.bank.mobile:id/close_product_send\"]',snapshotUrls:['https://i.gkd.li/i/12701230','https://i.gkd.li/i/13402746']}]},{key:3,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.MainActivity',matches:'@[text=\"取消\"] + [text=\"立即开启\"]',snapshotUrls:'https://i.gkd.li/i/13399102'}]},{key:4,name:'局部广告-理财产品悬浮广告',rules:[{activityIds:'com.ecitic.bank.mobile.ui.MainActivity',matches:'@[clickable=true] +2 [visibleToUser=true][text=\"恭喜您关注到宝藏基金\"] <<n [vid=\"cordova_view\"]',snapshotUrls:'https://i.gkd.li/i/14208637'}]}]},{id:'com.badmintoncn.bbs',name:'中羽在线',groups:[{key:1,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'红包弹窗',activityIds:'net.duohuo.magappx.main.IndexTabActivity',matches:'[id=\"com.badmintoncn.bbs:id/iv_close_ad\"]',snapshotUrls:'https://i.gkd.li/i/13635224'}]}]},{id:'com.hihonor.android.thememanager',name:'主题',groups:[{key:1,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/f9821020-292c-454d-8e04-83ca73b38358',snapshotUrls:'https://i.gkd.li/i/16573695'}],order:-10},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.HwThemeManagerActivity',matches:'[vid=\"mtDialogClose\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/7ceeb371-e7a5-4c94-8afd-d2c5b56744a6',snapshotUrls:'https://i.gkd.li/i/17158049'}]}]},{id:'com.android.thememanager',name:'主题壁纸',groups:[{key:1,name:'分段广告-信息流广告',desc:'该广告的第二段需开启[智能服务]的对应规则才能关闭',fastQuery:true,rules:[{activityIds:['.ThemeResourceProxyTabActivity','.module.detail.view.ThemeDetailActivity','.module.detail.view.WidgetDetailActivity','.v9.WallpaperSubjectActivity'],matches:'[vid=\"ad_close_btn\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/17143445','https://i.gkd.li/i/17143447','https://i.gkd.li/i/17675601','https://i.gkd.li/i/19637669']}]},{key:2,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'clickCenter',activityIds:['com.android.thememanager.ThemeResourceTabActivity','com.android.thememanager.ThemeResourceProxyTabActivity'],matches:'ImageView[vid=\"cancel\"][desc=\"关闭\"]',snapshotUrls:['https://i.gkd.li/i/13215038','https://i.gkd.li/i/15286330']}]},{key:3,name:'局部广告-右下角悬浮窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:['com.android.thememanager.ThemeResourceTabActivity','com.android.thememanager.ThemeResourceProxyTabActivity'],matches:'[vid=\"close\"]',exampleUrls:'https://m.gkd.li/57941037/41ff6d56-e583-4e6e-9fb3-4efafaeedbd5',snapshotUrls:['https://i.gkd.li/i/14722559','https://i.gkd.li/i/15286334']}]}]},{id:'com.heytap.themestore',name:'主题商店',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.nearme.themespace.activities.ThemeMainActivity',matches:'@ImageView[clickable=true][visibleToUser=true][childCount=0][width<120 && height<120] <2 RelativeLayout[childCount=2] < ViewGroup[childCount=1] < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/4e97c4fa-6d59-4073-8dd1-fc2deb531a41',snapshotUrls:'https://i.gkd.li/i/21327613'}]}]},{id:'com.wuba.zhuanzhuan',name:'转转',groups:[{key:1,name:'更新提示',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:0,matches:'@[text=\"下次再说\" || text=\"残忍拒绝\"] < * > [text^=\"立即\"][text.length=4]',snapshotUrls:['https://i.gkd.li/i/14292849','https://i.gkd.li/i/14392301']}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,activityIds:'com.zhuanzhuan.module.reach.channel.impl.uicode.ReachDialogActivity',matches:'[id=\"android:id/content\"] > ViewGroup[childCount=3] >2 ViewGroup[childCount>1] > ImageView[clickable=true][index=parent.childCount.minus(1)]',snapshotUrls:['https://i.gkd.li/i/14927441','https://i.gkd.li/i/15140820']}]},{key:3,name:'评价提示',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.MainActivity',matches:'@ImageView[clickable=true] - ViewGroup > [text=\"喜欢就给个好评吧\"]',snapshotUrls:'https://i.gkd.li/i/15881026'}]}]},{id:'com.sjm.luobo',name:'追剧达人',groups:[{key:6,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<80 && height<80] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\"]',snapshotUrls:'https://i.gkd.li/i/13723963'}]}]},{id:'com.whale.whaleshop.ced',name:'追剧达人',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击[我知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"我知道了\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c74158b2-c8d9-4ab2-aeb8-e87289fa49e0',snapshotUrls:'https://i.gkd.li/i/17498241'}]}]},{id:'com.bide.haoyoukan.buhaokan.kanbukan.hiiik',name:'追剧喵',groups:[{key:1,name:'更新提示',matchTime:10000,rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'@ImageView[childCount=0][clickable=true][index=parent.childCount.minus(1)] - [desc=\"了解更多\" || desc=\"暂不下载\"] <5 View < View < View < View < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/a8b9fa37-4d87-4ab0-a1f5-c09aea00a0f0',snapshotUrls:['https://i.gkd.li/i/23599803','https://i.gkd.li/i/23598096']}]},{key:2,name:'全屏广告',desc:'点击关闭',rules:[{fastQuery:true,matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/cd3a468f-0768-4fd6-952b-c0d5a9769486',snapshotUrls:'https://i.gkd.li/i/23598268'}]}]},{id:'com.mj.mjyd',name:'追漫大全',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',matches:'@ImageView < FrameLayout[childCount=1] <3 FrameLayout[childCount=5] <3 FrameLayout[childCount=5] >3 [text=\"立即下载\"]',snapshotUrls:'https://i.gkd.li/i/12895086'}]}]},{id:'com.pandabus.android.zb',name:'淄博出行',groups:[{key:3,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.pandabus.android.zb:id/iv_native_dislike\"]',snapshotUrls:'https://i.gkd.li/i/13400177'}]}]},{id:'com.zmsoft.forwatch',name:'子腾园',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,name:'字节广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.zmapp.fwatch.activity.NativeAdActivity',matches:'[id=\"com.zmsoft.forwatch:id/ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13545995'}]}]},{id:'com.zidongdianji',name:'自动点击器',groups:[{key:1,name:'分段广告-卡片广告',fastQuery:true,matchRoot:true,forcedTime:10000,activityIds:'com.autoclicker.clicker.MainActivity',rules:[{key:1,matches:'WebView >3 View[childCount=2] > View[childCount=4] > View[childCount=1] > @Image[childCount=0][visibleToUser=true][text=\"\"] <<n [vid=\"native_ad_container_top\" || vid=\"rv_record\"]',snapshotUrls:['https://i.gkd.li/i/14782886','https://i.gkd.li/i/16646833']},{key:3,position:{left:'width * 0.9481',top:'width * 0.0778'},matches:'WebView > View[childCount=2] > TextView[text!=null][visibleToUser=false] + @View[visibleToUser=true][childCount=0] <<n [vid=\"rv_record\"]',exampleUrls:'https://e.gkd.li/ab8308a9-a237-49ee-8ed5-38e6d543acf0',snapshotUrls:'https://i.gkd.li/i/16742931'},{key:4,fastQuery:true,matches:'@ImageView[clickable=true][width<80 && height<80] <2 LinearLayout +2 LinearLayout > [text=\"详情点击\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/029e9494-fb0a-4752-8711-1f6e68684ef5',snapshotUrls:'https://i.gkd.li/i/24336331'},{preKeys:[1,3,4],key:2,matches:'@[clickable=true] >n [text=\"不感兴趣\"]',exampleUrls:'https://e.gkd.li/560a7da4-64f5-4dc7-899c-60856241662f',snapshotUrls:['https://i.gkd.li/i/14783475','https://i.gkd.li/i/24336327']}]},{key:2,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.autoclicker.clicker.MainActivity',matches:'[vid=\"img_native_ad_default_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e6b14a8f-6533-4601-92b8-f5032fc18234',snapshotUrls:'https://i.gkd.li/i/19381476'}]}]},{id:'com.dep.biguo',name:'自考笔果题库',groups:[{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.dialog',matches:'@[text=\"取消\"] +2 [text=\"立即更新\"]',snapshotUrls:'https://i.gkd.li/i/12708751'}]},{key:2,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dep.biguo.dialog',matches:'[id=\"com.dep.biguo:id/imageView\"] + [id=\"com.dep.biguo:id/closeView\"]',snapshotUrls:'https://i.gkd.li/i/12708756'}]},{key:10,name:'权限提示-定位权限',actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.dep.biguo.mvp.ui.activity.MainActivity',matches:'[text*=\"定位权限\"] +2 [text=\"拒绝\"]',snapshotUrls:'https://i.gkd.li/i/12708770'}]}]},{id:'com.ziroom.ziroomcustomer',name:'自如',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"tv_ok\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c6507af4-1bb2-4c39-ab5d-3d04ec391291',snapshotUrls:'https://i.gkd.li/i/18373198'}]},{key:2,name:'全屏广告-推荐好友弹窗',desc:'点击关闭',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"iv_nps_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/808f8c61-211f-4592-abe5-21467c133ba6',snapshotUrls:'https://i.gkd.li/i/18373218'}]}]},{id:'cn.xiaochuankeji.tieba',name:'最右',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15858014','https://i.gkd.li/i/15858024']},{key:1,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/15858023'},{key:2,position:{left:'width * 0.8903',top:'width * 0.1342'},matches:'[vid=\"contentView\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15856190','https://i.gkd.li/i/15858008']}],order:-10},{key:1,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.home.setting.SettingActivity',matches:'[id=\"cn.xiaochuankeji.tieba:id/btn_ok\"][text^=\"马上升级\"] + [id=\"cn.xiaochuankeji.tieba:id/btn_cancel\"][text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/12660882'}]},{key:3,name:'分段广告-评论区卡片广告',fastQuery:true,activityIds:'.ui.post.postdetail.PostDetailActivity',rules:[{key:1,matches:'@[vid=\"iv_close\"] <<n [vid=\"ad_container\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/24209546','https://i.gkd.li/i/24380002']},{preKeys:[1],matches:'@[clickable=true] >2 [text=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/21334232'}]},{key:10,name:'权限提示-通知权限',desc:'系统通知弹窗，点击暂不开启',matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.ui.home.page.PageMainActivity',rules:[{key:1,matches:'[id=\"cn.xiaochuankeji.tieba:id/confirm\"][text=\"打开通知\"] + [id=\"cn.xiaochuankeji.tieba:id/cancel\"][text=\"暂不开启\"]',snapshotUrls:'https://i.gkd.li/i/12660823'},{key:2,matches:'[text^=\"开启通知\"] +(2) [id=\"cn.xiaochuankeji.tieba:id/tips_close\"]',snapshotUrls:'https://i.gkd.li/i/12660851'}]}]},{id:'com.doudoubird.weather',name:'最准天气',groups:[{key:1,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.MainActivity',matches:'[vid=\"ad_view\"] + [vid=\"delete_icon\"]',exampleUrls:'https://e.gkd.li/2a61d3de-6117-4d85-8f4d-565f6ee00a57',snapshotUrls:'https://i.gkd.li/i/17358146'}]}]},{id:'com.baidu.homework',name:'作业帮',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.baidu.homework.activity.index.IndexActivity',matches:'[vid=\"ad_dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/15374440'},{key:1,fastQuery:true,activityIds:'.activity.index.IndexActivity',matches:['[text^=\"小组件\"]','[text=\"以后再说\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23567064'}]}]},{id:'com.zuoyebang.knowledge',name:'作业帮家长版',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'[id=\"com.zuoyebang.knowledge:id/cancel_button\"]',snapshotUrls:'https://i.gkd.li/i/13695522'}]},{key:3,name:'评价提示-赏好评弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.baidu.homework.activity.init.InitActivity',matches:'TextView[id=\"com.zuoyebang.knowledge:id/btn_cancle\"]',snapshotUrls:'https://i.gkd.li/i/13043228'}]}]},{id:'com.pcncn.jj',name:'作业精灵',groups:[{key:6,name:'全屏广告-弹窗广告',desc:'点击关闭',fastQuery:true,rules:[{key:0,activityIds:'com.pcncn.jj.act.AnswerDetail2Activity',matches:'[id=\"com.pcncn.jj:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13695874'},{key:1,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.act.HomeNewActivity',matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/b83aa566-8105-4877-abcd-800abfe7634e',snapshotUrls:'https://i.gkd.li/i/17265140'}]}]},{id:'com.dfsly.bbs',name:'AC匿名版',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[id=\"android:id/content\"] >7 FrameLayout[childCount=7] > LinearLayout >3 ImageView[text=null][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13330351'}],order:-10},{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'.ui.NavigationActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13335135','https://i.gkd.li/i/13335316']},{key:1,fastQuery:true,activityIds:'.ui.NavigationActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/586a67a6-27d2-4cc2-9a00-be2fc63ed63f',snapshotUrls:'https://i.gkd.li/i/13343675'}]}]},{id:'com.chunqiu.ah',name:'AH视频',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,matches:'[text^=\"跳过\"][text.length<10]',snapshotUrls:['https://i.gkd.li/i/13264387','https://i.gkd.li/i/13264381']},{key:1,fastQuery:true,matches:'@ImageView - [text=\"|\"]',snapshotUrls:'https://i.gkd.li/i/13264377'},{key:2,fastQuery:true,anyMatches:['@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]','FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/15258457'}],order:-10},{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.androlua.LuaActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/13264383','https://i.gkd.li/i/13852448']},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] -4 @View[visibleToUser=true] > Image[childCount=0]',snapshotUrls:'https://i.gkd.li/i/15258557'},{key:2,fastQuery:true,activityIds:'com.androlua.LuaActivity',matches:'[text=\"我已知晓\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13852430'}]},{key:2,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.androlua.LuaActivity',matches:'@FrameLayout[childCount=1] <3 FrameLayout[childCount=3] +2 * >2 [text=\"了解更多\"]',snapshotUrls:'https://i.gkd.li/i/13635499'},{key:1,activityIds:'com.androlua.LuaActivity',matches:'@TextView[visibleToUser=true][childCount=0] - View >4 [text=\"立即下载\"]',snapshotUrls:['https://i.gkd.li/i/13852535','https://i.gkd.li/i/15258570','https://i.gkd.li/i/15258575']},{key:2,activityIds:'com.androlua.LuaActivity',matches:'WebView >3 View[childCount=6] > @View[visibleToUser=true] > Image[childCount=0]',snapshotUrls:'https://i.gkd.li/i/15258500'},{key:3,activityIds:'com.androlua.LuaActivity',matches:'[id=\"android:id/content\"] FrameLayout[childCount<=5] > FrameLayout[childCount=1] > ImageView[visibleToUser=true][index=0]',snapshotUrls:['https://i.gkd.li/i/13852695','https://i.gkd.li/i/13852670','https://i.gkd.li/i/13852669']}]},{key:4,name:'通知提示-公告弹窗',desc:'点击[不再提示]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.androlua.LuaActivity',matches:'[text=\"不再提示\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13852447'}]}]},{id:'com.akspeed.jiasuqi.gameboost',name:'AK加速器',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.ui.screen.MainActivity',matches:'@ImageView[index=1][clickable=true][visibleToUser=true][width<200 && height<200] <2 View[childCount=2] < View < ViewGroup < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/8cf84942-9a6e-43a7-b743-d72dff1b7d8c',snapshotUrls:'https://i.gkd.li/i/20538098'}]}]},{id:'android',name:'Android 系统',groups:[{key:1,name:'功能类-app无响应-关闭',desc:'点击关闭',rules:[{fastQuery:true,matches:['[text$=\"没有响应\" || text*=\"无响应\"]','[vid=\"aerr_close\"][text=\"确定\" || text=\"关闭应用\"][clickable=true]'],snapshotUrls:['https://i.gkd.li/i/24468450','https://i.gkd.li/i/24992555'],exampleUrls:'https://e.gkd.li/c87754c4-6fe1-4567-97c3-c74c8db3d561'}]}]},{id:'com.google.android.documentsui',name:'Android 系统文件选择器',groups:[{key:10,name:'功能类-授权第三方应用访问文件夹',desc:'自动点击\"使用此文件夹\"->\"允许\"',activityIds:'com.android.documentsui.picker.PickActivity',rules:[{key:0,matches:'[text=\"使用此文件夹\"]',snapshotUrls:'https://i.gkd.li/i/12799610'},{preKeys:0,key:1,matches:'[text=\"取消\"] + [text=\"允许\"]',snapshotUrls:'https://i.gkd.li/i/12799603'}]}]},{id:'com.njh.biubiu',name:'biubiu加速器',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.njh.ping.speedup.detail.fragment.LaunchVPNActivity',matches:'[vid=\"iv_listitem_dislike\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/13a828c7-b94d-463f-bceb-a92fa7ff069a',snapshotUrls:'https://i.gkd.li/i/19603369'}]}]},{id:'com.danlan.xiaolan',name:'Blued极速版',groups:[{key:3,name:'分段广告-卡片广告',fastQuery:true,activityIds:['com.blued.android.core.ui.TerminalActivity','com.soft.blued.ui.home.HomeActivity'],rules:[{key:0,matches:'[id=\"com.danlan.xiaolan:id/img_close\"][clickable=true]',snapshotUrls:['https://i.gkd.li/i/13421613','https://i.gkd.li/i/13421923']},{preKeys:[0],key:1,matches:'@LinearLayout > [text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/13421622','https://i.gkd.li/i/13422170']}]}]},{id:'com.hpbr.bosszhipin',name:'BOSS直聘',groups:[{key:0,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['.module.main.activity.MainActivity','.module.launcher.WelcomeActivity'],matches:'@ImageView[id=\"com.hpbr.bosszhipin:id/iv_cancle\"]',snapshotUrls:['https://i.gkd.li/i/13440781','https://i.gkd.li/i/13623476']}]}]},{id:'coding.yu.ccompiler.new',name:'C语言编译器',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'coding.yu.ccompiler.ui.CMainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',exampleUrls:'https://e.gkd.li/274838d1-4618-41ea-b42e-beb0b021f8b2',snapshotUrls:'https://i.gkd.li/i/17689928'},{key:1,fastQuery:true,activityIds:'coding.yu.ccompiler.ui.CMainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/1ea8876f-4cac-492e-b977-e9a512aa1661',snapshotUrls:'https://i.gkd.li/i/17689929'}]}]},{id:'cn.ccspeed',name:'CC加速器',groups:[{key:1,name:'局部广告-加速页分享抽奖浮窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'cn.ccspeed.app.MainActivity',matches:'@ImageView[visibleToUser=true] + [id=\"cn.ccspeed:id/iv_float\"]',snapshotUrls:'https://i.gkd.li/i/13539299'}]}]},{id:'com.viva.time_todo',name:'CliCli动漫',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:'com.maoyun.guoguo.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/13759356'},{key:1,name:'百度广告',fastQuery:true,activityIds:'com.baidu.mobads.sdk.api.MobRewardVideoActivity',matches:'@ImageView[clickable=true][childCount=0] - RelativeLayout >3 [text^=\"摇动手机\"]',snapshotUrls:'https://i.gkd.li/i/13761232'}]}]},{id:'com.sgcc.evs.echarge',name:'e充电',groups:[{key:1,name:'全屏广告-首页弹窗广告',desc:'点击关闭',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.evs.echarge.dev.ui.advertisement.SplashActivity','com.evs.echarge.dev.ui.MainActivity'],matches:'[id=\"com.sgcc.evs.echarge:id/iv_close\"]',snapshotUrls:['https://i.gkd.li/i/13958838','https://i.gkd.li/i/14005508']}]}]},{id:'com.sdhs.easy.high.road',name:'e高速',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,name:'腾讯广告',fastQuery:true,activityIds:'com.sdhs.easy.main.activity.MainActivity',matches:'@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] -2 FrameLayout >3 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13670340'}]}]},{id:'com.estrongs.android.pop',name:'ES文件浏览器',groups:[{key:0,name:'全屏广告-弹窗广告',rules:[{key:0,fastQuery:true,activityIds:'com.fighter.loader.view.InteractTemplateAdDialog',matches:'[id=\"com.estrongs.android.pop:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/12509667'},{key:1,fastQuery:true,activityIds:'com.estrongs.android.pop.view.FileExplorerActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/12509669'},{key:2,fastQuery:true,activityIds:['.app.openscreenad.HomeBackSplashActivity','.app.PopVideoPlayer','.view.FileExplorerActivity'],matches:'[vid=\"ad_close\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/3632e624-28bf-45fd-bb52-a7ee9a644b7a',snapshotUrls:['https://i.gkd.li/i/18072076','https://i.gkd.li/i/18072078','https://i.gkd.li/i/24684475']}]},{key:1,name:'局部广告',fastQuery:true,activityIds:'com.estrongs.android.pop.view.FileExplorerActivity',rules:[{key:0,matches:'ImageView - LinearLayout >2 ImageView[id=\"com.estrongs.android.pop:id/close\"][clickable=true]',snapshotUrls:'https://i.gkd.li/i/12674919'},{key:1,matches:'@[id=\"com.estrongs.android.pop:id/close\"] + [id=\"com.estrongs.android.pop:id/ad_flag_source\"]',snapshotUrls:'https://i.gkd.li/i/12818281'},{key:2,matches:'[vid=\"close_b_t_a_i_b_no_compliance\"]',snapshotUrls:'https://i.gkd.li/i/13842299'}]}]},{id:'com.uroad.carclub',name:'ETC车宝',groups:[{key:1,name:'局部广告-卡片广告',rules:[{key:0,fastQuery:true,activityIds:'com.uroad.carclub.main.activity.MainActivity',matches:'View[childCount=4] > @TextView[index=2][clickable=true] <<n [vid=\"ad_container_fl\"]',snapshotUrls:'https://i.gkd.li/i/13800067'}]}]},{id:'com.x2era.xcloud.app',name:'Fa米家',groups:[{key:1,name:'更新提示',desc:'关闭升级弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:['[id=\"com.x2era.xcloud.app:id/tv_upgrade\"]','[id=\"com.x2era.xcloud.app:id/iv_cancel\"]'],snapshotUrls:'https://i.gkd.li/i/13420706'}]}]},{id:'com.flomo.app',name:'flomo浮墨笔记',groups:[{key:1,name:'评价提示',rules:[{fastQuery:true,activityIds:'.ui.activity.MainActivity',matches:['[text=\"觉得 flomo 怎么样？\"]','[text=\"暂不提醒\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23935802'}]}]},{id:'com.gvsoft.gofun',name:'GoFun出行',groups:[{key:5,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.gvsoft.gofun.module.home.activity.HomeActivity',matches:'[id=\"com.gvsoft.gofun:id/cardView\"] + [id=\"com.gvsoft.gofun:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13497777'}]}]},{id:'com.google.android.gms',name:'Google Play 服务',groups:[{key:1,name:'功能类-谷歌填充密码自动授权',desc:'勾选[不再显示]-点击[使用]',fastQuery:true,activityIds:'com.google.android.gms.autofill.ui.AutofillDialogActivity',rules:[{key:0,matches:'[text=\"不再显示\"][checked=false]',exampleUrls:'https://m.gkd.li/57941037/26d02bb7-efb2-4b8c-b27a-32a878ac89b1',snapshotUrls:'https://i.gkd.li/i/14479073'},{preKeys:0,key:1,matches:'[text=\"使用\"]',exampleUrls:'https://m.gkd.li/57941037/b05ef245-7e2e-4516-80e5-12832296ec8f',snapshotUrls:'https://i.gkd.li/i/14479128'}]}]},{id:'com.android.vending',name:'Google Play 商店',groups:[{key:1,name:'功能类-Play保护机制弹窗',desc:'点击[不发送]/[拒绝]',rules:[{activityIds:'com.google.android.finsky.protectdialogs.activity.PlayProtectDialogsActivity',matches:'[text*=\"保护机制\"] +3 @View[clickable=true] > [text=\"不发送\" || text=\"拒绝\"]',snapshotUrls:['https://i.gkd.li/i/14035144','https://i.gkd.li/i/17375098']}]},{key:2,name:'全屏广告-弹窗广告',desc:'点击[以后再说]/[不用了]',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{key:1,position:{left:'width * 0.5',top:'height * 0.75'},activityIds:'com.google.android.finsky.activities.MainActivity',matches:'@LinearLayout[childCount=0][visibleToUser=true] -3 [text^=\"体验\" || text^=\"隆重推出\"]',snapshotUrls:['https://i.gkd.li/i/15286041','https://i.gkd.li/i/16397947']},{key:2,activityIds:'com.google.android.finsky.activities.MainActivity',matches:'[text=\"以后再说\" || text=\"不用了\" || text=\"No thanks\" || text=\"Not now\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14958783','https://i.gkd.li/i/16079813','https://i.gkd.li/i/17622043','https://i.gkd.li/i/18135816','https://i.gkd.li/i/18609168']}]},{key:3,name:'功能类-不开启生物识别支付',desc:'点击[以后再说]',rules:[{fastQuery:true,activityIds:'com.google.android.finsky.billing.acquire.SheetUiBuilderHostActivity',matches:['[text=\"要使用指纹或人脸验证购买交易吗？\"]','[text=\"以后再说\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23289407'}]},{key:4,name:'通知提示-隐私政策更新',rules:[{fastQuery:true,activityIds:'com.google.android.finsky.activities.MainActivity',matches:['[text=\"更新 Google Play 隐私设置\"]','[text=\"知道了\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/24982226'}]}]},{id:'com.google.android.apps.translate',name:'Google翻译',groups:[{key:4,name:'功能类-关闭登录备份翻译记录弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.google.android.apps.translate.TranslateActivity',matches:['[text=\"备份您的翻译历史记录\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/13495796'}]}]},{id:'com.leduoworks.gpstoolbox',name:'GPS工具箱',groups:[{key:1,name:'局部广告-首页占位广告',rules:[{fastQuery:true,activityIds:'com.leduoworks.gpstoolbox.frmt.MainFrmtActivity',matches:'[id=\"com.leduoworks.gpstoolbox:id/iv_close\"]',snapshotUrls:'https://i.gkd.li/i/13062612'}]}]},{id:'com.bbk.theme',name:'i 主题',groups:[{key:1,name:'全屏广告-推广弹窗',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.bbk.theme.Theme',matches:'[vid=\"card_close_img\"]',exampleUrls:'https://m.gkd.li/57941037/8207ec80-6e9d-4b9e-9880-7370d826c405',snapshotUrls:'https://i.gkd.li/i/14904298'}]},{key:2,name:'功能类-[添加主题卡片至桌面]弹窗',desc:'点击关闭',rules:[{fastQuery:true,matches:'@[vid=\"cancel\"] + * > [text=\"智慧桌面\"]',exampleUrls:'https://m.gkd.li/57941037/45df70c2-55bc-428a-91cf-40dff23ae2af',snapshotUrls:'https://i.gkd.li/i/14904036'}]}]},{id:'com.moutai.mall',name:'i茅台',groups:[{key:1,name:'全屏广告-首页弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:['com.moutai.mall.MainActivity','com.moutai.mall.module.splash.SplashActivity'],matches:'[id=\"com.moutai.mall:id/ivPic\"] + ViewGroup + [id=\"com.moutai.mall:id/vClose\"]',snapshotUrls:['https://i.gkd.li/i/12745130','https://i.gkd.li/i/12745153']}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@[id=\"com.moutai.mall:id/vClose\"] - LinearLayout > [text*=\"开通消息通知\"]',snapshotUrls:'https://i.gkd.li/i/12745142'}]}]},{id:'com.pingan.smt',name:'i深圳',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'com.pingan.smt.MainActivity',matches:'[vid=\"close_view\"]',exampleUrls:'https://e.gkd.li/97a058cf-0564-4194-b527-b2ec40233204',snapshotUrls:'https://i.gkd.li/i/17011387'}]}]},{id:'com.ruanmei.ithome',name:'IT之家',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{excludeMatches:'[vid=\"iv_search_back\"][visibleToUser=true]',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/49015bf7-6513-40b2-a436-d3c386ef1891',snapshotUrls:['https://i.gkd.li/i/16401878','https://i.gkd.li/i/16401899']}],order:-10},{key:1,name:'局部广告-卡片广告',fastQuery:true,rules:[{key:0,actionMaximum:1,resetMatch:'app',activityIds:'com.ruanmei.ithome.ui.MainActivity',matches:'@[visibleToUser=true][text=\"关闭\"] <<n [vid=\"ll_web\"][visibleToUser=true] + [vid=\"shadowLayout\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15413491',excludeSnapshotUrls:['https://i.gkd.li/i/15603266','https://i.gkd.li/i/17516358']},{key:1,activityIds:'com.ruanmei.ithome.ui.NewsInfoV8Activity',matches:'[vid=\"iv_dislike\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/16972394'}]},{key:2,name:'分段广告-信息流广告',desc:'长按广告-点击[屏蔽]-点击[不喜欢此条]',fastQuery:true,activityIds:'com.ruanmei.ithome.ui.MainActivity',rules:[{key:0,action:'longClick',matches:'@[longClickable=true] >4 [text=\"广告 \"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14734964',excludeSnapshotUrls:'https://i.gkd.li/i/19340823'},{preKeys:[0],key:1,matches:'[text*=\"屏蔽\"]',snapshotUrls:'https://i.gkd.li/i/14734962'},{preKeys:[1],key:2,matches:'[vid=\"rl_dislike\"]',snapshotUrls:'https://i.gkd.li/i/14734987'}]},{key:3,name:'更新提示',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.ruanmei.ithome.ui.MainActivity',matches:'[vid=\"btn_dialog_upgrade_ignore\"]',snapshotUrls:'https://i.gkd.li/i/15413494'}]}]},{id:'net.pchome.kds',name:'kds宽带山',groups:[{key:1,name:'分段广告-应用内卡片广告',activityIds:'net.pchome.kds.View.activity.TopicActivity2',rules:[{key:0,matches:'@Image[text=\"\"] < View +2 View > View > View > TextView',snapshotUrls:'https://i.gkd.li/i/13043221'},{preKeys:[0],key:1,matches:'@LinearLayout > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/13049609'}]}]},{id:'ai.ling.luka.app',name:'Luka阅读养成',groups:[{key:1,name:'权限提示-通知权限',desc:'点击[取消]',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.page.activity.MainActivity',matches:['[text=\"通知服务未开启\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/15796616'}]}]},{id:'bin.mt.plus',name:'MT管理器',groups:[{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.Main',matches:['[text=\"更新\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/16050794'}]}]},{id:'bin.mt.plus.canary',name:'MT管理器Pro',groups:[{key:2,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'bin.mt.plus.Main',matches:'@[text=\"取消\"] + [text=\"更新\"]',snapshotUrls:'https://i.gkd.li/i/13561226'}]}]},{id:'com.mxtech.videoplayer.ad',name:'MX 播放器',groups:[{key:1,name:'全屏广告-谷歌广告',activityIds:'com.mxtech.videoplayer.ad.ActivityMediaList',rules:[{matches:'[desc=\"Advertisement\"] + View >(2) View + Button[clickable=true]',snapshotUrls:'https://i.gkd.li/i/12642204'}]}]},{id:'gov.pianzong.androidnga',name:'NGA玩家社区',groups:[{key:0,name:'开屏广告',matchRoot:true,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"tv_tiaoguo\" || vid=\"iv_tg_ad\" || vid=\"tv_skip\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/d7520bc7-588b-4654-b6aa-d2736ac200bf',snapshotUrls:['https://i.gkd.li/i/13798686','https://i.gkd.li/i/17082872','https://i.gkd.li/i/17082897','https://i.gkd.li/i/17082899','https://i.gkd.li/i/23432463']}],order:-10},{key:1,name:'局部广告-首页-推荐-卡片广告',rules:[{activityIds:'com.donews.nga.activitys.MainActivity',matches:'[id=\"gov.pianzong.androidnga:id/iv_close_ad\"]',snapshotUrls:'https://i.gkd.li/i/12482727'}]},{key:2,name:'局部广告-话题-帖子列表广告',desc:'点击卡片x按钮关闭广告',activityIds:'gov.pianzong.androidnga.activity.forumdetail.ForumDetailActivity',rules:[{key:1,matches:'Image[text=\"ams_icon_single_close\"]',snapshotUrls:'https://i.gkd.li/i/12655805'},{key:2,matches:'TextView[text!=null] - ImageView < LinearLayout[childCount=2] + FrameLayout[childCount=1] > ImageView[id=null]',snapshotUrls:'https://i.gkd.li/i/12706140'},{key:3,matches:'[text=\"广告\"] - [id=\"gov.pianzong.androidnga:id/iv_information_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/13303236'}]},{key:3,name:'局部广告-社区-顶部广告',rules:[{activityIds:'com.donews.nga.activitys.MainActivity',matches:'[id=\"gov.pianzong.androidnga:id/iv_close_community_ad\"]',snapshotUrls:['https://i.gkd.li/i/12706132']}]},{key:4,name:'全屏广告-弹窗广告',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.donews.nga.activitys.MainActivity',matches:'[vid=\"iv_homedialog_close\" || vid=\"iv_close\"][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/346f4485-82a7-4cf3-aab3-1fe6c9bb23af',snapshotUrls:['https://i.gkd.li/i/14126934','https://i.gkd.li/i/21158044']}]},{key:5,name:'局部广告-评论区底部广告',desc:'点击关闭',rules:[{position:{left:'width * 0.9629',top:'width * 0.0472'},activityIds:'gov.pianzong.androidnga.activity.forumdetail.ArticleDetailActivity',matches:'[id=\"advertisementBottom\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/589a4441-4be0-4ebc-90f5-d0dc5cfc84ff',snapshotUrls:'https://i.gkd.li/i/17348441',excludeSnapshotUrls:'https://i.gkd.li/i/17348415'}]},{key:6,name:'权限提示-通知权限',desc:'点击关闭',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.donews.nga.activitys.MainActivity',matches:'[vid=\"iv_close_notification_guide\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/c6be338c-2a1b-4123-bd8c-51fa35d2b8f2',snapshotUrls:'https://i.gkd.li/i/24105952'}]}]},{id:'com.wn.app.np',name:'NP管理器',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'player.normal.np.activity.CommonEditActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://m.gkd.li/57941037/b75f4ba1-7e40-4ea2-9f65-20b61f018720',snapshotUrls:'https://i.gkd.li/i/14722550'}]}]},{id:'npgl.jsitcx.xlpqi',name:'NP管理器',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text$=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/12799926'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'@Image[id=null][text=\"\"] < View + View +n [text=\"反馈\"] +n View > View > TextView[text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12799942','https://i.gkd.li/i/12800095']}]},{key:2,name:'分段广告-卡片广告',activityIds:['flc.ast.HomeActivity','com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity'],rules:[{key:0,matches:'@Image[childCount=0][visibleToUser=true][width<80 && height<80] < View[childCount=1] +n View[childCount=2] >(2,3) [text=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12799977','https://i.gkd.li/i/12800107']},{key:1,matches:'@Image[childCount=0][visibleToUser=true][width<80 && height<80] < View[childCount=1] -3 View >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12800034',excludeSnapshotUrls:'https://i.gkd.li/i/12800162'},{preKeys:[0,1],key:2,matches:'@LinearLayout > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/12799995'}]}]},{id:'com.heytap.health',name:'OPPO 健康',groups:[{key:1,name:'更新提示',desc:'点击[以后再说]',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'com.heytap.health.settings.me.upgrade.UpgradeActivity',matches:['[text=\"检测到新版本\"][visibleToUser=true]','[text=\"以后再说\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/22657352'}]},{key:2,name:'局部广告-卡片广告',rules:[{fastQuery:true,activityIds:'com.heytap.health.main.MainActivity',matches:'[vid=\"adapter_act_root_view\"] > [vid=\"close\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22657359'}]},{key:3,name:'通知提示-健康周报',actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.main.MainActivity',matches:['[text=\"您的健康周报已生成\"]','[text=\"关闭\"]'],snapshotUrls:'https://i.gkd.li/i/22724032'}]},{key:4,name:'全屏广告',rules:[{fastQuery:true,activityIds:'.main.MainActivity',matches:'[vid=\"image_operation\"] + [vid=\"close\"]',snapshotUrls:'https://i.gkd.li/i/22724039'}]},{key:5,name:'其他-忽略[开启微信运动同步]',rules:[{fastQuery:true,activityIds:'com.heytap.health.main.MainActivity',matches:'[text^=\"开启微信运动同步\"] + [text=\"忽略\"]',exampleUrls:'https://e.gkd.li/867170d7-5c10-48fc-8bda-9139235ef718',snapshotUrls:'https://i.gkd.li/i/23087769'}]},{key:6,name:'权限提示-应用使用情况',desc:'点击[暂不]',rules:[{fastQuery:true,activityIds:'.sleep.SleepHistoryActivity',matches:['[text^=\"授权“OPPO 健康”应用访问应用使用情况\"]','[text=\"暂不\"]'],snapshotUrls:'https://i.gkd.li/i/23146074'}]}]},{id:'com.oplus.appdetail',name:'OPPO/一加应用安装器',groups:[{key:1,name:'功能类-自动安装应用',desc:'点击 ①继续安装 ②完成',fastQuery:true,rules:[{key:0,name:'点击[继续安装]',activityIds:['.model.guide.ui.InstallGuideActivity','.modelv2.parsing.PackageParsingV2Activity'],excludeMatches:'[id=\"com.oplus.appdetail:id/view_scanning_and_tip_view_tv_title\"][text^=\"正在扫描\"]',matches:'[id=\"com.oplus.appdetail:id/view_bottom_guide_continue_install_btn\" || text=\"继续安装\"]',snapshotUrls:['https://i.gkd.li/i/13054204','https://i.gkd.li/i/13038570','https://i.gkd.li/i/23146291','https://i.gkd.li/i/23146289'],excludeSnapshotUrls:'https://i.gkd.li/i/13038560'},{key:1,name:'点击[完成]',activityIds:'.model.finish.InstallFinishActivity',matches:'[text=\"完成\"]',snapshotUrls:['https://i.gkd.li/i/13038664','https://i.gkd.li/i/13054849']}]},{key:2,name:'功能类-安装中高风险应用',fastQuery:true,activityIds:'.model.guide.ui.InstallGuideActivity',rules:[{key:0,position:{left:'width * 0.726',top:'height * 0.5'},matches:'[text=\"不建议安装此应用；若仍需安装，可查看详情\"]',exampleUrls:'https://e.gkd.li/8697d1e8-fa9c-4b5b-92b9-559f55672047',snapshotUrls:'https://i.gkd.li/i/22377287'},{preKeys:[0],key:1,matches:'[text=\"已知悉应用风险\"][checked=false]',exampleUrls:'https://e.gkd.li/45246cef-1ef5-49bf-8b7f-09377bde823a',snapshotUrls:'https://i.gkd.li/i/22377327'},{preKeys:[1],matches:'[text=\"仍然安装\"]',exampleUrls:'https://e.gkd.li/45246cef-1ef5-49bf-8b7f-09377bde823a',snapshotUrls:'https://i.gkd.li/i/22377327'}]}]},{id:'com.heytap.market',name:'OPPO软件商店',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{fastQuery:true,matches:'@[clickable=true] > [text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/14668997'}],order:-10},{key:1,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{action:'back',activityIds:['com.heytap.upgrade.ui.UpgradeActivity','com.heytap.cdo.client.cards.page.main.maintab.MainTabActivity'],matches:'[text=\"发现软件商店新版本\"]',snapshotUrls:['https://i.gkd.li/i/13455965','https://i.gkd.li/i/23688317']}]},{key:2,name:'局部广告-右下角广告悬浮卡片',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.heytap.cdo.client.cards.page.main.maintab.MainTabActivity',matches:'@[desc=\"关闭\"] <2 [vid=\"view_id_float_ad\"]',exampleUrls:'https://m.gkd.li/57941037/51493144-2758-4bc7-b2b7-cc85c04c6cc1',snapshotUrls:'https://i.gkd.li/i/14469932'}]}]},{id:'com.oppo.store',name:'OPPO商城',groups:[{key:1,name:'更新提示',desc:'点击下次再说',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'@[text=\"下次再说\"] -3 [text=\"发现新版本\"]',snapshotUrls:'https://i.gkd.li/i/13295202'}]},{key:2,name:'全屏广告-弹窗广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.oppo.store.MainActivity',matches:'ImageView[id=\"com.oppo.store:id/dialog_delete\"][desc=\"关闭\"]',snapshotUrls:'https://i.gkd.li/i/13295201'}]}]},{id:'com.coloros.phonemanager',name:'OPPO手机管家',groups:[{key:3,name:'更新提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{matches:'@[text=\"取消\"] < [id=\"com.coloros.phonemanager:id/buttonPanel\"] > [text=\"更新\"]',snapshotUrls:'https://i.gkd.li/i/13194979'}]},{key:4,name:'局部广告-卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'com.coloros.phonemanager.clear.ClearMainActivity',matches:'[vid=\"ad_close\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/4d8b27a4-f129-479e-871b-bc6f664072ae',snapshotUrls:'https://i.gkd.li/i/14317524'}]},{key:5,name:'其他-风险应用提示',desc:'点击忽略',rules:[{fastQuery:true,activityIds:'com.oplus.phonemanager.virusdetect.VirusDialogActivity',matches:['[text$=\"风险应用\"][visibleToUser=true]','[text=\"忽略\"][visibleToUser=true]'],snapshotUrls:'https://i.gkd.li/i/19749344'}]}]},{id:'com.xyhui',name:'PU口袋校园',groups:[{key:1,name:'全屏广告-弹窗广告',rules:[{key:1,name:'腾讯广告',fastQuery:true,activityIds:['com.xyhui.start.PUMainActivity','com.xyhui.start.LoadingActivity','.lut.act.LutMainActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/14472097','https://i.gkd.li/i/13695488','https://i.gkd.li/i/23325238']},{key:2,name:'快手广告',fastQuery:true,activityIds:['com.xyhui.start.PUMainActivity','com.xyhui.start.LoadingActivity'],matches:'ImageView < @ViewGroup[clickable=true] < * <2 * +n * >(1,3) [text=\"广告\"]',exampleUrls:'https://e.gkd.li/1d51a37a-0444-4850-983c-3646b494204a',snapshotUrls:['https://i.gkd.li/i/16837806','https://i.gkd.li/i/13259196','https://i.gkd.li/i/13259198']},{key:3,name:'字节广告',fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'View[clickable=true] < FrameLayout +4 * >2 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/13259183'},{key:4,name:'美数广告',fastQuery:true,activityIds:'com.meishu.sdk.activity.SdkInterstitialActivity',matches:'[id=\"com.xyhui:id/ms_activity_sdk_interstitial_cacel\"]',snapshotUrls:'https://i.gkd.li/i/13458692'},{key:5,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] + @View[visibleToUser=true] > Image',snapshotUrls:'https://i.gkd.li/i/14560546'},{key:6,fastQuery:true,activityIds:['com.xyhui.start.PUMainActivity','com.xyhui.start.LoadingActivity','.lut.act.LutMainActivity'],matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:['https://i.gkd.li/i/14472098','https://i.gkd.li/i/14766902','https://i.gkd.li/i/23146070','https://i.gkd.li/i/23304106','https://i.gkd.li/i/24488993']},{key:7,fastQuery:true,activityIds:'.lut.act.LutMainActivity',matches:'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',exampleUrls:'https://e.gkd.li/240494b6-026f-49f7-a77d-986e70077218',snapshotUrls:'https://i.gkd.li/i/18245369'},{key:8,activityIds:'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',matches:'@Image[childCount=0][text=\"\"] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/22863858'},{key:9,fastQuery:true,activityIds:['com.anythink.basead.ui.ATPortraitTranslucentActivity','com.smartdigimkt.sdk.basead.ui.ATPortraitTranslucentActivity','com.beizi.ad.v2.activity.BeiZiNewInterstitialActivity'],matches:'[vid=\"anythink_myoffer_btn_close_id\" || vid=\"sdm_myoffer_btn_close_id\" || vid=\"beizi_interstitial_ad_close_iv\"]',snapshotUrls:['https://i.gkd.li/i/22868736','https://i.gkd.li/i/23293759','https://i.gkd.li/i/23577343']},{key:10,fastQuery:true,activityIds:'.lut.act.LutMainActivity',matches:'@[text=\"关闭\"] < * +n * >(1,2) [text*=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/23125533','https://i.gkd.li/i/23577305']},{key:11,fastQuery:true,activityIds:'.lut.act.LutMainActivity',matches:'@ImageView[width<140 && height<140] - * > [text^=\"请允许\"][text$=\"安装应用\"]',snapshotUrls:'https://i.gkd.li/i/23125594'},{key:12,name:'京东广告',fastQuery:true,activityIds:'.lut.act.LutMainActivity',matches:'@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',snapshotUrls:'https://i.gkd.li/i/23325124'},{key:13,fastQuery:true,activityIds:'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',matches:'@ImageView[width<100 && height<100] <<4 * + * >4 [text=\"反馈\"]',snapshotUrls:'https://i.gkd.li/i/23567050'},{key:14,fastQuery:true,activityIds:'.lut.act.LutMainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',snapshotUrls:'https://i.gkd.li/i/23937136'}]},{key:2,name:'局部广告-首页-右侧浮窗广告',fastQuery:true,rules:[{activityIds:['.lut.act.LutMainActivity','com.xyhui.start.PUMainActivity','com.xyhui.start.LoadingActivity'],matches:'ImageView[id=\"com.xyhui:id/deleteIv\"]',snapshotUrls:['https://i.gkd.li/i/22863860','https://i.gkd.li/i/12846543','https://i.gkd.li/i/12868119']}]},{key:5,name:'权限提示-通知权限',rules:[{fastQuery:true,activityIds:'com.pu.activity.act.ActivityApplyResult',matches:['[text^=\"打开系统消息通知\"]','[text=\"取消\"]'],snapshotUrls:'https://i.gkd.li/i/23206833'}]},{key:6,name:'功能类-打开应用自动进入部落',desc:'点击我的-我的部落-已通过-部落详情（如果有多个则点击第一个，仅开屏时触发一次）',rules:[{key:0,name:'点击导航栏[我的]',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'.lut.act.LutMainActivity',matches:'@ViewGroup[clickable=true][visibleToUser=true] > [text=\"我的\"] <<n [vid=\"mCustomTabView\"]',snapshotUrls:'https://i.gkd.li/i/23303536'},{key:1,name:'点击[我的部落]',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'.lut.act.LutMainActivity',matches:'@LinearLayout[vid=\"itemView\"][visibleToUser=true] > [text=\"我的部落\"]',snapshotUrls:'https://i.gkd.li/i/23303537'},{key:2,name:'点击[已通过]',fastQuery:true,actionMaximum:1,resetMatch:'app',activityIds:'com.lut.tribe.act.MyLutTribeAct',matches:'@RelativeLayout[clickable=true][visibleToUser=true] > [text=\"已通过\"]',snapshotUrls:'https://i.gkd.li/i/23303538'},{preKeys:[2],name:'进入部落详情',fastQuery:true,activityIds:'com.lut.tribe.act.MyLutTribeAct',matches:'@LinearLayout[clickable=true][visibleToUser=true] < [vid=\"mRecyclerView\"]',snapshotUrls:'https://i.gkd.li/i/23303539'}]}]},{id:'com.tencent.mtt',name:'QQ浏览器',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,matches:'@LinearLayout[clickable=true] > TextView[text=\"跳过\"]',snapshotUrls:'https://i.gkd.li/i/12472630'},{key:1,matches:'@View[clickable=true][childCount=0] +2 * >3 [text^=\"向上滑动\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/14819586','https://i.gkd.li/i/23743205']}],order:-10},{key:10,name:'分段广告-小说阅读页面-卡片广告',activityIds:'com.tencent.mtt.MainActivity',rules:[{actionCd:3000,key:0,name:'点击广告按钮',excludeMatches:'[desc=\"屏蔽此广告\"||desc=\"不感兴趣\"]',matches:'@ViewGroup[clickable=true][visibleToUser=true] > ViewGroup > [desc=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12907446','https://i.gkd.li/i/12907445']},{preKeys:[0],key:1,name:'点击[屏蔽此广告]/[直接关闭]',forcedTime:10000,matches:'@ViewGroup[childCount=1 || childCount=3] > [desc=\"屏蔽此广告\" || desc=\"直接关闭\"]',snapshotUrls:['https://i.gkd.li/i/12907654','https://i.gkd.li/i/12907651','https://i.gkd.li/i/12907655','https://i.gkd.li/i/12907653']}]},{key:11,name:'分段广告-小说阅读页面-视频广告',activityIds:'com.qq.e.tg.RewardvideoPortraitADActivity',rules:[{key:0,matches:'[text=\"腾讯广告\"] >n [id^=\"button_close\"]',snapshotUrls:'https://i.gkd.li/i/12909822'},{preKeys:[0],key:1,matches:'[id=\"com.tencent.mtt:id/reward_dialog_close\"]',snapshotUrls:'https://i.gkd.li/i/12908955'}]}]},{id:'com.tencent.qqmusic',name:'QQ音乐',groups:[{key:0,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,rules:[{key:0,fastQuery:true,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/bde5c1a5-3259-45d3-a6b8-8482f7818c6f',snapshotUrls:'https://i.gkd.li/i/17056504'},{key:1,action:'clickCenter',matches:'[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',exampleUrls:'https://e.gkd.li/6537da92-f5f6-4ee8-9219-5f39f7c5e8a2',snapshotUrls:'https://i.gkd.li/i/17068758'}],order:-10},{key:1,name:'局部广告-卡片广告',rules:[{key:1,fastQuery:true,activityIds:'com.tencent.qqmusic.business.playernew.view.NewPlayerActivity',matches:'[text^=\"广告\"] + [text=\"跳过\"][clickable=true][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/13985169'},{key:2,fastQuery:true,activityIds:'com.tencent.qqmusic.activity.AppStarterActivity',matches:'@[desc=\"关闭\"][clickable=true] -(1,2) [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13206534','https://i.gkd.li/i/13797001']},{key:3,fastQuery:true,activityIds:'com.tencent.qqmusic.activity.AppStarterActivity',matches:'@ImageView - ImageView - RelativeLayout >n [text=\"听歌入会赢绿钻\"||text=\"摇动点击广告跳转\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13206982','https://i.gkd.li/i/13218134']},{key:4,fastQuery:true,activityIds:'com.tencent.qqmusic.activity.AppStarterActivity',matches:'@[clickable=true][visibleToUser=true] > [text=\"广告\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/15041019','https://i.gkd.li/i/18227243'],excludeSnapshotUrls:'https://i.gkd.li/i/18219557'},{key:5,activityIds:'com.tencent.qqmusic.activity.AppStarterActivity',matches:'RecyclerView > LinearLayout[childCount=3] >5 ViewGroup[childCount=3] > @ViewGroup[clickable=true] >2 ImageView[text=null][desc=null][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/15756931'},{key:6,fastQuery:true,activityIds:'.activity.AppStarterActivity',matches:'@ImageView[clickable=true] - [text=\"广告\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/17450309'},{key:7,fastQuery:true,activityIds:'.activity.AppStarterActivity',matches:'[text=\"广告 | 关闭\"][visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/18227204'},{key:8,matchTime:10000,activityIds:'.activity.AppStarterActivity',matches:'RecyclerView > FrameLayout[desc!=null] >3 LinearLayout[id!=null] > ViewPager > FrameLayout[visibleToUser=true] > ImageView[childCount=0][clickable=true][width<150 && height<100][index=parent.childCount.minus(1)]',exampleUrls:'https://e.gkd.li/c7b25408-26ed-4010-8506-88f614dccd26',snapshotUrls:['https://i.gkd.li/i/23623581','https://i.gkd.li/i/23623677']},{key:9,activityIds:'.activity.AppStarterActivity',matches:'ImageView[width<80 && height<80] <<2 @ViewGroup[clickable=true] - [text^=\"hi~\"]',snapshotUrls:'https://i.gkd.li/i/23930716'}]},{key:2,name:'全屏广告-弹窗广告',rules:[{key:0,activityIds:['.activity.TranslucentWebViewActivity','.activity.AppStarterActivity','.business.playernew.view.NewPlayerActivity'],matches:'[desc=\"关闭\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/13115121','https://i.gkd.li/i/14549936','https://i.gkd.li/i/14798904','https://i.gkd.li/i/15209764','https://i.gkd.li/i/15261116','https://i.gkd.li/i/17459008','https://i.gkd.li/i/23930628','https://i.gkd.li/i/23930853']},{key:1,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:['.activity.AppStarterActivity','com.tencent.qqmusiccommon.hybrid.HybridViewActivity'],matches:'[desc^=\"关闭弹窗\"][clickable=true][visibleToUser=true]',exampleUrls:'https://e.gkd.li/47107dd3-b19a-4486-a0d1-6d9aa62ee722',snapshotUrls:['https://i.gkd.li/i/17057551','https://i.gkd.li/i/23495699']},{key:2,fastQuery:true,matchTime:10000,actionMaximum:1,activityIds:['.activity.AppStarterActivity','.business.playernew.view.NewPlayerActivity'],matches:'@ImageView[childCount=0][visibleToUser=true][width<130 && height<130] <n FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/881cddd2-e4ec-472e-8bf8-00f26f61cbc4',snapshotUrls:['https://i.gkd.li/i/18439138','https://i.gkd.li/i/22924866']},{key:3,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.AppStarterActivity',matches:'@ImageView[childCount=0][visibleToUser=true][width<120 && height<120] < FrameLayout < FrameLayout < FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/20745872'},{key:4,fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.AppStarterActivity',matches:'@ViewGroup[childCount=0][clickable=true][visibleToUser=true][width<150 && height<150] < ViewGroup[childCount=1] < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/f1c596e5-36b6-485b-aa55-a235d57bddf9',snapshotUrls:'https://i.gkd.li/i/22699207'},{key:5,fastQuery:true,activityIds:'.activity.AppStarterActivity',matches:'@ImageView[childCount=0][visibleToUser=true][width<150 && height<150] < FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',exampleUrls:'https://e.gkd.li/eb920de7-7f15-4398-b9a9-99ece0ab4ed6',snapshotUrls:'https://i.gkd.li/i/22699223'},{key:6,name:'免流弹窗',fastQuery:true,activityIds:['com.tencent.qqmusic.activity.AppStarterActivity','com.tencent.qqmusic.business.playernew.view.NewPlayerActivity'],matches:'[text=\"流量够用\"]',snapshotUrls:['https://i.gkd.li/i/13197868','https://i.gkd.li/i/15285647']},{key:7,name:'看广告免费听歌弹窗',fastQuery:true,activityIds:'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',matches:'@ViewGroup[desc=\"关闭按钮\"] - [desc^=\"看广告\"] <2 ViewGroup < ViewGroup < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13806773'},{key:8,fastQuery:true,activityIds:'com.tencent.qqmusic.activity.AppStarterActivity',matches:'@ViewGroup[childCount=0][clickable=true] <2 ViewGroup[childCount=2] < FrameLayout < FrameLayout < [id=\"android:id/content\"]',snapshotUrls:'https://i.gkd.li/i/13806782'},{key:9,matchTime:10000,actionMaximum:1,resetMatch:'app',activityIds:'.activity.AppStarterActivity',matches:'[desc$=\"不再提示\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e3d904e1-dfe5-4d12-b8c8-b1eead8459c9',snapshotUrls:'https://i.gkd.li/i/18428240'}]},{key:3,name:'更新提示-内测体验弹窗',desc:'点击[不再提醒]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.AppStarterActivity',matches:'[text=\"抢先体验\"] -2 [text=\"不再提醒\"]',snapshotUrls:'https://i.gkd.li/i/13178485'}]},{key:8,name:'评价提示-好评弹窗',desc:'点击关闭',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.activity.AppStarterActivity',matches:'@[vid=\"close_btn\"] - * > [text*=\"好评\"]',snapshotUrls:'https://i.gkd.li/i/14881903'}]},{key:9,name:'分段广告-评论区广告',desc:'点击右下角展开-点击[不感兴趣]',activityIds:'com.tencent.qqmusic.activity.base.FragmentActivityWithMinibar',rules:[{key:0,matches:'RecyclerView > ViewGroup > ViewGroup[childCount=6] > @ViewGroup[clickable=true][childCount=1] > ViewGroup > View',snapshotUrls:'https://i.gkd.li/i/15010210'},{preKeys:[0],key:99,fastQuery:true,matches:'@[clickable=true] > [text=\"不感兴趣\"]',snapshotUrls:'https://i.gkd.li/i/15010226'}]},{key:11,name:'其他-播放页[猜你也会喜欢]推荐',desc:'点击关闭',rules:[{fastQuery:true,activityIds:'.business.playernew.view.NewPlayerActivity',matches:'@ImageView[childCount=0][clickable=true] -2 [text=\"猜你也会喜欢\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/40846baf-4638-4740-970a-30924cbd9414',snapshotUrls:'https://i.gkd.li/i/18410610'}]}]},{id:'com.tencent.qqmusiccar',name:'QQ音乐车机版',groups:[{key:1,name:'更新提示',rules:[{fastQuery:true,activityIds:'com.tencent.qqmusiccar.app.activity.AppStarterActivity',matches:['[text$=\"版本升级\"]','[vid=\"dialog_button_close\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23792987'}]}]},{id:'com.tencent.androidqqmail',name:'QQ邮箱',groups:[{key:0,name:'分段广告-列表卡片广告',fastQuery:true,activityIds:'com.tencent.qqmail.fragment.base.MailFragmentActivity',rules:[{key:0,name:'英文版邮箱广告-点击Ads',matches:'[id=\"com.tencent.androidqqmail:id/advertise_view_ad\"]',snapshotUrls:'https://i.gkd.li/i/12842757'},{name:'英文版邮箱广告-点击Not interested',preKeys:[0],matches:'@FrameLayout > TextView[text=\"Not interested\"]',snapshotUrls:'https://i.gkd.li/i/12842775'},{key:1,name:'点击[广告]',matches:'LinearLayout > TextView + @LinearLayout[id!=null][clickable=true] > [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/12775857'},{key:2,fastQuery:true,matches:'[vid=\"btn_advertise_click_area\"]',exampleUrls:'https://e.gkd.li/acce3df3-9773-4b42-b468-4724a7851efe',snapshotUrls:'https://i.gkd.li/i/17908070'},{key:3,fastQuery:true,matches:'ImageView < LinearLayout[width<130 && height<100][id!=null] < @FrameLayout[clickable=true][id!=null] - [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/24559942'},{preKeys:[0,1,2,3],key:9,name:'点击[不感兴趣]',matches:'[text=\"不感兴趣\"]',snapshotUrls:['https://i.gkd.li/i/12775862','https://i.gkd.li/i/15051479','https://i.gkd.li/i/17908078']}]},{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.qqmail.fragment.base.MailFragmentActivity',matches:'[text=\"立刻开启\"] - [text=\"以后再说\"]',snapshotUrls:'https://i.gkd.li/i/13043069'}]}]},{id:'com.qq.reader',name:'QQ阅读',groups:[{key:3,name:'局部广告-右下角悬浮卡片广告',desc:'点击关闭',rules:[{fastQuery:true,activityIds:['com.qq.reader.activity.MainActivity','com.qq.reader.activity.MainFlutterActivity'],matches:'[vid=\"operating_activity_close_view\"]',exampleUrls:'https://e.gkd.li/29b1cea7-6984-4d51-b1a0-f5ffd1b0d727',snapshotUrls:['https://i.gkd.li/i/14140100','https://i.gkd.li/i/16517211']}]},{key:4,name:'更新提示-内测邀请弹窗',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.tencent.upgrade.ui.UpgradeDialogActivity',matches:'[vid=\"upgrade_dialog_close_btn\"][clickable=true]',exampleUrls:'https://m.gkd.li/57941037/03e35d57-5f40-4ccb-911a-5f9061eab46e',snapshotUrls:'https://i.gkd.li/i/14376088'}]},{key:5,name:'分段广告-阅读页面广告',desc:'点击关闭-点击[关闭本条广告]',fastQuery:true,activityIds:'com.qq.reader.activity.ReaderPageActivity',rules:[{key:0,matches:'@[clickable=true] > [text=\"关闭广告\"]',exampleUrls:'https://m.gkd.li/57941037/70e15d7d-0911-44e7-b0d6-a8e74c00b8b1',snapshotUrls:'https://i.gkd.li/i/14767123'},{key:1,matches:'[vid=\"adv_close\"]',exampleUrls:'https://m.gkd.li/57941037/eb2bca3c-abbc-4666-b505-cdaeeec6a839',snapshotUrls:'https://i.gkd.li/i/14767126'},{preKeys:[0,1],key:50,matches:'[vid=\"view_close_ad_btn_bg\"]',exampleUrls:'https://m.gkd.li/57941037/c985da66-c2cc-4400-bb61-8f7ee6dbba11',snapshotUrls:['https://i.gkd.li/i/14767165','https://i.gkd.li/i/14767124']}]}]},{id:'com.realmecomm.app',name:'realme社区',groups:[{key:1,name:'功能类-自动签到',fastQuery:true,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.android.realme2.home.view.MainActivity',matches:'[text=\"签到\"][clickable=true][visibleToUser=true]',exampleUrls:'https://m.gkd.li/57941037/18a5751c-0bbd-475d-be6a-5803307111cb',snapshotUrls:'https://i.gkd.li/i/14321155'}]}]},{id:'com.UCMobile',name:'UC浏览器',groups:[{key:-1,name:'开屏广告',matchTime:10000,actionMaximum:1,resetMatch:'app',actionMaximumKey:0,priorityTime:10000,ignoreGlobalGroupMatch:true,rules:[{key:1,matches:'[id=\"android:id/content\"] > FrameLayout[childCount=4] >3 FrameLayout[childCount=4] > RelativeLayout[childCount=1] > View[childCount=0][text=null][clickable=true]',snapshotUrls:'https://i.gkd.li/i/13197655'},{key:2,fastQuery:true,position:{left:'width * 0.9',top:'width * 0.1676'},matches:'[id=\"com.UCMobile.adn_jingdong_sdk:id/animation_view\"]',exampleUrls:'https://e.gkd.li/92da64ad-5b08-4343-bec2-bb6a7e0bb92d',snapshotUrls:'https://i.gkd.li/i/16494884'}],order:-10},{key:0,name:'分段广告-信息流广告',activityIds:'com.uc.browser.InnerUCMobile',rules:[{key:0,matches:'TextView[text=\"广告\"] +n ImageView[desc=\"不感兴趣\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12880737','https://i.gkd.li/i/12881751']},{preKeys:[0],key:1,matches:'[text^=\"屏蔽\"][text$=\"广告\"]',snapshotUrls:['https://i.gkd.li/i/12880772','https://i.gkd.li/i/12881307']}]},{key:10,name:'权限提示-通知权限',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.uc.browser.InnerUCMobile',matches:'@ImageView - LinearLayout >n [text=\"开启消息通知\"]',snapshotUrls:'https://i.gkd.li/i/12880812'}]},{key:11,name:'其他-请求添加桌面快捷方式弹窗',desc:'点击关闭',rules:[{activityIds:'com.uc.browser.InnerUCMobile',matches:'@ImageView + [text^=\"添加\"][text$=\"到桌面\"]',snapshotUrls:'https://i.gkd.li/i/12880983'}]}]},{id:'com.upupoo.apu.mobile',name:'UPUPOO动态壁纸',groups:[{key:1,name:'青少年模式',desc:'点击\"我知道了\"',matchTime:10000,resetMatch:'app',actionMaximum:1,rules:[{activityIds:'.MainActivity',matches:'[desc=\"青少年模式\"] +3 [desc=\"我知道了\"]',snapshotUrls:'https://i.gkd.li/i/14052188'}]}]},{id:'com.netease.uuremote',name:'UU远程',groups:[{key:1,name:'权限提示-通知提示',rules:[{fastQuery:true,activityIds:'com.remote.app.ui.activity.MainActivity',matches:['[text=\"开启消息通知\"]','[text=\"以后再说\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/23787454'}]}]},{id:'com.chaozh.iReader',name:'VIVO 电子书',groups:[{key:1,name:'权限提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT',matches:'Button[text=\"前往开启\"] - Button[text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13627649'}]},{key:2,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',matches:'@ImageView[clickable=true] + TextView[text=\"开启推送通知\"]',snapshotUrls:'https://i.gkd.li/i/13837961'}]}]},{id:'com.vivo.space',name:'vivo 官网',groups:[{key:0,name:'开屏广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',priorityTime:10000,rules:[{matches:'[vid=\"timer\" || vid=\"jump_over\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/e531ea4e-874f-4da4-bcf1-f585887f753c',snapshotUrls:['https://i.gkd.li/i/16775800','https://i.gkd.li/i/19499311']}],order:-10},{key:3,name:'全屏广告-活动广告',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.vivo.space.ui.VivoSpaceTabActivity',matches:'View[childCount=2] > @[index=1][clickable=true][visibleToUser=true][childCount=0] <<n [id=\"com.vivo.space:id/floating_window_web\"]',snapshotUrls:['https://i.gkd.li/i/13218155','https://i.gkd.li/i/13292907']}]},{key:4,name:'权限提示-通知权限',desc:'点击取消',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.ui.VivoSpaceTabActivity',matches:'Button[id=\"com.vivo.space:id/vbutton_title\"][text=\"取消\"]',snapshotUrls:'https://i.gkd.li/i/13771581'}]}]},{id:'com.vivo.browser',name:'vivo浏览器',groups:[{key:1,name:'功能类-免流提示',rules:[{activityIds:'com.vivo.browser.pendant.PendantActivity',matches:'[id=\"com.vivo.browser:id/dialog_button_right\"][text=\"继续浏览\"]',snapshotUrls:'https://i.gkd.li/i/12847431'}]},{key:2,name:'局部广告-天气详情页面',rules:[{key:0,activityIds:'com.vivo.browser.lightweb.LightWebNomalStartActivity',matches:'[text$=\"广告\"] +5 * > Image',snapshotUrls:'https://i.gkd.li/i/14392332'}]}]},{id:'com.bbk.appstore',name:'vivo应用商店',groups:[{key:1,name:'权限提示-通知权限',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:1,activityIds:'.ui.AppStoreTabActivity',matches:['[text*=\"通知\"]','[text=\"取消\"]'],snapshotUrls:['https://i.gkd.li/i/13198234','https://i.gkd.li/i/13246971','https://i.gkd.li/i/13884356']}]},{key:2,name:'全屏广告-热门应用推荐',desc:'点击[跳过，进入首页]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{fastQuery:true,activityIds:'.upgrade.UpgradeNecessaryActivity',matches:'[text=\"跳过，进入首页\"]',exampleUrls:'https://e.gkd.li/eb96ca80-2e68-4f41-ac0f-3c82092034d7',snapshotUrls:'https://i.gkd.li/i/13198101'}]}]},{id:'com.suda.yzune.wakeupschedule',name:'WakeUp课程表',groups:[{key:1,name:'评价提示',rules:[{fastQuery:true,activityIds:'com.suda.yzune.wakeupschedule.schedule.ScheduleActivity',matches:'@[vid=\"ib_close\"][clickable=true] +n [text$=\"五星好评\"]',snapshotUrls:'https://i.gkd.li/i/24230090'}]},{key:2,name:'更新提示',rules:[{fastQuery:true,activityIds:'com.suda.yzune.wakeupschedule.schedule.ScheduleActivity',matches:['[text^=\"新版\"]','[vid=\"update_close\"][clickable=true]'],snapshotUrls:'https://i.gkd.li/i/24336743'}]}]},{id:'com.snda.wifilocating',name:'WiFi万能钥匙',groups:[{key:1,name:'全屏广告-弹窗广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.lantern.start.main.activity.HomeMainActivity',matches:'[vid=\"interstitial_close_iv\"]',snapshotUrls:'https://i.gkd.li/i/14032794'},{key:1,activityIds:'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',matches:'[text=\"反馈\"] + View[visibleToUser=true]',snapshotUrls:'https://i.gkd.li/i/14256643'},{key:2,fastQuery:true,activityIds:'com.zm.wfsdk.core.activity.WfInterstitialActivity',matches:'@[vid=\"wf_interstitial_close_iv\"] < * >5 [vid=\"wf_interstitial_action_tv\"]',snapshotUrls:['https://i.gkd.li/i/14927523','https://i.gkd.li/i/15320417']},{key:3,fastQuery:true,activityIds:'com.wifitutu.ui.main.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',snapshotUrls:'https://i.gkd.li/i/14964913'}]},{key:2,name:'全屏广告-连接WiFi后弹出的广告',desc:'点击关闭',rules:[{key:0,fastQuery:true,activityIds:'com.wifitutu.ui.tools.SpeedUpBActivity',matches:'[vid=\"native_express_close_proxy\"]',snapshotUrls:'https://i.gkd.li/i/14622506'}]},{key:3,name:'功能类-加速成功后自动点击返回',rules:[{fastQuery:true,activityIds:'com.wifitutu.ui.tools.SpeedUpActivity',matches:'[vid=\"success_desc\"] + [vid=\"back_layout\"]',exampleUrls:'https://m.gkd.li/57941037/90a4d16d-b39b-4068-882b-d22acca2b632',snapshotUrls:'https://i.gkd.li/i/14811531'}]},{key:4,name:'局部广告-连接WiFi界面右侧悬浮广告',rules:[{key:0,fastQuery:true,activityIds:'com.wifitutu.ui.main.MainActivity',matches:'[vid=\"img_close\"]',snapshotUrls:'https://i.gkd.li/i/15284722'}]},{key:5,name:'局部广告-“我的”界面广告卡片',rules:[{key:0,fastQuery:true,activityIds:'com.wifitutu.ui.main.MainActivity',matches:'[vid=\"native_express_ad_close\"]',snapshotUrls:'https://i.gkd.li/i/15284730'}]}]},{id:'com.wifitutu',name:'WiFi万能钥匙',groups:[{key:1,name:'局部广告-首页-WiFi列表广告',desc:'点击关闭',rules:[{key:1,fastQuery:true,activityIds:'com.wifitutu.ui.main.MainActivity',matches:'@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]',snapshotUrls:'https://i.gkd.li/i/13233916'},{key:2,fastQuery:true,activityIds:'com.wifitutu.ui.main.MainActivity',matches:'@Image[text=\"\"] < View +n View > View > TextView[visibleToUser=true][text=\"广告\"] <<n [id=\"com.wifitutu:id/ad_part\"]',snapshotUrls:'https://i.gkd.li/i/13234048'}]}]},{id:'com.twitter.android',name:'X(推特)',groups:[{key:1,name:'分段广告-主页信息流广告',desc:'点击右上角关闭,点击我不喜欢',actionCd:3000,fastQuery:true,activityIds:['com.twitter.app.main.MainActivity','com.twitter.app.profiles.ProfileActivity'],rules:[{key:0,name:'视频广告-点击右上角关闭',matches:'@[vid=\"tweet_curation_action\"] <2 * + * >3 [text=\"视频将在广告后播放\"]',snapshotUrls:['https://i.gkd.li/i/12798795','https://i.gkd.li/i/14782884']},{key:1,name:'推荐广告-点击右上角关闭',matches:'@[vid=\"tweet_curation_action\"] <2 * + * > [text$=\"推荐\"]',snapshotUrls:['https://i.gkd.li/i/12813235','https://i.gkd.li/i/14782897','https://i.gkd.li/i/17182889']},{key:2,matches:'[vid=\"tweet_curation_action\"] - [vid=\"tweet_ad_badge_top_right\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/705dd827-ff04-4233-af38-60d92439e1f3',snapshotUrls:'https://i.gkd.li/i/24359526'},{preKeys:[0,1,2],key:10,name:'点击[我不喜欢这个广告]',matches:'@ViewGroup[clickable=true] > [text=\"我不喜欢这个广告\" || text^=\"屏蔽\"][visibleToUser=true]',snapshotUrls:['https://i.gkd.li/i/12798810','https://i.gkd.li/i/14782902','https://i.gkd.li/i/20239421','https://i.gkd.li/i/24359537']}]},{key:2,name:'分段广告-帖子详情页、搜索页信息流广告',desc:'点击右上角关闭,点击屏蔽用户,确认屏蔽.点击[我不喜欢]会返回主页,因此点击[屏蔽]',fastQuery:true,activityIds:['com.twitter.tweetdetail.TweetDetailActivity','com.twitter.android.search.implementation.results.SearchActivity'],actionCd:3000,rules:[{name:'点击右上角关闭-1',key:0,matches:'@[id=\"com.twitter.android:id/tweet_curation_action\"] +n [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text=\"推荐\"]',snapshotUrls:['https://i.gkd.li/i/12825969','https://i.gkd.li/i/12847584']},{name:'点击右上角关闭-2',key:1,matches:'@[id=\"com.twitter.android:id/tweet_curation_action\"] <2 * + [id=\"com.twitter.android:id/tweet_auto_playable_content_parent\"] > [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text$=\"推荐\"]',snapshotUrls:['https://i.gkd.li/i/12882676','https://i.gkd.li/i/12904603']},{name:'点击右上角关闭-英文',key:2,matches:'[id=\"com.twitter.android:id/tweet_ad_badge_top_right\"] + [id=\"com.twitter.android:id/tweet_curation_action\"]',snapshotUrls:['https://i.gkd.li/i/13680756']},{preKeys:[0,1,2],key:10,name:'点击屏蔽',matches:'@ViewGroup > [id=\"com.twitter.android:id/action_sheet_item_title\"][text^=\"屏蔽\"||text^=\"屏蔽\"||text^=\"Block\"||text^=\"隐藏 @\"||text^=\"Hide @\"]',snapshotUrls:['https://i.gkd.li/i/12828815','https://i.gkd.li/i/12847600','https://i.gkd.li/i/12904602','https://i.gkd.li/i/13680783','https://i.gkd.li/i/25089665']},{preKeys:[10],key:11,matches:'[text=\"取消\"||text^=\"Cancel\"] + [text=\"屏蔽\"||text^=\"Block\"||text=\"是的，我确定\"||text^=\"Yes\"]',snapshotUrls:['https://i.gkd.li/i/12828832','https://i.gkd.li/i/12904601','https://i.gkd.li/i/13680798','https://i.gkd.li/i/25089666']}]},{key:3,name:'分段广告-用户资料页信息流广告',desc:'点击右上角关闭,点击我不喜欢',fastQuery:true,activityIds:'com.twitter.app.profiles.ProfileActivity',actionCd:3000,rules:[{name:'点击右上角关闭-1',key:0,matches:'@[id=\"com.twitter.android:id/tweet_curation_action\"] +n [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text=\"推荐\"]',snapshotUrls:['https://i.gkd.li/i/12825969','https://i.gkd.li/i/12847584']},{name:'点击右上角关闭-2',key:1,matches:'@[id=\"com.twitter.android:id/tweet_curation_action\"] <2 * + [id=\"com.twitter.android:id/tweet_auto_playable_content_parent\"] > [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text$=\"推荐\"]',snapshotUrls:['https://i.gkd.li/i/12882676','https://i.gkd.li/i/12904603']},{preKeys:[0,1],key:10,name:'点击[我不喜欢这个广告]',matches:'@ViewGroup > [id=\"com.twitter.android:id/action_sheet_item_title\"][text=\"我不喜欢这个广告\"]',snapshotUrls:'https://i.gkd.li/i/12798810'}]},{key:4,name:'评价提示',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.twitter.app.main.MainActivity',matches:'[id=\"com.twitter.android:id/app_rating_button_never\"]',snapshotUrls:'https://i.gkd.li/i/13774150'}]},{key:5,name:'权限提示-通知权限',desc:'点击\"Not now\"',fastQuery:true,matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'com.twitter.app.main.MainActivity',matches:'@[clickable=true] > [visibleToUser=true][text=\"Not now\"] <<n [vid=\"half_cover_recycler_view_holder\"]',snapshotUrls:'https://i.gkd.li/i/13930126'}]},{key:6,name:'功能类-自动点击翻译',rules:[{fastQuery:true,activityIds:'com.twitter.tweetdetail.TweetDetailActivity',matches:'[vid=\"translation_link\"][text^=\"翻译\"]',exampleUrls:'https://m.gkd.li/57941037/40ece44f-883f-429a-aa0c-17dac15a50e4',snapshotUrls:['https://i.gkd.li/i/14189817','https://i.gkd.li/i/14615911']}]},{key:7,name:'功能类-自动点击\"显示更多帖子\"',rules:[{fastQuery:true,activityIds:'com.twitter.app.main.MainActivity',matches:'@FrameLayout[clickable=true] > [text=\"显示更多帖子\"]',exampleUrls:'https://m.gkd.li/57941037/7efa8af7-90d3-42b4-bf5d-3d83775f175a',snapshotUrls:'https://i.gkd.li/i/14189847'}]},{key:8,name:'其他-关闭[开启个性化广告]弹窗',rules:[{fastQuery:true,activityIds:'com.twitter.app.main.MainActivity',matches:'[vid=\"secondary_button\"][clickable=true][getChild(0).getChild(0).getChild(0).text=\"保留更少相关广告\"]',snapshotUrls:'https://i.gkd.li/i/25150279'}]}]},{id:'com.custom.zktimehelp',name:'ZK助手',groups:[{key:1,name:'全屏广告-弹窗广告',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{key:0,fastQuery:true,activityIds:'com.custom.zktimehelp.ui.MainActivity',matches:'@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',exampleUrls:'https://e.gkd.li/95f17fff-486c-4cad-83c7-804b808ff800',snapshotUrls:'https://i.gkd.li/i/16670372'},{key:1,activityIds:'com.qq.e.ads.PortraitADActivity',matches:'FrameLayout[childCount=5] > FrameLayout[childCount=2] > FrameLayout[childCount=2] >2 @FrameLayout[childCount=1] > ImageView[childCount=0]',exampleUrls:'https://e.gkd.li/cacb889d-0328-4431-af23-d267fa4eb626',snapshotUrls:'https://i.gkd.li/i/16670426'}]}]},{id:'com.jxhy.kuwan.gga',name:'ギリギリ愛',groups:[{key:1,name:'通知提示-公告弹窗',desc:'点击[我知道了]',matchTime:10000,actionMaximum:1,resetMatch:'app',rules:[{activityIds:'.MainActivity',matches:'[desc=\"我知道了\"][visibleToUser=true]',exampleUrls:'https://e.gkd.li/95caf815-b2bc-48cc-a245-0341e58f0e39',snapshotUrls:'https://i.gkd.li/i/19749364'}]}]}]}"
  },
  {
    "path": "dist/AIsouler_gkd.version.json5",
    "content": "{id:666,version:406}"
  },
  {
    "path": "dist/CHANGELOG.md",
    "content": "# 变更记录\n\nv405 -> v406\n\n||||||\n|-|:-:|:-:|:-:|:-:|\n|应用|+3|~4||883 -> 886|\n|应用规则|+10|~4||2064 -> 2074|\n\n## 规则类别\n\n||||||\n|-|:-:|:-:|:-:|:-:|\n|局部广告|+3|~3||329 -> 332|\n|全屏广告|+2|~1||585 -> 587|\n|分段广告|+1|||129 -> 130|\n|功能类|+4|||276 -> 280|\n\n## 应用规则\n\n||+|~|-|\n|:-:|-|-|-|\n|Warplane Inc. Online<br>+1|<li>全屏广告|||\n|哔哩发评反诈<br>+1|<li>功能类-检查评论自动点击后台等待|||\n|番茄音乐（原畅听音乐）<br>+3|<li>全屏广告,<li>分段广告,<li>功能类-自动展开回复|||\n|QQ<br>~1||<li>局部广告||\n|哔哩哔哩<br>+2,~1|<li>功能类-直播自动点赞,<li>功能类-直播自动投喂粉丝团|<li>局部广告-直播间悬浮窗广告||\n|拼多多<br>~2||<li>局部广告-悬浮广告,<li>全屏广告-下单后出现的弹窗||\n|小红书<br>+3|<li>局部广告-你可能感兴趣的人,<li>局部广告-关闭首页信息流中推荐博主,<li>局部广告-直播间各种卡片|||\n"
  },
  {
    "path": "dist/README.md",
    "content": "# 订阅\n\nv406\n\n|||\n| - |:-:|\n|类别|11|\n|全局规则|3|\n|应用|886|\n|应用规则|2074|\n\n## 规则类别\n\n|||\n| - |:-:|\n|开屏广告|156|\n|青少年模式|10|\n|更新提示|225|\n|评价提示|56|\n|通知提示|59|\n|权限提示|190|\n|局部广告|332|\n|全屏广告|587|\n|分段广告|130|\n|功能类|280|\n|其他|49|\n\n## 全局规则\n\n- 开屏广告-全局\n- 更新提示-全局\n- 青少年模式-全局\n\n## 应用规则\n\n||||\n| - |:-:|-|\n|51CTO|1|<li>全屏广告-弹窗广告|\n|5EPlay|3|<li>权限提示-通知权限<li>局部广告-首页右下角浮窗<li>更新提示|\n|AfuseKt|1|<li>更新提示|\n|APKPure|8|<li>全屏广告-热门推荐关闭<li>功能类-更新与已安装界面-点击[查看更多]<li>分段广告-更新界面软件推荐<li>功能类-添加桌面快捷方式<li>全屏广告-弹窗广告<li>局部广告-悬浮广告<li>局部广告-卡片广告<li>局部广告-电报频道推广横幅|\n|AppShare|8|<li>开屏广告<li>局部广告-卡片广告<li>功能类-自动签到<li>分段广告<li>全屏广告-弹窗广告<li>通知提示-公告弹窗<li>功能类-自动点击[使用浏览器打开]<li>更新提示|\n|Battery Guru|2|<li>局部广告-卡片广告<li>全屏广告|\n|bilibili|6|<li>评价提示-评论区满意度评价<li>评价提示-APP评分<li>通知提示-订阅感兴趣的通知<li>权限提示-通知权限<li>功能类-自动领取会员经验<li>功能类-自动关闭故事模式|\n|Bitcoin Mining|1|<li>全屏广告|\n|Blued|3|<li>局部广告-卡片广告<li>全屏广告-弹窗广告<li>全屏广告-会员活动弹窗|\n|CamHipro|1|<li>局部广告-卡片广告|\n|Cellular-Z|1|<li>更新提示|\n|CFMOTO|1|<li>全屏广告-弹窗广告|\n|ChatGPT|1|<li>通知提示-套餐限额提示|\n|Chrome|1|<li>功能类-文件可能有害-点击[仍然下载]|\n|Cimoc|1|<li>全屏广告-弹窗广告|\n|Clash Meta for Android|1|<li>功能类-代理页面自动点击延迟测试|\n|Clousx6|1|<li>通知提示-公告弹窗|\n|ClrvAI|1|<li>通知提示-公告弹窗|\n|CSDN|6|<li>更新提示<li>分段广告-信息流广告<li>评价提示-软件好评弹窗<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>分段广告-底部广告|\n|CTM Buddy|2|<li>全屏广告-弹窗广告<li>局部广告-底部横幅广告|\n|cTrader|1|<li>功能类-询问是否是美国居民弹窗|\n|Cubox|1|<li>全屏广告-会员广告|\n|DeepSeek|1|<li>功能类-自动折叠思考过程|\n|ECOVACS HOME|1|<li>开屏广告|\n|Edge|4|<li>权限提示-通知权限<li>功能类-[关闭所有标签？]弹窗<li>功能类-关闭标签页<li>功能类-[前往CSDN APP阅读全文]弹窗|\n|Eyeplus|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|Facebook|1|<li>功能类-自动点击[查看翻译]|\n|Fantuan Delivery|3|<li>权限提示-通知权限<li>评价提示<li>局部广告-悬浮广告|\n|fiil+|1|<li>功能类-自动连接耳机|\n|Fing|1|<li>其他-教程弹窗|\n|FlowMark|1|<li>更新提示|\n|Gmail|1|<li>分段广告-信息流广告|\n|Gspace|2|<li>局部广告-主页面上方广告<li>全屏广告-Youtube播放视频跳过广告|\n|HMS Core|1|<li>全屏广告-弹窗广告|\n|Hydro Coach|1|<li>全屏广告-订阅推荐|\n|HypeRate|1|<li>全屏广告|\n|icash Pay|1|<li>全屏广告-弹窗广告|\n|iGPSPORT|1|<li>更新提示|\n|Instagram|2|<li>分段广告-信息流广告<li>功能类-自动点击[查看翻译]|\n|JavDB|1|<li>通知提示-公告弹窗|\n|JMComic2|4|<li>全屏广告<li>局部广告-底部横幅广告<li>功能类-路线选择<li>功能类-点击[我保证我已满18岁]|\n|JMComic3|1|<li>全屏广告|\n|Jump|2|<li>权限提示-通知权限<li>局部广告-信息流广告/卡片广告|\n|Keep|5|<li>全屏广告-首页弹窗广告<li>局部广告-首页信息流广告<li>全屏广告-运动购页面-弹窗广告<li>全屏广告-请求开启通知权限弹窗<li>更新提示|\n|KMB . LWB|1|<li>开屏广告|\n|LIBVIO|1|<li>其他-账号注册说明弹窗|\n|LOFTER|1|<li>局部广告-悬浮广告|\n|mFood|1|<li>局部广告-浮窗广告|\n|MINO 4K|1|<li>全屏广告-弹窗广告|\n|Mubeat|1|<li>全屏广告|\n|MyComic|1|<li>开屏广告|\n|Nekogram|1|<li>更新提示|\n|OmoFun|2|<li>全屏广告-弹窗广告<li>通知提示-公告弹窗|\n|OMOFUN|3|<li>开屏广告<li>通知提示-公告弹窗<li>全屏广告-弹窗广告|\n|OMOFUN|3|<li>开屏广告<li>通知提示-公告弹窗<li>全屏广告-插屏广告|\n|OmoFun|2|<li>全屏广告-弹窗广告<li>通知提示-公告弹窗|\n|OnStream|1|<li>全屏广告|\n|Oopz|1|<li>开屏广告|\n|OPENPOINT|2|<li>全屏广告-每日弹窗广告<li>通知提示-i珍食公告弹窗|\n|OurPlay|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|PicACG|5|<li>开屏广告<li>通知提示-公告弹窗<li>局部广告-漫画详情页广告<li>功能类-自动签到<li>功能类-流量提醒弹窗|\n|PICO|1|<li>更新提示|\n|PokeHub|2|<li>更新提示<li>全屏广告-订阅广告|\n|QCY|1|<li>局部广告-我的-卡片广告|\n|QQ|17|<li>开屏广告<li>局部广告<li>分段广告<li>功能类-登录授权<li>功能类-自动勾选原图<li>功能类-自动点击查看原图<li>开屏广告-QQ小程序开屏广告<li>更新提示<li>更新提示-消息页面-顶部<li>局部广告-聊天页面广告<li>功能类-自动领取群聊红包<li>功能类-申请入群后自动点击右上角关闭<li>功能类-授权登录时关闭获取QQ好友关系<li>其他-联系人页面-顶部可能认识的人推荐<li>功能类-自动解锁 Windows QQ<li>功能类-关闭体验模式提醒<li>功能类-自动跳转第三方应用|\n|QuickEdit|1|<li>功能类-自动点击完成|\n|RAR|1|<li>全屏广告-订购 RAR 弹窗|\n|RayLink|3|<li>更新提示<li>功能类-退出软件时点击\"退出程序\"<li>通知提示-首页反诈骗提示|\n|ReadEra|3|<li>评价提示-分享提示<li>全屏广告<li>全屏广告-高级版|\n|Reddit|3|<li>其他-关闭订阅社区消息提示<li>其他-NSFW 内容提示<li>功能类-自动点击翻译|\n|RJmao|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|Rotation|1|<li>全屏广告|\n|RQrun|1|<li>功能类-自动签到|\n|Samsung Music|1|<li>功能类-[优化电池使用量]弹窗|\n|Sankaku Black|1|<li>全屏广告|\n|SecurityAnalysis|2|<li>局部广告-安全监测通过后的广告<li>功能类-关闭安装应用后的安全检测|\n|Showcaller|1|<li>全屏广告-弹窗广告|\n|Soul|8|<li>开屏广告<li>局部广告-广场页卡片广告<li>评价提示-app评分<li>更新提示<li>权限提示-通知权限<li>局部广告-帖子详情页卡片广告<li>全屏广告-送礼开聊会话<li>全屏广告-推荐页领金币|\n|SpeedTest|1|<li>局部广告-测速后广告|\n|Spotify|1|<li>局部广告-卡片广告|\n|SteamPY|2|<li>更新提示<li>功能类-首页优惠券弹窗自动点击领取/使用|\n|TapTap|3|<li>分段广告-游戏浏览页面推荐广告<li>更新提示<li>青少年模式-首页顶部横幅提示|\n|Telegram|4|<li>权限提示-通知权限<li>其他-添加生日提示<li>局部广告-拍卖提示<li>其他-首页公告栏|\n|Telegram|1|<li>更新提示|\n|TeraBox|3|<li>开屏广告<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|TextNow|2|<li>其他-设为默认应用提示<li>权限提示-通知/链接蓝牙附件设备|\n|TikTok|4|<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>局部广告-悬浮广告<li>全屏广告-好友推荐弹窗|\n|TIM|2|<li>功能类-自动点击查看原图<li>功能类-发送图片时自动勾选[原图]|\n|ToDesk|1|<li>局部广告-卡片广告|\n|TradingView|2|<li>局部广告-卡片广告<li>全屏广告|\n|TwiTake|1|<li>评价提示-评分弹窗|\n|VMOS Pro|1|<li>全屏广告-弹窗广告|\n|Voice|1|<li>功能类-跳过实体号码链接|\n|Warplane Inc. Online|1|<li>全屏广告|\n|WE Learn|3|<li>功能类-离开考试页面弹窗<li>更新提示<li>功能类-中断考试弹窗|\n|WeiboBig|1|<li>功能类-流量继续播放视频|\n|WPS|8|<li>分段广告-首页文档列表广告<li>全屏广告<li>更新提示<li>功能类-关闭[开启WPS云服务]弹窗<li>分段广告-文档末尾广告<li>局部广告<li>功能类-自动签到<li>评价提示|\n|WPS Office Lite|2|<li>全屏广告<li>权限提示-通知权限|\n|Xfinity|1|<li>全屏广告|\n|YouTube|1|<li>全屏广告-会员广告|\n|YouTube|1|<li>功能类-关闭底部播放横条|\n|youtube|9|<li>全屏广告-视频播放-跳过广告<li>全屏广告-视频播放-赞助商广告<li>全屏广告-会员广告<li>权限提示-通知权限<li>功能类-自动翻译评论<li>其他-关闭播放器辅助功能弹窗<li>功能类-关闭视频播放结束后的推荐视频<li>局部广告<li>分段广告-播放页广告|\n|YouTube Music|1|<li>全屏广告-会员广告|\n|YouTube Music|3|<li>局部广告-播放界面广告<li>全屏广告-会员广告<li>通知提示-隐私提醒|\n|YouTube RVX|1|<li>功能类-评论区自动点击[翻译成中文]|\n|ZAKER|1|<li>开屏广告|\n|Zepp Life|1|<li>局部广告-首页-底部广告|\n|ZzzFun|1|<li>全屏广告-弹窗广告|\n|10000社区|1|<li>开屏广告|\n|115生活|2|<li>功能类-自动签到<li>更新提示|\n|123云盘|6|<li>全屏广告-弹窗广告<li>更新提示<li>功能类-扫码自动确认登录<li>全屏广告-相册自动备份弹窗<li>分段广告<li>局部广告|\n|172号卡|1|<li>通知提示-[公安部提示]弹窗|\n|19楼|1|<li>开屏广告|\n|1号会员店|1|<li>全屏广告-弹窗广告|\n|2345天气王|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|360家庭防火墙|1|<li>全屏广告-弹窗广告|\n|360浏览器|1|<li>局部广告-卡片广告|\n|360摄像机|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|360智慧生活|2|<li>局部广告-云录像会员广告<li>更新提示|\n|365时政|1|<li>全屏广告-首页弹窗广告|\n|4399游戏盒|2|<li>局部广告-悬浮广告<li>全屏广告-弹窗广告|\n|777影视|1|<li>全屏广告-弹窗广告|\n|7天澳門統考|3|<li>全屏广告-谷歌广告<li>全屏广告-视频广告<li>局部广告-页面底部广告|\n|99手游加速器|2|<li>局部广告-卡片广告<li>全屏广告-首页弹窗广告|\n|阿里巴巴|2|<li>更新提示<li>全屏广告-首页弹窗广告|\n|阿里云|1|<li>权限提示-通知权限|\n|阿里云盘|7|<li>功能类-自动签到<li>全屏广告-活动弹窗<li>更新提示<li>功能类-[开启相册自动备份功能]弹窗<li>功能类-扫描二维码登录时自动点击登录<li>全屏广告-[容量使用超限]提示<li>局部广告-卡片广告|\n|爱其意|2|<li>通知提示-首页通知弹窗<li>全屏广告-弹窗广告|\n|爱奇艺|5|<li>开屏广告<li>局部广告-顶部卡片广告<li>权限提示-通知权限<li>更新提示<li>全屏广告-播放页-插入广告|\n|爱奇艺极速版|1|<li>开屏广告|\n|爱奇艺体育|1|<li>开屏广告|\n|爱奇艺PAD|2|<li>开屏广告<li>全屏广告-暂停播放后出现的广告|\n|爱企查|2|<li>更新提示<li>权限提示-通知权限|\n|爱山东|1|<li>开屏广告|\n|爱玩机工具箱|1|<li>功能类-忽略授权提示|\n|爱吾游戏宝盒|1|<li>青少年模式|\n|安吉星|1|<li>开屏广告|\n|安全服务/小米手机管家|10|<li>功能类-USB安装应用,自动点击[继续安装]<li>功能类-禁止获取定位<li>功能类-使用返回退出时直接点击[退出]<li>功能类-电量已低于20%<li>功能类-高敏感权限自动确定<li>功能类-应用信息页-自启动提示<li>功能类-自动允许分享文件<li>功能类-自动关闭SIM卡安全保护验证提示<li>功能类-禁止后台运行弹窗<li>功能类-风险提示-仍然支付|\n|安兔兔评测|1|<li>局部广告-卡片广告|\n|安心记加班|1|<li>全屏广告-弹窗广告|\n|安心加速器|1|<li>局部广告-悬浮广告|\n|安易加速器|1|<li>更新提示|\n|澳覓|2|<li>权限提示-通知权限<li>局部广告-浮窗广告|\n|巴哈姆特|1|<li>开屏广告|\n|霸天安云|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|白描|1|<li>功能类-自动点击截取全屏|\n|百词斩|4|<li>开屏广告<li>全屏广告-活动弹窗<li>更新提示<li>通知提示-关闭顶栏提醒|\n|百度|2|<li>全屏广告-红包弹窗<li>更新提示|\n|百度百科|1|<li>权限提示-通知权限|\n|百度地图|7|<li>开屏广告<li>权限提示-定位权限<li>更新提示<li>权限提示-通知权限<li>功能类-通勤卡添加至桌面<li>全屏广告<li>局部广告|\n|百度输入法|2|<li>全屏广告-创作祝福弹窗<li>局部广告-底部会员悬浮卡片|\n|百度贴吧|13|<li>开屏广告<li>权限提示-通知权限<li>分段广告-信息流广告<li>局部广告-首页、推荐列表顶部卡片广告<li>更新提示<li>全屏广告-弹窗广告<li>局部广告-悬浮小广告<li>局部广告-[帖子内/吧内]底部悬浮窗<li>功能类-贴吧内签到并关闭弹窗<li>局部广告-帖子底部话题卡片<li>全屏广告-会员弹窗<li>局部广告-信息流广告<li>局部广告-感兴趣的吧推广|\n|百度网盘|7|<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>更新提示<li>权限提示-通知权限<li>评价提示<li>局部广告-悬浮广告<li>分段广告-暂不开启自动备份|\n|百度网盘-三星版本|5|<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>评价提示<li>权限提示-通知权限<li>功能类-[上新【专辑】功能]弹窗|\n|百分网游戏盒子|2|<li>全屏广告-弹窗广告<li>更新提示|\n|班级小管家|1|<li>分段广告-卡片广告|\n|薄荷健康|3|<li>更新提示<li>全屏广告-发现页弹窗广告<li>权限提示-通知权限|\n|宝宝生活记录|1|<li>全屏广告-弹窗广告|\n|宝宝树孕育|3|<li>开屏广告<li>全屏广告-弹窗广告<li>局部广告-首页右侧悬浮广告|\n|北京一卡通|2|<li>全屏广告-弹窗广告<li>功能类-跳过协议|\n|倍思|1|<li>权限提示-定位请求|\n|比亚迪王朝|1|<li>更新提示|\n|比翼多开|1|<li>全屏广告-弹窗广告|\n|币安|1|<li>更新提示|\n|必剪|2|<li>权限提示-通知权限<li>更新提示|\n|哔哩哔哩|20|<li>开屏广告<li>局部广告-评论区顶部公告横幅<li>分段广告-动态推荐卡片广告<li>更新提示<li>局部广告-视频页广告<li>局部广告-直播间悬浮窗广告<li>权限提示-通知权限<li>分段广告-首页推荐视频卡片广告<li>局部广告-个性化内容推荐弹窗<li>全屏广告-会员弹窗<li>全屏广告-分享稿件弹窗<li>分段广告-搜索结果广告<li>分段广告-视频详情页下方推广<li>功能类-自动关闭故事模式<li>功能类-自动点击评论区的[展开更多评论]<li>功能类-自动领取会员经验<li>功能类-自动点击查看原图<li>评价提示<li>功能类-直播自动点赞<li>功能类-直播自动投喂粉丝团|\n|哔哩哔哩HD|2|<li>开屏广告<li>分段广告-首页、视频播放页广告|\n|哔哩发评反诈|1|<li>功能类-检查评论自动点击后台等待|\n|表盘自定义工具|1|<li>通知提示-公告|\n|波点音乐|3|<li>开屏广告<li>全屏广告<li>局部广告|\n|不背单词|2|<li>功能类-自动签到<li>功能类-右下角年度报告弹窗|\n|不厌书法|1|<li>功能类-功能介绍|\n|布丁扫描|1|<li>更新提示|\n|布蕾4K|1|<li>通知提示-公告弹窗|\n|步道乐跑|1|<li>全屏广告-弹窗广告|\n|财联社|1|<li>全屏广告-首页弹窗广告|\n|彩虹多多|2|<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|彩云天气|5|<li>全屏广告-VIP弹窗广告<li>全屏广告-弹窗广告<li>分段广告-卡片广告<li>局部广告-卡片广告<li>功能类-点击收起顶部工具栏|\n|菜鸟|8|<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>更新提示<li>权限提示-通知权限<li>评价提示<li>功能类-询问[是否要查询包裹]弹窗<li>功能类-包裹页面-自动展开更多物流信息<li>其他-好友代取功能提示|\n|畅听FM|1|<li>全屏广告-弹窗广告|\n|超级课程表|4|<li>局部广告-首页卡片广告<li>局部广告-课程表界面广告<li>全屏广告-弹窗广告<li>更新提示|\n|车来了|5|<li>局部广告-卡片广告<li>更新提示<li>全屏广告-弹窗广告<li>功能类-打开app自动点击收藏列表第一个车🚗(不要同时开启哦~)<li>功能类-打开app自动点击第一个车🚗后打开地图🗺️(不要同时开启哦~)|\n|车旺大卡|1|<li>全屏广告-弹窗广告|\n|车学堂|1|<li>局部广告-卡片广告|\n|车e兴|1|<li>开屏广告|\n|虫虫助手|1|<li>全屏广告|\n|出口成章|1|<li>全屏广告-弹窗广告|\n|初音社|1|<li>全屏广告-谷歌广告|\n|楚税通|1|<li>更新提示|\n|春木漫画|1|<li>全屏广告-弹窗广告|\n|春雨医生|1|<li>评价提示-应用评分弹窗|\n|纯纯打码|1|<li>全屏广告-解锁高级功能|\n|次元城动画|2|<li>通知提示-公告<li>全屏广告|\n|次元城动画|1|<li>全屏广告-弹窗广告|\n|次元城动漫|1|<li>全屏广告-弹窗广告|\n|刺猬猫阅读|2|<li>开屏广告<li>功能类-自动签到|\n|大茶肆|1|<li>全屏广告-弹窗广告|\n|大连交通e出行|1|<li>全屏广告-弹窗广告|\n|大麦|3|<li>开屏广告<li>全屏广告-弹窗广告<li>更新提示|\n|大师兄影视|3|<li>全屏广告-弹窗广告<li>通知提示-公告弹窗<li>局部广告-卡片广告|\n|大淘客联盟|2|<li>权限提示-通知权限<li>全屏广告-弹窗广告|\n|大学搜题酱|8|<li>开屏广告<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>更新提示<li>权限提示-通知权限<li>评价提示-请求好评弹窗<li>全屏广告-邀好友得开学好礼<li>分段广告-底部卡片广告|\n|大姨妈|1|<li>全屏广告-弹窗广告|\n|大众点评|6|<li>全屏广告-主页推荐关注弹窗<li>权限提示-通知权限<li>局部广告-关闭[签到开红包]<li>全屏广告-弹窗广告<li>分段广告-推荐页卡片广告<li>功能类-选择地图时自动点击[更多]|\n|呆萌价|1|<li>开屏广告|\n|倒计日|2|<li>全屏广告-弹窗广告<li>评价提示-应用评价弹窗|\n|得间免费小说|1|<li>局部广告|\n|得物|1|<li>其他-截屏分享|\n|灯塔加速器|1|<li>通知提示-公告弹窗|\n|滴宠生活|3|<li>开屏广告<li>局部广告-左上角卡片弹窗<li>全屏广告-弹窗广告|\n|滴滴车主|1|<li>全屏广告-弹窗广告|\n|滴滴出行|5|<li>局部广告-打车页面右上角红包广告<li>更新提示<li>全屏广告-弹窗广告<li>全屏广告-[升级一键付款]弹窗<li>其他-追加车型提示|\n|点心云|1|<li>开屏广告|\n|电池容量检测管理|1|<li>全屏广告-弹窗广告|\n|电话|1|<li>功能类-接通话时自动点击录音|\n|电子邮件|1|<li>权限提示-自启动|\n|丁香园|15|<li>局部广告<li>全屏广告<li>权限提示-通知权限<li>权限提示-悬浮小窗播放权限<li>功能类-丁香园安全中心-自动点击继续访问<li>功能类-自动点击查看答案<li>功能类-药品说明书-表格全屏自动横屏观看<li>功能类-自动点击查看原图<li>功能类-📋病例视频自动慢速x0.5_选你想要的但不要多选!<li>功能类-📋病例视频自动慢速x0.8_选你想要的但不要多选!<li>功能类-📋病例视频自动倍速x1.5_选你想要的但不要多选!<li>功能类-📋病例视频自动倍速x2.0_选你想要的但不要多选!<li>功能类-📖课程视频自动倍速x1.2⚠️选你想要的但不要多选!<li>功能类-📖课程视频自动倍速x1.5⚠️选你想要的但不要多选<li>功能类-📖课程视频自动倍速x2.0⚠️选你想要的但不要多选|\n|叮当快药|1|<li>全屏广告-优惠卷提示|\n|钉钉|5|<li>局部广告-消息列表上方广告<li>功能类-文件即将过期提示<li>功能类-自动点击原图<li>更新提示<li>功能类-扫码自动登录桌面版|\n|东方财富|3|<li>更新提示<li>全屏广告<li>权限提示-通知权限|\n|东莞通|2|<li>局部广告<li>全屏广告|\n|懂车帝|9|<li>分段广告-首页推荐卡片广告<li>更新提示<li>局部广告-右下角悬浮窗<li>局部广告-文章底部卡片广告<li>局部广告-评论区信息流广告<li>权限提示-通知权限<li>局部广告-选车页卡片广告<li>局部广告-车型页面右下角直播悬浮窗<li>评价提示|\n|懂球帝|6|<li>开屏广告<li>更新提示<li>分段广告-首页信息流广告<li>全屏广告-弹窗广告<li>全屏广告-数据页弹窗广告<li>权限提示-通知权限|\n|动卡空间|3|<li>开屏广告<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|动漫共和国|1|<li>全屏广告-弹窗广告|\n|动漫共和国|2|<li>开屏广告<li>全屏广告|\n|动漫之家|2|<li>全屏广告-弹窗广告<li>局部广告-悬浮广告|\n|动漫之家社区|1|<li>全屏广告-弹窗广告|\n|動畫瘋|1|<li>其他-动画疯年龄限制|\n|抖音|2|<li>功能类-发现通讯录好友弹窗<li>权限提示-定位权限|\n|抖音|17|<li>开屏广告<li>局部广告<li>更新提示-关闭更新弹窗<li>权限提示-通知权限<li>功能类-自动勾选原图<li>其他-休息提醒<li>全屏广告-小组件弹窗<li>全屏广告<li>权限提示-通讯录权限<li>青少年模式<li>权限提示-定位权限<li>全屏广告-汽水音乐VIP<li>其他-个性化推荐弹窗<li>全屏广告-视频推荐广告<li>功能类-自动领取别人发的红包<li>功能类-自动抢口令红包<li>权限提示-相机权限|\n|抖音极速版|6|<li>功能类-功能体验邀请弹窗<li>全屏广告-朋友推荐弹窗<li>权限提示-通知权限<li>功能类-选择图片时自动勾选原图<li>全屏广告<li>全屏广告-添加桌面小组件|\n|抖音精选|2|<li>更新提示<li>评价提示|\n|斗鱼|1|<li>局部广告-直播间广告|\n|豆瓣|7|<li>开屏广告<li>分段广告-信息流广告<li>评价提示-关闭评分反馈弹窗<li>局部广告-卡片广告<li>全屏广告-弹窗广告<li>更新提示<li>其他-标记看过的影视弹窗|\n|毒霸姬|1|<li>更新提示|\n|堆糖|4|<li>局部广告-信息流广告<li>评价提示<li>全屏广告-图片页弹窗广告<li>权限提示-通知权限|\n|多点|3|<li>全屏广告-首页-弹窗广告<li>局部广告-首页-浮窗广告<li>更新提示|\n|多看|5|<li>全屏广告-首页弹窗广告<li>全屏广告-小说推荐弹窗<li>局部广告-小说页广告<li>分段广告-小说页全屏卡片广告<li>更新提示|\n|多屏互动|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|多系统工具箱|1|<li>全屏广告-弹窗广告|\n|饿了么|9|<li>更新提示<li>全屏广告-红包弹窗<li>全屏广告-活动弹窗<li>全屏广告-付款后弹窗广告<li>全屏广告-吃货卡续费弹窗<li>局部广告-首页底部浮窗广告<li>权限提示-定位权限<li>通知提示-获取订单信息通知<li>评价提示-底部调研邀请卡片|\n|鄂汇办|1|<li>开屏广告|\n|儿歌多多|1|<li>局部广告-卡片广告|\n|二柄|1|<li>分段广告|\n|发现精彩|1|<li>全屏广告|\n|番茄免费小说|11|<li>开屏广告<li>局部广告-阅读页面广告<li>更新提示<li>局部广告-首页右侧悬浮广告<li>全屏广告<li>全屏广告-阅读页面关注作者弹窗<li>分段广告-阅读页面广告<li>评价提示-请求好评弹窗<li>权限提示-通知权限<li>功能类-观看广告自动领取奖励<li>评价提示-点评此书弹窗|\n|番茄音乐（原畅听音乐）|3|<li>全屏广告<li>分段广告<li>功能类-自动展开回复|\n|番喜视频|1|<li>全屏广告-弹窗广告|\n|番喜视频|1|<li>全屏广告|\n|番喜视频|1|<li>全屏广告|\n|返利|1|<li>全屏广告-弹窗广告|\n|飞客|1|<li>全屏广告-弹窗广告|\n|飞猫管家|1|<li>开屏广告|\n|飞鸟听书|2|<li>全屏广告-弹窗广告<li>分段广告-看视频得奖励广告|\n|飞书|3|<li>功能类-桌面端登录确认<li>功能类-自动查看原图<li>功能类-自动发送原图|\n|飞韵听书|2|<li>分段广告-播放界面卡片广告<li>全屏广告-首页弹窗广告|\n|翡翠视频|1|<li>全屏广告-首页弹窗广告|\n|纷玩岛|1|<li>全屏广告-弹窗广告|\n|丰巢|2|<li>全屏广告<li>局部广告|\n|丰巢管家|1|<li>全屏广告-弹窗广告|\n|丰声|1|<li>功能类-自动确认登录|\n|风筝影评|1|<li>全屏广告-弹窗广告|\n|凤凰新闻|2|<li>分段广告-信息流广告<li>权限提示-定位权限|\n|负一屏|1|<li>分段广告-卡片广告|\n|富民银行|1|<li>开屏广告|\n|高德地图|9|<li>开屏广告<li>更新提示<li>功能类-截屏分享<li>局部广告-首页上方消息提醒<li>局部广告-首页签到卡片<li>局部广告-卡片广告<li>全屏广告<li>功能类-一键点亮角落<li>权限提示-授权蓝牙|\n|高佣联盟|1|<li>更新提示|\n|个人图书馆|1|<li>局部广告-信息流广告|\n|工程相机|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|公交实时定位|1|<li>开屏广告|\n|公考雷达|2|<li>局部广告-首页右侧悬浮广告<li>权限提示-通知权限|\n|呱呱天气|1|<li>局部广告-卡片广告|\n|咕咚|1|<li>全屏广告-弹窗广告|\n|古诗文网|1|<li>分段广告-弹窗广告|\n|古文岛|1|<li>全屏广告-弹窗广告|\n|谷歌相册|2|<li>更新提示<li>全屏广告-会员广告|\n|观星|1|<li>全屏广告-弹窗广告|\n|光大银行|3|<li>开屏广告<li>更新提示<li>全屏广告-首页弹窗广告|\n|光速虚拟机|1|<li>全屏广告-弹窗广告|\n|广东税务|1|<li>权限提示-通知权限|\n|国铁吉讯|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|果冻宝盒|1|<li>全屏广告-弹窗广告|\n|哈啰|6|<li>更新提示<li>权限提示-通知权限<li>权限提示-定位权限<li>全屏广告-弹窗广告<li>局部广告-右侧悬浮广告<li>其他-新人教学弹窗|\n|海尔智家|2|<li>更新提示<li>权限提示-通知权限|\n|海南航空|1|<li>全屏广告-首页弹窗广告|\n|海鸥加速器|2|<li>局部广告-卡片广告<li>全屏广告-谷歌广告|\n|海雀|2|<li>全屏广告-首页通知弹窗<li>权限提示-通知权限|\n|海星体育|1|<li>权限提示-]权限授权]弹窗|\n|韩小圈|2|<li>局部广告-卡片广告<li>全屏广告-视频播放时的弹窗广告|\n|杭州公共交通|1|<li>全屏广告-弹窗广告|\n|杭州市民卡|1|<li>全屏广告-弹窗广告|\n|杭州银行|2|<li>全屏广告<li>功能类-未登录时自动点击登录|\n|航旅纵横|3|<li>其他-进入飞行模式-提示弹窗<li>局部广告-首页右侧悬浮广告<li>全屏广告|\n|好游快爆|2|<li>更新提示<li>全屏广告-弹窗广告|\n|和包|1|<li>全屏广告-弹窗广告|\n|盒马|1|<li>全屏广告|\n|黑阈|1|<li>权限提示-权限不足弹窗|\n|恒大智慧社区|2|<li>权限提示-通知权限<li>更新提示|\n|红手指云手机|2|<li>更新提示<li>全屏广告-弹窗广告|\n|猴子分身|1|<li>全屏广告-购买会员弹窗|\n|虎扑|1|<li>分段广告-信息流广告|\n|虎牙直播|4|<li>局部广告-直播间悬浮广告<li>更新提示<li>全屏广告-弹窗广告<li>其他-root提示|\n|花小猪打车|2|<li>更新提示<li>全屏广告-弹窗广告|\n|华尔街见闻|2|<li>开屏广告<li>局部广告-卡片广告|\n|华图在线|2|<li>全屏广告-首页弹窗广告<li>权限提示-通知权限|\n|华为浏览器|3|<li>开屏广告<li>权限提示-通知权限<li>局部广告-卡片广告|\n|华为钱包|5|<li>局部广告-钱包扩展服务提示<li>全屏广告-小额免密支付弹窗<li>分段广告-首页卡片广告<li>功能类-支付成功后点击关闭<li>权限提示-NFC权限|\n|华为视频|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|华为天气|2|<li>开屏广告<li>分段广告-卡片广告|\n|华为音乐|3|<li>开屏广告<li>全屏广告-VIP弹窗广告<li>局部广告-推荐卡片广告|\n|华为音乐|5|<li>开屏广告<li>局部广告-播放界面直播浮窗<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>分段广告-首页横幅广告|\n|华为应用市场|7|<li>开屏广告<li>更新提示<li>功能类-应用更新页面-点击[查看更多]<li>全屏广告-热门应用推荐弹窗<li>局部广告-卡片广告<li>权限提示-通知权限<li>功能类-自动安装应用|\n|华为阅读|1|<li>开屏广告|\n|华为运动健康|6|<li>开屏广告<li>全屏广告-弹窗广告<li>其他-个性化推荐弹窗<li>局部广告<li>其他-请求开启[实时推送步数]弹窗<li>更新提示|\n|华为主题|5|<li>开屏广告<li>局部广告-悬浮广告<li>分段广告-卡片广告<li>全屏广告-首页活动弹窗<li>权限提示-通知权限|\n|欢律|2|<li>更新提示<li>更新提示-耳机固件更新弹窗|\n|汇率速查|1|<li>全屏广告|\n|会计云课堂|1|<li>开屏广告|\n|极光下载器|1|<li>通知提示-系统公告|\n|加班|1|<li>全屏广告|\n|驾考宝典|3|<li>局部广告-悬浮广告<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|驾校一点通|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|煎蛋|1|<li>功能类-自动查看高清图片|\n|剪映|3|<li>分段广告-导出界面底部广告<li>局部广告-选择素材界面上方广告<li>功能类-恢复创作|\n|简单搜索|1|<li>局部广告-信息流广告|\n|简书|3|<li>全屏广告-VIP弹窗<li>更新提示<li>局部广告-首页信息流广告|\n|简讯|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|匠多多师傅版|3|<li>开屏广告<li>全屏广告<li>通知提示-公告弹窗|\n|交管12123|4|<li>开屏广告<li>权限提示-通知权限<li>功能类-确认退出<li>更新提示|\n|交通银行|3|<li>全屏广告-弹窗广告<li>更新提示<li>通知提示-网络代理提示弹窗|\n|街猫|1|<li>权限提示-通知权限|\n|解压专家|4|<li>全屏广告-弹窗广告<li>全屏广告-升级专业版弹窗<li>全屏广告-软件推广<li>更新提示|\n|今日水印相机|1|<li>全屏广告-谷歌广告|\n|今日头条|11|<li>更新提示<li>局部广告-浮窗广告<li>权限提示-通知权限<li>全屏广告-竖屏视频广告<li>分段广告-信息流广告<li>局部广告-底部话题推荐弹窗<li>功能类-自动观看广告视频<li>局部广告-底部热榜弹窗<li>功能类-[关联抖音账号]弹窗<li>功能类-[下次打开APP默认进入发现频道]弹窗<li>全屏广告-弹窗广告|\n|今日校园|1|<li>更新提示|\n|金山文档|3|<li>局部广告-列表卡片广告<li>更新提示<li>权限提示-通知权限|\n|金十数据|4|<li>更新提示<li>全屏广告-首页弹窗广告<li>全屏广告-快讯页面弹窗广告<li>局部广告-会员页面顶部广告|\n|京东|13|<li>开屏广告<li>局部广告-购物车页面砸金蛋<li>局部广告-悬浮广告<li>权限提示-通知权限<li>全屏广告-弹窗广告<li>局部广告-横幅广告<li>功能类-京东账号登录授权<li>局部广告-支付页面产品推荐<li>全屏广告-购物车页面支付成功弹窗广告<li>全屏广告-加入购物车后出现的弹窗<li>功能类-支付订单后点击[完成]<li>功能类-支付订单后跳过开通[刷脸支付]<li>功能类-展开全部订单信息|\n|京东到家|2|<li>全屏广告-首页弹窗广告<li>更新提示|\n|京东读书|3|<li>开屏广告<li>全屏广告-首页弹窗广告<li>全屏广告-阅读页面弹窗广告|\n|京东金融|3|<li>权限提示-通知权限<li>更新提示<li>评价提示-满意度打分弹窗|\n|京东养车|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|京东云无线宝|1|<li>全屏广告-弹窗广告|\n|京粉|1|<li>全屏广告-弹窗广告|\n|京喜|1|<li>权限提示-定位权限|\n|京喜特价|2|<li>全屏广告-首页弹窗广告<li>权限提示-通知权限|\n|囧次元|1|<li>全屏广告-弹窗广告|\n|囧次元|1|<li>全屏广告-弹窗广告|\n|囧次元|2|<li>更新提示<li>全屏广告-弹窗广告|\n|剧多多|1|<li>全屏广告-弹窗广告|\n|剧兔|1|<li>全屏广告-弹窗广告|\n|开发助手|1|<li>局部广告-卡片广告|\n|看护家|1|<li>全屏广告-弹窗广告|\n|看剧|2|<li>全屏广告-弹窗广告<li>通知提示-[温馨提示]弹窗|\n|考试宝|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|拷貝漫畫|5|<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>全屏广告-关闭赞助提示<li>功能类-自动确认线路<li>通知提示-公告弹窗|\n|可可影视|1|<li>通知提示-公告弹窗|\n|可可影视|1|<li>通知提示-公告弹窗|\n|库街区|3|<li>功能类-自动签到<li>全屏广告-弹窗广告<li>功能类-鸣潮自动签到|\n|酷安|6|<li>开屏广告<li>分段广告-信息流广告<li>更新提示<li>权限提示-通知权限<li>局部广告-[大家还下载了]应用推荐<li>局部广告-信息流广告|\n|酷狗概念版|9|<li>开屏广告<li>全屏广告-VIP弹窗<li>分段广告-我的页面-右侧悬浮反馈图标<li>更新提示<li>全屏广告-弹窗广告<li>功能类-播放页听歌领VIP<li>评价提示<li>分段广告-评论区广告<li>局部广告|\n|酷狗音乐|8|<li>开屏广告<li>局部广告-卡片广告<li>全屏广告-VIP弹窗<li>全屏广告-[看广告免费听歌]弹窗<li>全屏广告-[开启音乐DJ]弹窗<li>局部广告-悬浮广告<li>全屏广告-签到弹窗<li>功能类-自动关闭速听模式|\n|酷我音乐|1|<li>全屏广告-酷我会员日弹窗|\n|夸克浏览器|4|<li>其他-设置默认浏览器提示<li>更新提示<li>全屏广告-弹窗广告<li>局部广告|\n|快看漫画|1|<li>局部广告-漫画界面底部弹窗广告|\n|快科技|1|<li>开屏广告|\n|快连 VPN|1|<li>通知提示-各种提示弹窗|\n|快手|6|<li>全屏广告-首页红包弹窗<li>局部广告-首页左侧红包悬浮控件<li>功能类-推荐关注<li>评价提示<li>全屏广告-直播间广告<li>分段广告-信息流广告|\n|快手极速版|6|<li>开屏广告<li>全屏广告-朋友推荐弹窗<li>全屏广告-红包弹窗<li>局部广告-悬浮广告<li>分段广告-悬浮广告<li>评价提示|\n|快牙|1|<li>局部广告-卡片广告|\n|岚图汽车|1|<li>功能类-自动签到|\n|蓝岛|1|<li>通知提示-通知弹窗|\n|懒懒视频|1|<li>全屏广告-弹窗广告|\n|懒人听书|2|<li>局部广告-悬浮广告<li>更新提示|\n|乐橙|1|<li>开屏广告|\n|乐看视频|1|<li>全屏广告-弹窗广告|\n|乐校通|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|雷神加速器|3|<li>开屏广告<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|联合早报|2|<li>开屏广告<li>局部广告-信息流广告|\n|联通视频彩铃|1|<li>全屏广告-弹窗广告|\n|联通云盘|1|<li>更新提示|\n|联想浏览器HD|2|<li>更新提示<li>权限提示-通知权限|\n|联想应用中心|2|<li>更新提示<li>权限提示-通知权限|\n|两步路户外助手|3|<li>更新提示<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|邻里邦|1|<li>功能类-自动签到|\n|聆听音乐|1|<li>全屏广告-弹窗广告|\n|六只脚|2|<li>全屏广告-弹窗广告<li>局部广告-信息流广告|\n|录音机|1|<li>更新提示|\n|绿洲|1|<li>分段广告-首页推荐广告|\n|麻雀省钱|1|<li>全屏广告-首页活动弹窗|\n|码上行|1|<li>全屏广告-弹窗广告|\n|蚂蚁加速器|1|<li>通知提示-公告弹窗|\n|买单吧|2|<li>评价提示-好评弹窗<li>通知提示-网络代理提示弹窗|\n|麦当劳|4|<li>权限提示-通知权限<li>全屏广告-弹窗广告<li>功能类-关闭[开通免密支付]弹窗<li>权限提示-设备信息权限|\n|慢慢买|2|<li>开屏广告<li>功能类-从剪贴板查历史价-拒绝|\n|漫画人极速版|1|<li>全屏广告-弹窗广告|\n|漫天星|1|<li>全屏广告-弹窗广告|\n|芒果TV|4|<li>分段广告-首页推荐广告<li>全屏广告-弹窗广告<li>局部广告-右侧悬浮广告<li>全屏广告-视频播放时的广告|\n|猫眼|1|<li>权限提示-开启通知弹窗|\n|每日赛车|1|<li>分段广告-新闻页面摇一摇广告|\n|每日英语听力|1|<li>全屏广告-优惠券弹窗|\n|每日瑜伽|2|<li>全屏广告<li>局部广告-悬浮广告|\n|美图秀秀|3|<li>更新提示<li>全屏广告-VIP弹窗<li>局部广告-卡片广告|\n|美团|10|<li>更新提示<li>全屏广告-弹窗广告<li>评价提示-订单调查弹窗<li>局部广告-悬浮广告<li>权限提示-定位权限<li>权限提示-通知权限<li>全屏广告-新人返场特惠<li>全屏广告-视频页弹窗广告<li>功能类-付款后自动点击完成<li>局部广告-直播讲解悬浮窗|\n|美团外卖|3|<li>更新提示<li>全屏广告-弹窗广告<li>局部广告-直播悬浮窗|\n|美团众包|2|<li>全屏广告-弹窗广告<li>其他-[保级成功]弹窗|\n|美柚|1|<li>局部广告-评论区上方卡片广告|\n|美之图|1|<li>其他-提示[切换高清]时点击[取消]|\n|萌妹|1|<li>全屏广告-弹窗广告|\n|咪咕快游|1|<li>更新提示|\n|咪咕视频|4|<li>局部广告-右下角小广告<li>更新提示<li>权限提示-通知权限<li>全屏广告-弹窗广告|\n|咪咕音乐|1|<li>更新提示|\n|米家|2|<li>局部广告-卡片广告<li>更新提示-设备固件升级提示弹窗|\n|米游社|5|<li>功能类-自动打卡<li>全屏广告-游戏版本活动<li>分段广告-游戏版本活动<li>功能类-米游自动签到全家桶<li>权限提示-通知权限|\n|蜜雪冰城|1|<li>全屏广告-主界面弹窗广告|\n|蜜雪冰城鸿蒙版|1|<li>全屏广告-首页弹窗广告|\n|蜜源|2|<li>更新提示-版本升级弹窗<li>全屏广告-首页弹窗广告|\n|喵次元|1|<li>更新提示|\n|喵趣漫画|3|<li>更新提示<li>全屏广告-弹窗广告<li>功能类-漫画页链接断开提示|\n|喵物次元|1|<li>全屏广告-弹窗广告|\n|摩点|1|<li>局部广告-[我的]界面广告条|\n|摩托范|4|<li>全屏广告-弹窗广告<li>分段广告-信息流广告<li>全屏广告-文章内容页面弹窗广告<li>局部广告-卡片广告|\n|魔音MORIN|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|暮瑟|3|<li>局部广告-交友页面底部广告<li>全屏广告-漂流瓶页面提示弹窗<li>权限提示-定位权限|\n|南方航空|2|<li>全屏广告-弹窗广告<li>功能类-长辈版弹窗|\n|南网在线|3|<li>更新提示<li>全屏广告-首页弹窗广告<li>通知提示-公告弹窗|\n|柠檬解析|1|<li>全屏广告-弹窗广告|\n|柠檬听书|2|<li>通知提示-温馨提示弹窗<li>全屏广告|\n|牛牛视频|1|<li>全屏广告-弹窗广告|\n|欧乐影院|1|<li>开屏广告|\n|胖乖生活|3|<li>更新提示<li>功能类-开启[自动抵扣]开关<li>全屏广告-弹窗广告|\n|澎湃新闻|1|<li>全屏广告-弹窗广告|\n|皮皮搞笑|2|<li>开屏广告<li>分段广告-信息流广告|\n|皮皮喵|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|皮皮虾|8|<li>青少年模式<li>权限提示-通知权限<li>局部广告-右上角红包悬浮窗<li>更新提示<li>评价提示<li>全屏广告-集五福弹窗<li>局部广告-卡片广告<li>分段广告-信息流广告|\n|拼多多|13|<li>更新提示<li>全屏广告-弹窗广告<li>局部广告-悬浮广告<li>局部广告-商品详情页视频讲解窗口<li>功能类-多多视频每日自动签到<li>全屏广告-多多视频划到广告自动跳过<li>功能类-发送图片时自动勾选原图<li>全屏广告-下单后出现的弹窗<li>青少年模式<li>权限提示-通知权限<li>全屏广告-[个性化推荐]弹窗<li>其他-登录提现页面点击[跳过]<li>功能类-关闭截图后的弹窗|\n|浦大喜奔|3|<li>通知提示-代理提示弹窗<li>全屏广告-首页弹窗广告<li>局部广告-悬浮广告|\n|浦发银行|1|<li>权限提示-通知权限|\n|七猫免费小说|7|<li>分段广告-阅读页面广告<li>全屏广告-阅读结束后显示的广告<li>全屏广告-签到弹窗<li>局部广告-右侧悬浮红包<li>全屏广告-字节视频广告<li>局部广告-卡片广告<li>全屏广告-今日专属推荐弹窗|\n|七鲜|1|<li>全屏广告|\n|奇妙应用|4|<li>局部广告-卡片广告<li>通知提示-公告弹窗<li>更新提示<li>局部广告-首页横幅广告|\n|企查查|1|<li>全屏广告-VIP弹窗|\n|企业微信|3|<li>功能类-自动领红包<li>分段广告-顶部卡片广告<li>权限提示-悬浮窗|\n|起点读书|12|<li>开屏广告<li>更新提示<li>青少年模式<li>全屏广告<li>权限提示-通知权限<li>局部广告-悬浮广告<li>功能类-起点中文网登录自动确认<li>局部广告-信息流广告<li>功能类-福利中心看完广告-知道了<li>全屏广告-红包弹窗<li>功能类-移动网络下自动点击播放视频<li>功能类-自动签到|\n|汽车之家|2|<li>全屏广告-弹窗广告<li>局部广告|\n|汽水音乐|8|<li>开屏广告<li>更新提示<li>全屏广告-VIP弹窗<li>功能类-全自动看广告获取听歌时长<li>功能类-关闭广告的声音<li>评价提示-评分弹窗<li>局部广告-悬浮窗广告<li>其他-关闭[更多直播]推荐|\n|前程无忧51Job|1|<li>全屏广告-弹窗广告|\n|钱包|1|<li>全屏广告-弹窗广告|\n|钱包|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|钱包|1|<li>权限提示-通知权限|\n|亲宝宝|3|<li>全屏广告-弹窗广告<li>局部广告-横幅广告<li>更新提示|\n|亲邻开门|3|<li>局部广告-首页顶部广告<li>全屏广告-弹窗广告<li>通知提示-开门成功提示|\n|青创网|1|<li>更新提示|\n|青岛公交查询|1|<li>全屏广告-弹窗广告|\n|青藤之恋|1|<li>评价提示-好评弹窗|\n|轻松阅|1|<li>全屏广告-弹窗广告|\n|蜻蜓点金|1|<li>权限提示-通知权限|\n|蜻蜓FM|1|<li>局部广告-播放界面的广告|\n|曲奇云盘|1|<li>全屏广告-私人云看图弹窗广告|\n|去哪儿旅行|2|<li>开屏广告<li>更新提示|\n|趣智校园|2|<li>全屏广告-弹窗广告<li>局部广告-横幅广告|\n|全民泡泡超人|1|<li>开屏广告|\n|全民K歌|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|全能计算器|1|<li>全屏广告-弹窗广告|\n|全球购骑士特权|1|<li>全屏广告-弹窗广告|\n|全球上网|1|<li>全屏广告-弹窗广告|\n|全球网测|1|<li>权限提示-定位权限|\n|全知识|2|<li>权限提示-通知权限<li>局部广告-左下角参与答题卡片|\n|权限管理服务|2|<li>功能类-权限授予弹窗<li>权限提示-通知权限|\n|权限控制器|1|<li>权限提示-定位权限|\n|热剧猫|1|<li>全屏广告-弹窗广告|\n|人民日报|1|<li>全屏广告-弹窗广告|\n|人民日报|1|<li>局部广告-卡片广告|\n|人民日报海外版|1|<li>局部广告-悬浮广告|\n|人人视频|1|<li>开屏广告|\n|人卫|1|<li>全屏广告-抽奖弹窗|\n|荣耀快服务|1|<li>局部广告-悬浮广告|\n|荣耀亲选|2|<li>全屏广告-首页弹窗广告<li>权限提示-通知权限|\n|荣耀商城|2|<li>全屏广告-应用内弹窗广告<li>权限提示-通知权限|\n|荣耀天气|2|<li>局部广告-底部卡片广告<li>分段广告-卡片广告|\n|荣耀音乐|2|<li>分段广告-推荐页卡片广告<li>全屏广告-弹窗广告|\n|荣耀应用市场|5|<li>开屏广告<li>全屏广告-弹窗广告<li>局部广告-悬浮窗小广告<li>权限提示-通知权限<li>通知提示-个性化内容推荐提示|\n|荣耀运动健康|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|荣耀智慧空间|3|<li>局部广告-首页顶部广告<li>其他-推荐服务声明<li>更新提示|\n|软件包安装程序|4|<li>功能类-自动安装应用<li>功能类-授权本次安装<li>功能类-自动继续安装高危风险应用<li>功能类-勾选[已了解此应用未经检测，可能存在风险]|\n|软件包安装程序|2|<li>功能类-自动安装/更新软件<li>功能类-安全警告弹窗|\n|软件包安装程序|1|<li>功能类-跳过安全使用协议|\n|瑞幸咖啡|3|<li>更新提示<li>全屏广告-超值换购弹窗<li>全屏广告-优惠卷领取提示|\n|三星商城|1|<li>开屏广告|\n|三星生活助手|1|<li>全屏广告-弹窗广告|\n|三星阅读|1|<li>开屏广告|\n|扫描全能王|3|<li>局部广告-主页面上方广告<li>全屏广告-开通会员<li>其他-关闭[发现新截图]提示|\n|鲨鱼记账|2|<li>局部广告-悬浮广告<li>全屏广告-弹窗广告|\n|山姆会员商店|3|<li>开屏广告<li>权限提示-定位权限<li>局部广告-关闭「您有一张亲友卡待赠送」通知条|\n|闪动校园|1|<li>全屏广告|\n|上海公交|2|<li>局部广告-卡片广告<li>功能类-退出软件时的确认弹窗|\n|上汽大众|3|<li>全屏广告-弹窗广告<li>局部广告-悬浮广告<li>局部广告-卡片广告|\n|少年梦阅读|1|<li>开屏广告|\n|设备信息|1|<li>分段广告-卡片广告|\n|深(新)度搜索|1|<li>全屏广告-弹窗广告|\n|什么值得买|4|<li>全屏广告-弹窗广告<li>更新提示<li>权限提示-请求读取剪贴板权限弹窗<li>权限提示-通知权限|\n|生活服务|3|<li>开屏广告<li>权限提示-通知权限<li>权限提示-信息共享权限|\n|十六番旅行|2|<li>分段广告-卡片广告<li>权限提示-通知权限|\n|石墨文档|1|<li>局部广告-首页顶部横幅广告|\n|识货|3|<li>权限提示-通知权限<li>全屏广告-弹窗广告<li>更新提示|\n|实用大师|1|<li>全屏广告-弹窗广告|\n|实用工具箱|1|<li>全屏广告-弹窗广告|\n|视趣|1|<li>全屏广告-弹窗广告|\n|手机电视高清直播|3|<li>全屏广告-弹窗广告<li>局部广告-浮窗广告<li>全屏广告-播放页面弹窗广告|\n|手机天猫|3|<li>更新提示<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|手机知网|1|<li>更新提示|\n|书法字典大全|1|<li>分段广告-信息流广告|\n|书旗小说|2|<li>局部广告<li>全屏广告|\n|数独|1|<li>局部广告|\n|数字人民币|1|<li>更新提示|\n|水果派|1|<li>开屏广告|\n|水果派|1|<li>开屏广告|\n|水果派|1|<li>开屏广告|\n|顺丰速运|3|<li>更新提示<li>其他-专属月报弹窗<li>全屏广告-弹窗广告|\n|顺易充|1|<li>全屏广告-首页弹窗广告|\n|四川航空|1|<li>更新提示|\n|搜狗浏览器极速版|1|<li>分段广告-小说页面广告|\n|搜狗输入法|1|<li>开屏广告|\n|搜狐视频|1|<li>更新提示|\n|搜索|1|<li>局部广告-卡片广告|\n|搜图神器|1|<li>更新提示|\n|苏打校园|1|<li>全屏广告-弹窗广告|\n|素博影院|2|<li>全屏广告-注册邀请码弹窗<li>全屏广告-弹窗广告|\n|速搜视频|1|<li>全屏广告-弹窗广告|\n|速映影院|3|<li>全屏广告-首页弹窗广告<li>局部广告-\"我的\"页面卡片广告<li>局部广告-卡片广告|\n|随便扫|1|<li>局部广告-顶部卡片广告|\n|随身行|1|<li>权限提示-通知权限|\n|钛马星|2|<li>全屏广告-每日弹窗广告<li>分段广告-设备界面顶部广告|\n|泰剧兔|1|<li>全屏广告-弹窗广告|\n|探探|2|<li>更新提示<li>权限提示-通知权限|\n|糖豆|4|<li>更新提示<li>全屏广告-视频播放前的广告<li>全屏广告-弹窗广告<li>局部广告-信息流广告|\n|糖心Vlog|2|<li>全屏广告-弹窗广告<li>全屏广告-公告弹窗|\n|淘宝|15|<li>开屏广告<li>全屏广告-弹窗广告<li>局部广告-消息页面热门活动卡片<li>局部广告-悬浮广告<li>权限提示-通知权限<li>功能类-各级页面添加到首页弹窗<li>更新提示<li>功能类-关闭小额免密支付<li>功能类-将小组件添加到手机桌面<li>权限提示-悬浮窗权限<li>全屏广告-花呗推荐弹窗<li>局部广告-商品详情页直播悬浮窗<li>功能类-登录授权<li>全屏广告-支付后的推荐弹窗<li>局部广告-搜索页广告|\n|淘宝Lite|2|<li>局部广告-关闭顶部[打开淘宝]横幅<li>其他-关闭切换站点提示|\n|淘特|1|<li>更新提示-版本升级弹窗|\n|特狗APP|2|<li>通知提示-公告弹窗<li>全屏广告-弹窗广告|\n|腾讯动漫|2|<li>局部广告-漫画阅读页面-左侧悬浮广告<li>局部广告-信息流广告|\n|腾讯会议|4|<li>更新提示<li>评价提示-通话质量评价<li>局部广告-卡片广告<li>全屏广告|\n|腾讯视频|9|<li>开屏广告<li>更新提示<li>分段广告-卡片广告<li>全屏广告-视频播放时的广告<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>局部广告-卡片广告<li>局部广告-悬浮广告<li>其他-视频播放时的评价悬浮窗|\n|腾讯手游加速器|2|<li>局部广告-悬浮广告<li>局部广告-信息流内嵌广告|\n|腾讯体育|1|<li>开屏广告|\n|腾讯微云|1|<li>开屏广告|\n|腾讯文档|4|<li>开屏广告<li>更新提示<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|腾讯新闻|3|<li>分段广告-信息流广告<li>全屏广告-广告、活动弹窗<li>权限提示-通知权限|\n|天府通|1|<li>全屏广告-弹窗广告|\n|天猫精灵|2|<li>更新提示<li>全屏广告-超级会员弹窗|\n|天猫校园|4|<li>全屏广告<li>局部广告-卡片广告<li>功能类-打开应用自动点击扫一扫<li>权限提示-通知权限|\n|天气|1|<li>分段广告-卡片广告|\n|天天基金|5|<li>局部广告-自选页面广告<li>其他-自选页面缩写提示信息<li>更新提示<li>全屏广告-弹窗广告<li>评价提示-好评弹窗|\n|天天视频|1|<li>全屏广告-弹窗广告|\n|天天跳绳|2|<li>全屏广告-会员提示<li>分段广告-浮窗广告|\n|天翼生活|1|<li>更新提示|\n|天翼云盘|2|<li>全屏广告-首页弹窗广告<li>更新提示|\n|甜糖|1|<li>更新提示|\n|贴吧极速版|1|<li>分段广告-首页信息流广告|\n|贴吧一键签到大师|1|<li>全屏广告-内部弹窗广告|\n|铁路12306|1|<li>开屏广告|\n|铁路12306|2|<li>权限提示-定位权限<li>通知提示-关闭底部公告横幅|\n|铁塔换电|1|<li>全屏广告-弹窗广告|\n|通通锁|1|<li>全屏广告-弹窗广告|\n|通讯录与拨号|2|<li>全屏广告-弹窗广告<li>更新提示|\n|同程旅行|2|<li>全屏广告-弹窗广告<li>评价提示|\n|同花顺|3|<li>开屏广告<li>分段广告-信息流广告<li>局部广告-底部产品广告|\n|图凌|2|<li>开屏广告<li>全屏广告-会员回馈弹窗|\n|图图影视|1|<li>全屏广告-弹窗广告|\n|途虎养车|2|<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|推栏|1|<li>开屏广告|\n|挖财记账|2|<li>更新提示<li>全屏广告-弹窗广告|\n|歪麦霸王餐|2|<li>全屏广告-弹窗广告<li>局部广告|\n|外星人加速器|1|<li>局部广告-卡片广告|\n|完美世界电竞|2|<li>开屏广告<li>权限提示-通知权限|\n|完美校园|2|<li>更新提示<li>其他-密码过期提示弹窗|\n|万能小组件 Top Widgets|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|万能遥控|2|<li>权限提示-定位权限<li>局部广告|\n|万能钥匙|1|<li>分段广告-首页卡片广告|\n|万年历|1|<li>局部广告-悬浮广告|\n|网上国网|2|<li>分段广告-首页弹窗广告<li>更新提示|\n|网速管家极速版|2|<li>更新提示<li>全屏广告-新人专享优惠弹窗|\n|网心云|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|网易大神|3|<li>更新提示<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|网易将军令|1|<li>其他-一键迁移至新版将军令|\n|网易新闻|2|<li>权限提示-通知权限<li>分段广告-首页信息流广告|\n|网易严选|1|<li>全屏广告-首页弹窗广告|\n|网易邮箱|2|<li>开屏广告<li>局部广告-邮件列表页面广告条目|\n|网易邮箱大师|3|<li>开屏广告<li>全屏广告-邮件列表广告<li>其他-获得成就弹窗|\n|网易有道词典|9|<li>分段广告-单词页面卡片广告<li>全屏广告-弹窗广告<li>全屏广告-VIP弹窗<li>评价提示<li>更新提示<li>功能类-点击显示释义<li>局部广告-卡片广告<li>功能类-关闭单词页面[去复习]提示<li>全屏广告-开学福利弹窗|\n|网易云音乐|8|<li>开屏广告<li>分段广告-卡片广告<li>局部广告-卡片广告<li>全屏广告-弹窗广告<li>全屏广告-VIP弹窗<li>更新提示<li>功能类-扫码后自动点击[授权登录]<li>分段广告-搜索页广告|\n|微博|13|<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>权限提示-定位权限<li>分段广告-信息流广告<li>评价提示-APP评分弹窗<li>功能类-自动点击查看原图<li>功能类-超话自动签到<li>功能类-超话一键签到<li>其他-关闭猪手提示<li>功能类-关闭点赞时的验证<li>功能类-关主页自动切换到[关注的人]TAB<li>分段广告-评论区博主内容推荐<li>分段广告-评论区荐读|\n|微博极速版|2|<li>分段广告-信息流广告<li>评价提示-APP评分弹窗|\n|微博轻享版|2|<li>开屏广告<li>分段广告-信息流广告|\n|微店|1|<li>全屏广告-首页红包弹窗|\n|微拾|2|<li>分段广告-我的页面卡片广告<li>全屏广告-弹窗广告|\n|微信|31|<li>分段广告-朋友圈广告<li>功能类-电脑微信快捷自动登录<li>功能类-自动授权登录<li>功能类-微信读书网页版扫码登录自动授权<li>功能类-自动领取微信红包<li>功能类-自动选中发送原图<li>功能类-自动查看原图<li>开屏广告-微信小程序<li>功能类-网页版文件传输助手扫码自动授权<li>青少年模式<li>功能类-青少年模式自动点击验证密码<li>功能类-订阅号-展开更早的消息<li>功能类-开启青少年模式后的每日验证<li>局部广告-订阅号消息-推荐文章<li>功能类-付款后自动点击完成/返回商家<li>分段广告-订阅号消息-视频推荐<li>功能类-解锁 Windows 微信<li>全屏广告-文档页面-腾讯文档APP弹窗<li>分段广告-订阅号消息-推荐阅读<li>权限提示-权限申请弹窗<li>功能类-付款时自动点击[支付]<li>分段广告-公众号文章内广告<li>功能类-自动点击[查看原视频]<li>全屏广告-小程序弹窗广告<li>功能类-自动语音转文字<li>功能类-语音/视频通话呼入10秒后自动点击接听<li>功能类-点击语音条菜单里的转文字<li>功能类-自动接龙<li>功能类-自动点击未读消息（头像右上角为数字）<li>功能类-自动点击未读消息（头像右上角为红点）<li>功能类-自动允许打开外部应用|\n|微信读书|1|<li>权限提示-通知权限|\n|微众银行|1|<li>全屏广告|\n|维护大师|1|<li>开屏广告|\n|文件|3|<li>功能类-允许第三方应用访问文件夹<li>功能类-使用此文件夹<li>功能类-自动选择排序方式[修改日期（从新到旧）]|\n|文心一言|1|<li>更新提示|\n|问小白|1|<li>全屏广告|\n|问真八字排盘|1|<li>全屏广告|\n|我爱卡|2|<li>权限提示-定位权限<li>权限提示-请求位置、存储权限|\n|我的荣耀|2|<li>全屏广告-弹窗广告<li>权限提示-定位权限|\n|我的听书|3|<li>局部广告-卡片广告<li>全屏广告-弹窗广告<li>分段广告-播放页卡片广告|\n|无界趣连|1|<li>更新提示|\n|无线魔盒|1|<li>更新提示|\n|无忧行|3|<li>全屏广告-弹窗广告<li>权限提示-定位权限<li>权限提示-权限申请弹窗|\n|五寸方|1|<li>全屏广告-弹窗广告|\n|西瓜视频|3|<li>更新提示<li>权限提示-通知权限<li>全屏广告-红包弹窗|\n|希望谷|1|<li>全屏广告|\n|息壤阅读|1|<li>局部广告-悬浮广告|\n|稀饭动漫|1|<li>全屏广告-弹窗广告|\n|稀土掘金|1|<li>更新提示|\n|喜马拉雅|7|<li>局部广告-播放页广告<li>分段广告-信息流广告<li>青少年模式<li>全屏广告-首页-专辑订阅推荐弹窗<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>全屏广告-免流提示|\n|喜马拉雅极速版|4|<li>全屏广告-弹窗广告<li>全屏广告-小说推荐弹窗<li>全屏广告-支付宝提现弹窗广告<li>权限提示-通知权限|\n|系统服务组件|1|<li>全屏广告-游戏加速弹窗广告|\n|系统更新|3|<li>功能类-不开启自动更新<li>功能类-流量更新点击继续下载<li>功能类-不开启流量自动更新|\n|系统界面|3|<li>功能类-自动允许网易云音乐共享整个屏幕<li>功能类-自动允许白描共享整个屏幕<li>功能类-自动允许QQ音乐共享整个屏幕|\n|下厨房|3|<li>开屏广告<li>局部广告-卡片广告<li>其他-厨房问卷|\n|下载工具箱|3|<li>通知提示-公告弹窗<li>功能类-自动识别解析链接<li>全屏广告-开通会员弹窗|\n|下载管理|1|<li>更新提示|\n|先锋鸟|2|<li>功能类-今日任务自动点击签到<li>功能类-个人页面自动点击签到|\n|闲鱼|6|<li>权限提示-通知权限<li>权限提示-手机信息权限<li>更新提示<li>全屏广告<li>功能类-自动点击[查看原图]<li>功能类-关闭小额免密支付|\n|相册|2|<li>更新提示<li>功能类-开启相册同步弹窗|\n|湘潭出行|1|<li>全屏广告-弹窗广告|\n|向日葵远程控制|6|<li>开屏广告<li>全屏广告-瓜子会员弹窗<li>更新提示-版本更新<li>分段广告-卡片广告<li>功能类-退出app提示<li>全屏广告-远程控制结束后的广告|\n|小爱视觉|1|<li>更新提示|\n|小爱音箱|2|<li>全屏广告-首页弹窗广告<li>权限提示-请求开启定位权限弹窗|\n|小白学习打印|2|<li>全屏广告-弹窗广告<li>更新提示|\n|小包搜题|1|<li>局部广告-卡片广告|\n|小步点|1|<li>全屏广告-弹窗广告|\n|小蚕霸王餐|2|<li>全屏广告-弹窗广告<li>功能类-签到成功弹窗|\n|小鹅通|1|<li>更新提示-版本更新弹窗|\n|小恩爱|2|<li>全屏广告<li>局部广告-信息流广告|\n|小飞机网盘|1|<li>分段广告|\n|小黑盒|3|<li>功能类-签到成功弹窗<li>局部广告-卡片广告<li>功能类-自动点击查看原图|\n|小红帽|1|<li>全屏广告-弹窗广告|\n|小红书|10|<li>开屏广告<li>权限提示-通知权限<li>更新提示<li>分段广告-信息流广告<li>全屏广告-优惠券弹窗<li>评价提示-评分弹窗<li>功能类-评论区-自动展开回复<li>局部广告-你可能感兴趣的人<li>局部广告-关闭首页信息流中推荐博主<li>局部广告-直播间各种卡片|\n|小卖部逆袭记|1|<li>局部广告-底部卡片广告|\n|小美智能|1|<li>更新提示|\n|小米耳机|1|<li>评价提示|\n|小米换机|1|<li>更新提示|\n|小米蓝牙扩展 (Bluetooth Extension)|1|<li>功能类-耳机配对弹窗（仅限澎湃os3）|\n|小米浏览器|4|<li>局部广告-关闭[个性推荐开启提示]<li>分段广告-主页信息流广告<li>局部广告-搜索结果页底部必应推荐卡片<li>分段广告-小说阅读页面广告|\n|小米日历|1|<li>分段广告-卡片广告|\n|小米商城|4|<li>全屏广告-弹窗广告<li>局部广告-悬浮广告<li>更新提示<li>评价提示-客服|\n|小米社区|4|<li>更新提示<li>局部广告-评论区卡片广告<li>全屏广告-签到弹窗<li>全屏广告-公告板弹窗|\n|小米视频|1|<li>分段广告-卡片广告|\n|小米相册|3|<li>功能类-删除时勾选[同时从云端删除]<li>功能类-流量同步自动点击[继续同步]<li>其他-图片保存成功弹窗|\n|小米移动|1|<li>评价提示|\n|小米音乐|8|<li>开屏广告<li>局部广告-悬浮广告<li>局部广告-横幅广告<li>全屏广告-弹窗广告<li>全屏广告-弹窗广告（部分误触）<li>功能类-看广告视频领VIP<li>局部广告-主界面卡片广告<li>分段广告-首页卡片广告|\n|小米应用商店|7|<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>功能类-忽略升级<li>权限提示-通知权限<li>局部广告-个性化推荐卡片<li>功能类-自动点击[查看全部升级]<li>功能类-移动数据更新弹窗点击继续|\n|小米游戏服务|1|<li>更新提示|\n|小米游戏中心|1|<li>局部广告-首页右侧悬浮广告|\n|小米有品|3|<li>全屏广告-弹窗广告<li>更新提示-版本升级弹窗<li>局部广告-主页贴片广告|\n|小米云服务|3|<li>全屏广告-弹窗广告<li>更新提示<li>权限提示-通知权限|\n|小米运动健康|6|<li>评价提示<li>权限提示-后台运行<li>全屏广告<li>更新提示<li>通知提示-公告栏<li>权限提示-麦克风|\n|小牛电动|2|<li>更新提示-固件更新弹窗<li>全屏广告-弹窗广告|\n|小牛加速器|1|<li>开屏广告|\n|小柿子|1|<li>全屏广告-弹窗广告|\n|小特|1|<li>开屏广告|\n|小天才|2|<li>更新提示<li>其他-手表安全守护弹窗|\n|小天才|2|<li>更新提示<li>权限提示-通知权限|\n|小小优趣|1|<li>全屏广告-弹窗广告|\n|小熊油耗|2|<li>全屏广告<li>更新提示|\n|小熊有好货|1|<li>全屏广告-弹窗广告|\n|小依|2|<li>开屏广告<li>全屏广告|\n|小蚁摄像机|3|<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>局部广告-卡片广告|\n|小猿口算|1|<li>评价提示|\n|小猿搜题|2|<li>评价提示<li>全屏广告-年卡广告|\n|小周便签|1|<li>开屏广告|\n|小组件盒子|2|<li>全屏广告-弹窗广告<li>全屏广告-会员限时优惠弹窗|\n|携程旅行|2|<li>更新提示<li>全屏广告-弹窗广告|\n|心动日常|2|<li>全屏广告-购买会员弹窗广告<li>局部广告-右下角悬浮窗小广告|\n|新大师兄影视|1|<li>全屏广告|\n|新小财神影视|2|<li>通知提示-公告弹窗<li>全屏广告-弹窗广告|\n|星空视频壁纸|1|<li>全屏广告-弹窗广告|\n|星星充电|2|<li>全屏广告-弹窗广告<li>功能类-签到提示|\n|星芽免费短剧|1|<li>局部广告-卡片广告|\n|星野|1|<li>更新提示|\n|星影视频|1|<li>其他-[您还未登录]弹窗|\n|星影视频|1|<li>全屏广告-弹窗广告|\n|星影视频|2|<li>全屏广告-弹窗广告<li>通知提示-公告弹窗|\n|醒图|1|<li>评价提示-好评反馈|\n|秀动|1|<li>全屏广告-弹窗广告|\n|学习强国|2|<li>更新提示<li>权限提示-通知权限|\n|学习通|4|<li>功能类-提示没有网络时点击[重试/确定]<li>功能类-提示非WIFI环境时点击[继续]，使用流量播放<li>权限提示-通知权限<li>功能类-电脑端登录自动确认|\n|学小易|2|<li>分段广告-首页-底部广告<li>更新提示|\n|雪球|3|<li>局部广告-信息流广告<li>局部广告-评论区广告<li>全屏广告|\n|雪球基金|1|<li>全屏广告-基金页面弹窗广告|\n|迅雷|6|<li>开屏广告<li>分段广告<li>全屏广告<li>更新提示<li>局部广告-卡片广告<li>权限提示-通知权限|\n|迅游手游加速器|1|<li>分段广告-卡片广告|\n|烟花动漫|1|<li>全屏广告-弹窗广告|\n|央视频|5|<li>开屏广告<li>局部广告-悬浮广告<li>全屏广告-弹窗广告<li>评价提示<li>全屏广告-底部关注弹窗|\n|央视体育|2|<li>全屏广告-弹窗广告<li>局部广告-视频暂停时的广告|\n|央视新闻|2|<li>局部广告-卡片广告<li>功能类-个性化推荐弹窗|\n|一刻相册|9|<li>开屏广告<li>更新提示-软件升级提醒<li>局部广告-悬浮窗广告<li>评价提示<li>全屏广告-会员弹窗<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>局部广告-照片页底部浮窗广告<li>局部广告-卡片广告|\n|一起来涂色|1|<li>分段广告-底部穿山甲广告|\n|一淘|2|<li>全屏广告-弹窗广告<li>权限提示-通知权限|\n|医考帮|1|<li>全屏广告-会员活动弹窗|\n|移动爱家|2|<li>全屏广告-弹窗广告<li>局部广告-卡片广告|\n|亿通行|1|<li>全屏广告-出站后摇一摇广告|\n|易捷加油|2|<li>全屏广告-弹窗广告<li>权限提示-定位权限|\n|易快报|1|<li>局部广告-首页横幅广告|\n|易视看|3|<li>局部广告-卡片广告<li>全屏广告-弹窗广告<li>分段广告-首页下方广告|\n|易校园|4|<li>功能类-打开应用后自动点击右上角扫一扫<li>功能类-用水自动点击开始<li>全屏广告<li>更新提示|\n|翼支付|5|<li>更新提示<li>全屏广告-弹窗广告<li>局部广告-悬浮窗小广告<li>全屏广告-年底积分活动弹窗<li>功能类-自动签到|\n|音乐|2|<li>更新提示<li>全屏广告-弹窗广告|\n|音乐|1|<li>局部广告-卡片广告|\n|应用包管理组件|7|<li>功能类-放弃开启安全守护<li>功能类-自动安装/更新应用<li>功能类-自动允许应用安装软件<li>功能类-安装来源不可信<li>功能类-关闭备案信息弹窗<li>功能类-无视风险继续安装<li>功能类-自动勾选[已了解此应用存在风险]|\n|应用宝|1|<li>功能类-关闭登录弹窗|\n|应用汇|1|<li>全屏广告-弹窗广告|\n|应用商店|3|<li>开屏广告<li>其他-[您是否年满 18 岁？]弹窗<li>全屏广告-[大家还下载了]弹窗|\n|应用中心|1|<li>功能类-流量模式点击[继续下载]|\n|萤石云视频|2|<li>分段广告-主页广告<li>全屏广告-弹窗广告|\n|影视|1|<li>更新提示|\n|影视仓|1|<li>局部广告-卡片广告|\n|影视大全|1|<li>局部广告-卡片广告|\n|影视工场|1|<li>全屏广告-弹窗广告|\n|永辉生活|1|<li>全屏广告-红包弹窗|\n|用药参考|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|优酷视频|4|<li>全屏广告-视频推荐弹窗<li>全屏广告-视频播放时的广告<li>局部广告-卡片广告<li>分段广告-首页卡片广告|\n|优衣库|2|<li>全屏广告-弹窗广告<li>更新提示|\n|悠洗|1|<li>全屏广告-弹窗广告|\n|邮储银行|3|<li>更新提示<li>全屏广告-首页弹窗广告<li>局部广告-首页-浮窗广告|\n|游民星空|3|<li>开屏广告<li>局部广告-卡片广告<li>功能类-签到成功弹窗|\n|有道翻译官|1|<li>局部广告-翻译界面-结果下方广告|\n|有道云笔记|1|<li>局部广告-卡片广告|\n|有鱼生活|1|<li>全屏广告-弹窗广告|\n|鱼泡网|2|<li>局部广告-卡片广告<li>局部广告-悬浮广告|\n|雨见|1|<li>更新提示|\n|语雀|2|<li>局部广告-\"用语雀公众号\"横幅提示<li>功能类-自动原图|\n|元道经纬相机|1|<li>开屏广告|\n|远程协助|1|<li>功能类-自动同意远程协助请求|\n|悦通行|1|<li>功能类-扫码确认解锁|\n|阅读|3|<li>全屏广告-首页弹窗广告<li>局部广告-首页浮窗广告<li>局部广告-今日推荐|\n|越牛新闻|1|<li>开屏广告|\n|云·绝区零|1|<li>功能类-自动点击[使用流量进行游戏]|\n|云·星穹铁道|1|<li>功能类-自动点击[使用流量进行游戏]|\n|云·原神|1|<li>功能类-自动点击[使用流量进行游戏]|\n|云班课|1|<li>全屏广告-首页班课列表广告|\n|云服务|1|<li>更新提示|\n|云空间|1|<li>全屏广告-[升级云空间]弹窗|\n|云闪付|6|<li>分段广告-支付完成界面卡片广告<li>局部广告-右侧悬浮广告<li>权限提示-定位权限<li>权限提示-通知权限<li>全屏广告-天天签到-获得新勋章提示<li>全屏广告-领取优惠弹窗|\n|云视通|2|<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|云听|1|<li>全屏广告-首页弹窗广告|\n|云蚁物联|3|<li>全屏广告<li>局部广告<li>权限提示-通知权限|\n|云运动|1|<li>分段广告-首页卡片广告|\n|运动世界|6|<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>分段广告-卡片广告<li>通知提示-公告<li>权限提示-不开启可选权限<li>权限提示-定位权限|\n|湛庐阅读|1|<li>更新提示|\n|章鱼记账|1|<li>全屏广告|\n|涨乐财富通|3|<li>全屏广告-首页弹窗广告<li>更新提示<li>局部广告-右侧悬浮广告|\n|掌上穿越火线|2|<li>全屏广告-首页活动弹窗<li>更新提示|\n|掌上道聚城|3|<li>开屏广告<li>全屏广告-弹窗广告<li>功能类-\"签到成功\"弹窗|\n|掌上公交|5|<li>分段广告-卡片广告<li>全屏广告-弹窗广告<li>局部广告-顶栏小广告<li>权限提示-通知权限<li>功能类-签到成功弹窗|\n|掌上生活|5|<li>更新提示<li>全屏广告-首页弹窗广告<li>局部广告-右侧悬浮广告<li>权限提示-通知权限<li>权限提示-定位权限|\n|掌上英雄联盟|3|<li>开屏广告<li>更新提示<li>全屏广告-弹窗广告|\n|掌通家园|3|<li>更新提示<li>分段广告-信息流、文章底部广告<li>全屏广告|\n|掌医课堂|2|<li>开屏广告<li>功能类-退出确认弹窗|\n|掌阅|2|<li>开屏广告<li>更新提示|\n|招商银行|3|<li>局部广告-首页活动悬浮广告<li>全屏广告-弹窗广告<li>权限提示-定位权限|\n|找靓机|2|<li>全屏广告-超级补贴日弹窗<li>局部广告-卡片广告|\n|浙里办|1|<li>更新提示|\n|浙商银行|1|<li>全屏广告|\n|真不卡|4|<li>通知提示-温馨提示弹窗<li>分段广告-看视频领奖励广告<li>局部广告-卡片广告<li>全屏广告-弹窗广告|\n|正气|1|<li>全屏广告-弹窗广告|\n|支付宝|25|<li>全屏广告-关闭花呗升级弹窗<li>权限提示-定位权限<li>权限提示-通知权限<li>更新提示-版本更新弹窗<li>全屏广告-小组件弹窗<li>全屏广告-借呗消费信贷协议<li>功能类-支付后自动点击完成<li>全屏广告-弹窗广告<li>全屏广告-支付后的推荐弹窗<li>分段广告-扫码乘车后出现的广告<li>全屏广告-关闭免密支付广告<li>分段广告-服务消息页面卡片广告<li>局部广告-卡片广告<li>其他-蚂蚁理财社区-[加入同路人]弹窗<li>全屏广告-[银行卡还款服务升级]弹窗<li>开屏广告-小程序开屏广告<li>功能类-自动授权登录<li>局部广告-直播悬浮窗<li>功能类-余额宝转出自动勾选[短期不再提示]<li>功能类-自动领取会员积分<li>功能类-无法访问时点击[返回]<li>其他-滑动验证时返回<li>其他-开通刷脸支付弹窗<li>功能类-确认清理已选中的缓存<li>青少年模式|\n|芝麻粒|1|<li>通知提示-开屏[提示]弹窗|\n|芝麻粒|1|<li>通知提示-提示弹窗|\n|芝士漫画|1|<li>全屏广告-弹窗广告|\n|知到|4|<li>权限提示-通知权限<li>更新提示<li>通知提示-课程提醒<li>通知提示-AI分析|\n|知乎|11|<li>开屏广告<li>分段广告-信息流广告<li>权限提示-通知权限<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>局部广告-信息流广告<li>局部广告-悬浮广告<li>更新提示<li>功能类-热榜页自动点击[展开更多]<li>功能类-自动展开回答<li>评价提示-评论区氛围评价卡片|\n|知乎极速版|1|<li>局部广告-底部悬浮卡片|\n|知天气|1|<li>开屏广告|\n|知网文化|1|<li>更新提示|\n|直播吧|3|<li>分段广告-信息流广告<li>更新提示<li>权限提示-通知权限|\n|志愿汇|4|<li>全屏广告-弹窗广告<li>更新提示<li>通知提示-志愿者保险提示弹窗<li>局部广告-浮标广告|\n|智慧北航|1|<li>功能类-扫码后自动确认登录|\n|智慧人社|1|<li>开屏广告|\n|智慧树|2|<li>全屏广告<li>局部广告|\n|智慧树家长端|2|<li>局部广告-信息流广告<li>全屏广告-弹窗广告|\n|智慧搜索|2|<li>分段广告-下拉搜索横幅广告<li>局部广告-搜索框下广告|\n|智慧笑联|2|<li>更新提示<li>全屏广告-关注公众号弹窗|\n|智能服务|1|<li>分段广告-为什么不希望看到这条推广|\n|智谱|2|<li>开屏广告<li>全屏广告-今日要闻弹窗|\n|智校乐|1|<li>开屏广告|\n|智行火车票|1|<li>开屏广告|\n|中关村在线|1|<li>局部广告-首页悬浮广告|\n|中国电信|9|<li>开屏广告<li>功能类-软件更新/安装后的用户引导<li>更新提示<li>全屏广告-浮窗广告<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>功能类-右下角客服悬浮窗<li>局部广告-悬浮广告<li>功能类-英文版未登录时自动一键登录|\n|中国工商银行|4|<li>全屏广告-弹窗广告<li>评价提示<li>局部广告-右下角浮标广告<li>功能类-未登录时自动点击登录|\n|中国广电|1|<li>更新提示|\n|中国建设银行|3|<li>开屏广告<li>全屏广告-弹窗广告<li>通知提示-VPN风险弹窗|\n|中国军号|2|<li>开屏广告<li>局部广告-右侧悬浮窗|\n|中国联通|4|<li>权限提示<li>更新提示<li>全屏广告-弹窗广告<li>局部广告-首页右下角卡片悬浮窗|\n|中国农业银行|4|<li>开屏广告<li>更新提示<li>权限提示-定位权限<li>权限提示-通知权限|\n|中国人保|1|<li>更新提示|\n|中国移动|9|<li>开屏广告<li>更新提示<li>全屏广告-首页弹窗广告<li>权限提示-通知权限<li>权限提示-请求获取剪贴板权限弹窗<li>局部广告-右侧悬浮小图标<li>评价提示-请求好评弹窗<li>权限提示-通讯录权限申请弹窗<li>权限提示-定位权限|\n|中国移动河南|2|<li>全屏广告-弹窗广告<li>局部广告-右侧悬浮广告|\n|中国移动江苏|1|<li>权限提示-通知权限|\n|中国移动云盘|5|<li>更新提示<li>全屏广告-弹窗广告<li>局部广告-悬浮广告<li>全屏广告-请求开启自动备份弹窗<li>权限提示-通知权限|\n|中国银行|1|<li>全屏广告-弹窗广告|\n|中国邮政|1|<li>全屏广告-首页弹窗|\n|中信银行|4|<li>更新提示<li>全屏广告-弹窗广告<li>权限提示-通知权限<li>局部广告-理财产品悬浮广告|\n|中羽在线|1|<li>全屏广告-弹窗广告|\n|主题|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|主题壁纸|3|<li>分段广告-信息流广告<li>全屏广告-弹窗广告<li>局部广告-右下角悬浮窗广告|\n|主题商店|1|<li>全屏广告-弹窗广告|\n|转转|3|<li>更新提示<li>全屏广告-弹窗广告<li>评价提示|\n|追剧达人|1|<li>全屏广告-弹窗广告|\n|追剧达人|1|<li>通知提示-公告弹窗|\n|追剧喵|2|<li>更新提示<li>全屏广告|\n|追漫大全|1|<li>全屏广告-弹窗广告|\n|淄博出行|1|<li>全屏广告-弹窗广告|\n|子腾园|1|<li>全屏广告-弹窗广告|\n|自动点击器|2|<li>分段广告-卡片广告<li>更新提示|\n|自考笔果题库|3|<li>更新提示<li>全屏广告-首页弹窗广告<li>权限提示-定位权限|\n|自如|2|<li>全屏广告-弹窗广告<li>全屏广告-推荐好友弹窗|\n|最右|4|<li>开屏广告<li>更新提示<li>分段广告-评论区卡片广告<li>权限提示-通知权限|\n|最准天气|1|<li>局部广告-卡片广告|\n|作业帮|1|<li>全屏广告-弹窗广告|\n|作业帮家长版|2|<li>更新提示<li>评价提示-赏好评弹窗|\n|作业精灵|1|<li>全屏广告-弹窗广告|\n|AC匿名版|2|<li>开屏广告<li>全屏广告-弹窗广告|\n|AH视频|4|<li>开屏广告<li>全屏广告-弹窗广告<li>局部广告-卡片广告<li>通知提示-公告弹窗|\n|AK加速器|1|<li>全屏广告-弹窗广告|\n|Android 系统|1|<li>功能类-app无响应-关闭|\n|Android 系统文件选择器|1|<li>功能类-授权第三方应用访问文件夹|\n|biubiu加速器|1|<li>全屏广告-弹窗广告|\n|Blued极速版|1|<li>分段广告-卡片广告|\n|BOSS直聘|1|<li>权限提示-通知权限|\n|C语言编译器|1|<li>全屏广告-弹窗广告|\n|CC加速器|1|<li>局部广告-加速页分享抽奖浮窗|\n|CliCli动漫|1|<li>全屏广告-弹窗广告|\n|e充电|1|<li>全屏广告-首页弹窗广告|\n|e高速|1|<li>局部广告-卡片广告|\n|ES文件浏览器|2|<li>全屏广告-弹窗广告<li>局部广告|\n|ETC车宝|1|<li>局部广告-卡片广告|\n|Fa米家|1|<li>更新提示|\n|flomo浮墨笔记|1|<li>评价提示|\n|GoFun出行|1|<li>全屏广告-弹窗广告|\n|Google Play 服务|1|<li>功能类-谷歌填充密码自动授权|\n|Google Play 商店|4|<li>功能类-Play保护机制弹窗<li>全屏广告-弹窗广告<li>功能类-不开启生物识别支付<li>通知提示-隐私政策更新|\n|Google翻译|1|<li>功能类-关闭登录备份翻译记录弹窗|\n|GPS工具箱|1|<li>局部广告-首页占位广告|\n|i 主题|2|<li>全屏广告-推广弹窗<li>功能类-[添加主题卡片至桌面]弹窗|\n|i茅台|2|<li>全屏广告-首页弹窗广告<li>权限提示-通知权限|\n|i深圳|1|<li>全屏广告-弹窗广告|\n|IT之家|4|<li>开屏广告<li>局部广告-卡片广告<li>分段广告-信息流广告<li>更新提示|\n|kds宽带山|1|<li>分段广告-应用内卡片广告|\n|Luka阅读养成|1|<li>权限提示-通知权限|\n|MT管理器|1|<li>更新提示|\n|MT管理器Pro|1|<li>更新提示|\n|MX 播放器|1|<li>全屏广告-谷歌广告|\n|NGA玩家社区|7|<li>开屏广告<li>局部广告-首页-推荐-卡片广告<li>局部广告-话题-帖子列表广告<li>局部广告-社区-顶部广告<li>全屏广告-弹窗广告<li>局部广告-评论区底部广告<li>权限提示-通知权限|\n|NP管理器|1|<li>全屏广告-弹窗广告|\n|NP管理器|2|<li>全屏广告-弹窗广告<li>分段广告-卡片广告|\n|OPPO 健康|6|<li>更新提示<li>局部广告-卡片广告<li>通知提示-健康周报<li>全屏广告<li>其他-忽略[开启微信运动同步]<li>权限提示-应用使用情况|\n|OPPO/一加应用安装器|2|<li>功能类-自动安装应用<li>功能类-安装中高风险应用|\n|OPPO软件商店|3|<li>开屏广告<li>更新提示<li>局部广告-右下角广告悬浮卡片|\n|OPPO商城|2|<li>更新提示<li>全屏广告-弹窗广告|\n|OPPO手机管家|3|<li>更新提示<li>局部广告-卡片广告<li>其他-风险应用提示|\n|PU口袋校园|4|<li>全屏广告-弹窗广告<li>局部广告-首页-右侧浮窗广告<li>权限提示-通知权限<li>功能类-打开应用自动进入部落|\n|QQ浏览器|3|<li>开屏广告<li>分段广告-小说阅读页面-卡片广告<li>分段广告-小说阅读页面-视频广告|\n|QQ音乐|7|<li>开屏广告<li>局部广告-卡片广告<li>全屏广告-弹窗广告<li>更新提示-内测体验弹窗<li>评价提示-好评弹窗<li>分段广告-评论区广告<li>其他-播放页[猜你也会喜欢]推荐|\n|QQ音乐车机版|1|<li>更新提示|\n|QQ邮箱|2|<li>分段广告-列表卡片广告<li>权限提示-通知权限|\n|QQ阅读|3|<li>局部广告-右下角悬浮卡片广告<li>更新提示-内测邀请弹窗<li>分段广告-阅读页面广告|\n|realme社区|1|<li>功能类-自动签到|\n|UC浏览器|4|<li>开屏广告<li>分段广告-信息流广告<li>权限提示-通知权限<li>其他-请求添加桌面快捷方式弹窗|\n|UPUPOO动态壁纸|1|<li>青少年模式|\n|UU远程|1|<li>权限提示-通知提示|\n|VIVO 电子书|2|<li>权限提示<li>权限提示-通知权限|\n|vivo 官网|3|<li>开屏广告<li>全屏广告-活动广告<li>权限提示-通知权限|\n|vivo浏览器|2|<li>功能类-免流提示<li>局部广告-天气详情页面|\n|vivo应用商店|2|<li>权限提示-通知权限<li>全屏广告-热门应用推荐|\n|WakeUp课程表|2|<li>评价提示<li>更新提示|\n|WiFi万能钥匙|5|<li>全屏广告-弹窗广告<li>全屏广告-连接WiFi后弹出的广告<li>功能类-加速成功后自动点击返回<li>局部广告-连接WiFi界面右侧悬浮广告<li>局部广告-“我的”界面广告卡片|\n|WiFi万能钥匙|1|<li>局部广告-首页-WiFi列表广告|\n|X(推特)|8|<li>分段广告-主页信息流广告<li>分段广告-帖子详情页、搜索页信息流广告<li>分段广告-用户资料页信息流广告<li>评价提示<li>权限提示-通知权限<li>功能类-自动点击翻译<li>功能类-自动点击\"显示更多帖子\"<li>其他-关闭[开启个性化广告]弹窗|\n|ZK助手|1|<li>全屏广告-弹窗广告|\n|ギリギリ愛|1|<li>通知提示-公告弹窗|\n"
  },
  {
    "path": "eslint.config.mjs",
    "content": "import eslint from '@eslint/js';\nimport tsEslint from 'typescript-eslint';\nimport unusedImports from 'eslint-plugin-unused-imports';\nimport eslintConfigPrettier from 'eslint-config-prettier';\n\nexport default tsEslint.config(\n  eslint.configs.recommended,\n  ...tsEslint.configs.recommended,\n  eslintConfigPrettier,\n  {\n    plugins: {\n      'unused-imports': unusedImports,\n    },\n  },\n  {\n    rules: {\n      quotes: ['error', 'single', { allowTemplateLiterals: false }],\n      'no-unused-vars': 'off',\n      '@typescript-eslint/no-unused-vars': 'off',\n      'unused-imports/no-unused-imports': 'error',\n      'unused-imports/no-unused-vars': 'error',\n    },\n  },\n);\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"@aisouler/gkd_subscription\",\n  \"version\": \"0.0.0\",\n  \"type\": \"module\",\n  \"gkd\": {\n    \"outDir\": \"dist\",\n    \"file\": \"AIsouler_gkd.json5\",\n    \"versionFile\": \"AIsouler_gkd.version.json5\",\n    \"changelog\": \"CHANGELOG.md\",\n    \"README.md\": \"README.md\"\n  },\n  \"scripts\": {\n    \"postinstall\": \"simple-git-hooks\",\n    \"format\": \"prettier --cache --write ./**/*.{js,cjs,mjs,ts,jsx,tsx,json}\",\n    \"lint\": \"eslint --cache --fix ./**/*.{js,cjs,mjs,ts,jsx,tsx}\",\n    \"check\": \"tsc --noEmit && tsx ./scripts/check.ts\",\n    \"build\": \"tsc --noEmit && tsx ./scripts/build.ts\"\n  },\n  \"simple-git-hooks\": {\n    \"pre-commit\": \"pnpm exec lint-staged\",\n    \"commit-msg\": \"pnpm exec commitlint --config commitlint.config.ts --edit ${1}\",\n    \"pre-push\": \"pnpm run check\"\n  },\n  \"lint-staged\": {\n    \"*.{js,cjs,mjs,ts,jsx,tsx}\": [\n      \"eslint --cache --fix\",\n      \"prettier --cache --write\"\n    ],\n    \"*.json\": [\n      \"prettier --cache --write\"\n    ]\n  },\n  \"publishConfig\": {\n    \"access\": \"public\",\n    \"registry\": \"https://registry.npmjs.org/\"\n  },\n  \"files\": [\n    \"./dist\"\n  ],\n  \"dependencies\": {\n    \"@commitlint/cli\": \"20.2.0\",\n    \"@commitlint/config-conventional\": \"20.2.0\",\n    \"@commitlint/types\": \"20.2.0\",\n    \"@eslint/js\": \"9.39.1\",\n    \"@gkd-kit/api\": \"0.8.0\",\n    \"@gkd-kit/define\": \"0.0.1\",\n    \"@gkd-kit/tools\": \"0.8.0\",\n    \"@types/node\": \"25.0.0\",\n    \"eslint\": \"9.39.1\",\n    \"eslint-config-prettier\": \"10.1.8\",\n    \"eslint-plugin-unused-imports\": \"4.3.0\",\n    \"json5\": \"2.2.3\",\n    \"lint-staged\": \"16.2.7\",\n    \"prettier\": \"3.7.4\",\n    \"simple-git-hooks\": \"2.13.1\",\n    \"tsx\": \"4.21.0\",\n    \"typescript\": \"5.9.3\",\n    \"typescript-eslint\": \"8.49.0\"\n  },\n  \"volta\": {\n    \"node\": \"20.13.1\"\n  },\n  \"packageManager\": \"pnpm@10.25.0\",\n  \"engineStrict\": true,\n  \"engines\": {\n    \"node\": \">=22\"\n  }\n}\n"
  },
  {
    "path": "scripts/build.ts",
    "content": "import { updateDist } from '@gkd-kit/tools';\nimport { updateReadMeMd } from './updateReadMeMd';\nimport subscription from './check';\n\nawait updateDist(subscription);\n\nawait updateReadMeMd();\n"
  },
  {
    "path": "scripts/check.ts",
    "content": "import subscription from '../src/subscription';\nimport { checkSubscription, checkApiVersion } from '@gkd-kit/tools';\n\nawait checkApiVersion();\n\ncheckSubscription(subscription);\n\nexport default subscription;\n"
  },
  {
    "path": "scripts/updateReadMeMd.ts",
    "content": "import fs from 'node:fs/promises';\n\n// 从 README.md 中解析出 GROUP_SIZE、GLOBALGROUP_SIZE 和 VERSION 的值\nconst parseReadMeMd = async () => {\n  const readmePath = process.cwd() + '/dist/README.md';\n  const readmeContent = await fs.readFile(readmePath, 'utf-8');\n\n  // 使用正则表达式匹配需要的值\n  const groupSizeMatch = readmeContent.match(/\\|应用规则\\|(\\d+)\\|/);\n  const globalGroupSizeMatch = readmeContent.match(/\\|全局规则\\|(\\d+)\\|/);\n  const appSizeMatch = readmeContent.match(/\\|应用\\|(\\d+)\\|/);\n  const versionMatch = readmeContent.match(/v(\\d+)/);\n\n  const APP_SIZE = appSizeMatch ? appSizeMatch[1] : '';\n  const GROUP_SIZE = groupSizeMatch ? groupSizeMatch[1] : '';\n  const GLOBALGROUP_SIZE = globalGroupSizeMatch ? globalGroupSizeMatch[1] : '';\n  const VERSION = versionMatch ? versionMatch[1] : '';\n\n  return { APP_SIZE, GROUP_SIZE, GLOBALGROUP_SIZE, VERSION };\n};\n\n// 更新 README.md 的模板内容并写入文件\nexport const updateReadMeMd = async () => {\n  const { APP_SIZE, GROUP_SIZE, GLOBALGROUP_SIZE, VERSION } =\n    await parseReadMeMd();\n\n  const mdTemplatePath = process.cwd() + '/Template.md';\n  const readmeMdPath = process.cwd() + '/README.md';\n\n  // 读取模板文件\n  const mdTemplate = await fs.readFile(mdTemplatePath, 'utf-8');\n\n  // 替换模板中的占位符\n  const readMeMdText = mdTemplate\n    .replace('--APP_SIZE--', APP_SIZE)\n    .replace('--GROUP_SIZE--', GROUP_SIZE)\n    .replace('--GLOBALGROUP_SIZE--', GLOBALGROUP_SIZE)\n    .replaceAll('--VERSION--', VERSION);\n\n  // 写入 README.md 文件\n  await fs.writeFile(readmeMdPath, readMeMdText);\n};\n"
  },
  {
    "path": "selectors.meta.json",
    "content": "{\n  \"id\": \"404\",\n  \"name\": \"GKD快捷选择器\",\n  \"selectors\": \"https://raw.githubusercontent.com/AIsouler/GKD_subscription/refs/heads/main/selectors.subscription.json\"\n}\n"
  },
  {
    "path": "selectors.subscription.json",
    "content": "{\n  \"404\": [\n    {\n      \"name\": \"开屏广告1\",\n      \"order\": 100,\n      \"selector\": \"[text*=\\\"跳过\\\"][text.length<10][width<500 && height<300][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"开屏广告2\",\n      \"order\": 99,\n      \"selector\": \"[childCount=0][visibleToUser=true][width<500 && height<300][(text.length<10 && (text*=\\\"跳过\\\" || text*=\\\"跳 过\\\" || text*=\\\"跳過\\\" || text~=\\\"(?is).*skip.*\\\") && text!*=\\\"视频\\\" && text!*=\\\"片头\\\" && text!*=\\\"片尾\\\") || (vid~=\\\"(?is).*skip.*\\\" && vid!~=\\\"(?is).*video.*\\\" && vid!~=\\\"(?is).*head.*\\\" && vid!~=\\\"(?is).*tail.*\\\" && !(text=\\\"帮助\\\") && !(text=\\\"取消\\\") && !(text*=\\\"退出\\\")) || id$=\\\"tt_splash_skip_btn\\\" || (desc.length<10 && (desc*=\\\"跳过\\\" || desc*=\\\"跳過\\\" || desc~=\\\"(?is).*skip.*\\\"))]\"\n    },\n    {\n      \"name\": \"字节开屏1\",\n      \"order\": 98,\n      \"selector\": \"@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\\\"第三方应用\\\" || text*=\\\"扭动手机\\\" || text*=\\\"点击或上滑\\\" || text*=\\\"省钱好物\\\" || text*=\\\"扭一扭\\\"][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"字节开屏2\",\n      \"order\": 97,\n      \"selector\": \"FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"互动开屏\",\n      \"order\": 96,\n      \"selector\": \"@[name$=\\\"View\\\" || name$=\\\"LinearLayout\\\"][clickable=true][childCount<2][width<300 && height<200] - [text=\\\"互动广告\\\"][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"开屏排除\",\n      \"order\": 90,\n      \"selector\": \"([text*=\\\"搜索\\\" || text=\\\"历史记录\\\" || text$=\\\"在搜\\\"][text.length>3 && text.length<7][visibleToUser=true]) || ([text=\\\"Submit\\\" || text*=\\\"阅读并同意\\\" || text=\\\"书签\\\" || text=\\\"NEXT\\\"][visibleToUser=true]) || ([text$=\\\"设置\\\" || text$=\\\"选好了\\\" || text^=\\\"下一步\\\" || text^=\\\"完成\\\" || text*=\\\"跳过片\\\"][text.length<10][visibleToUser=true]) || ([text^=\\\"选择\\\"][text*=\\\"偏好\\\" || text*=\\\"兴趣\\\" || text*=\\\"喜好\\\"][text.length<10][visibleToUser=true])\"\n    },\n    {\n      \"name\": \"更新提示1\",\n      \"order\": 89,\n      \"selector\": \"[text*=\\\"内测\\\" || text*=\\\"测试版\\\" || text*=\\\"新版\\\" || text*=\\\"更新\\\" || text*=\\\"升级\\\" || text*=\\\"体验\\\" || text*=\\\"內測\\\" || text*=\\\"測試版\\\" || text*=\\\"升級\\\" || text*=\\\"體驗\\\" || text*=\\\"Update\\\" || text*=\\\"Upgrade\\\" || text*=\\\"Experience\\\"][text!*=\\\"自动\\\" && text!*=\\\"自動\\\" && text!*=\\\"成功\\\" && text!*=\\\"失败\\\" && text!*=\\\"失敗\\\" && text!*=\\\"检查更新\\\" && text!*=\\\"检测更新\\\" && text!*=\\\"卸载\\\"][childCount=0][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"更新提示2\",\n      \"order\": 88,\n      \"selector\": \"[text*=\\\"更新\\\" || text*=\\\"下载\\\" || text*=\\\"安装\\\" || text*=\\\"升级\\\" || text*=\\\"查看\\\" || text*=\\\"体验\\\" || text*=\\\"确定\\\" || text*=\\\"确认\\\"][text.length<6][childCount=0][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"更新提示3\",\n      \"order\": 87,\n      \"selector\": \"([text*=\\\"不再提醒\\\" || text$=\\\"再说\\\" || text$=\\\"拒绝\\\" || text$=\\\"再想想\\\" || text*=\\\"再看看\\\" || text^=\\\"忽略\\\" || text^=\\\"暂不\\\" || text^=\\\"放弃\\\" || text^=\\\"取消\\\" || text$=\\\"不要\\\" || text$=\\\"再說\\\" || text$=\\\"暫不\\\" || text$=\\\"拒絕\\\" || text*=\\\"稍后\\\" || text^=\\\"关闭\\\" || text$=\\\"Later\\\" || text^=\\\"Ignore\\\" || text^=\\\"Not now\\\" || text^=\\\"Cancel\\\"][!(text*=\\\"取消\\\"&&text*=\\\"忽略\\\")][text.length<6][childCount=0][visibleToUser=true]) || ([vid=\\\"closeIv\\\" || vid=\\\"iv_close\\\" || vid=\\\"iv_cancel\\\" || vid=\\\"close\\\" || vid=\\\"Close\\\" || vid=\\\"img_close\\\" || vid=\\\"btn_close\\\" || vid=\\\"ivCancel\\\" || vid=\\\"tvCancel\\\" || vid=\\\"cancel\\\" || vid=\\\"Cancel\\\" || vid=\\\"ivClose\\\" || vid=\\\"imgClose\\\" || vid=\\\"iv_negative\\\" || vid=\\\"update_close_icon\\\"][childCount=0][visibleToUser=true])\"\n    },\n    {\n      \"name\": \"更新排除\",\n      \"order\": 80,\n      \"selector\": \"([text*=\\\"全部\\\"][text*=\\\"更新\\\" || text*=\\\"忽略\\\"][text.length<7][visibleToUser=true]) || ([text^=\\\"继续\\\" || text^=\\\"仍然\\\" || text*=\\\"权限\\\"][text.length<6][visibleToUser=true]) || ([text*=\\\"来源\\\"][visibleToUser=true])\"\n    },\n    {\n      \"name\": \"青少年模式1\",\n      \"order\": 79,\n      \"selector\": \"[text*=\\\"青少年\\\" || text*=\\\"未成年\\\" || text*=\\\"儿童\\\"][text*=\\\"模式\\\" || text*=\\\"守护\\\"][text.length<15][childCount=0][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"青少年模式2\",\n      \"order\": 78,\n      \"selector\": \"[text*=\\\"知道了\\\" || text*=\\\"我已知晓\\\" || text*=\\\"已满\\\" || text*=\\\"不再提醒\\\"][text.length<8][childCount=0][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"字节SDK-1\",\n      \"order\": 69,\n      \"selector\": \"@Image[childCount=0][text=\\\"\\\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\\\"广告\\\"]\"\n    },\n    {\n      \"name\": \"字节SDK-2\",\n      \"order\": 68,\n      \"selector\": \"@Image[childCount=0][text=\\\"\\\"][width<60 && height<60] < View[childCount=1] + View > [text=\\\"反馈\\\"]\"\n    },\n    {\n      \"name\": \"字节SDK-3\",\n      \"order\": 67,\n      \"selector\": \"[text=\\\"反馈\\\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\\\"\\\"][width<60 && height<60]\"\n    },\n    {\n      \"name\": \"字节SDK-4\",\n      \"order\": 66,\n      \"selector\": \"[text=\\\"反馈\\\"] - View[childCount=1] > Image[childCount=0][text=\\\"\\\"][width<60 && height<60]\"\n    },\n    {\n      \"name\": \"腾讯SDK-1\",\n      \"order\": 59,\n      \"selector\": \"@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\\\"立即\\\" || text$=\\\"详情\\\" || text^=\\\"了解\\\" || text=\\\"去微信看看\\\" || text$=\\\"应用\\\" || text=\\\"进入小程序\\\" || text=\\\"领取优惠\\\" || text=\\\"跳转微信\\\"]\"\n    },\n    {\n      \"name\": \"腾讯SDK-2\",\n      \"order\": 58,\n      \"selector\": \"@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\\\"立即\\\" || text$=\\\"详情\\\" || text^=\\\"了解\\\" || text=\\\"去逛逛\\\" || text=\\\"去微信看看\\\" || text$=\\\"应用\\\" || text=\\\"进入小程序\\\" || text=\\\"领取优惠\\\" || text=\\\"跳转微信\\\"]\"\n    },\n    {\n      \"name\": \"腾讯SDK-3\",\n      \"order\": 57,\n      \"selector\": \"@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <(2,3) FrameLayout[childCount=4] +(1,2) FrameLayout[childCount=2] >2 [text^=\\\"立即\\\" || text=\\\"去逛逛\\\"]\"\n    },\n    {\n      \"name\": \"腾讯SDK-4\",\n      \"order\": 56,\n      \"selector\": \"@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\\\"立即\\\" || text$=\\\"应用\\\" || text=\\\"了解更多\\\" || text=\\\"查看详情\\\"]\"\n    },\n    {\n      \"name\": \"腾讯SDK5\",\n      \"order\": 55,\n      \"selector\": \"@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] - FrameLayout >2 [text$=\\\"第三方应用\\\"]\"\n    },\n    {\n      \"name\": \"京东SDK-1\",\n      \"order\": 49,\n      \"selector\": \"@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\\\"扭动或点击\\\"]\"\n    },\n    {\n      \"name\": \"京东SDK-2\",\n      \"order\": 48,\n      \"selector\": \"@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\\\"扭动或点击\\\"]\"\n    },\n    {\n      \"name\": \"快手SDK-1\",\n      \"order\": 39,\n      \"selector\": \"ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\\\"广告\\\"]\"\n    },\n    {\n      \"name\": \"快手SDK-2\",\n      \"order\": 38,\n      \"selector\": \"@ImageView[clickable=true] - [text=\\\"|\\\"] - [text$=\\\"s\\\"]\"\n    },\n    {\n      \"name\": \"卡片-1\",\n      \"order\": 1,\n      \"selector\": \"@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\\\"下载应用\\\" || text=\\\"立即下载\\\" || text=\\\"查看详情\\\" || text=\\\"领取优惠\\\" || text=\\\"进入小程序\\\" || text=\\\"了解更多\\\"][visibleToUser=true]\"\n    },\n    {\n      \"name\": \"dislike\",\n      \"order\": 1,\n      \"selector\": \"@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\\\"dislike\\\"] <n * > FrameLayout >n [text=\\\"广告\\\"]\"\n    },\n    {\n      \"name\": \"字节卡片\",\n      \"order\": 1,\n      \"selector\": \"@Image[childCount=0][visibleToUser=true][width<80&&height<80] < View[childCount=1] +n View[childCount=2] >(2,3) [text=\\\"广告\\\"]\"\n    },\n    {\n      \"name\": \"卡片2\",\n      \"order\": 1,\n      \"selector\": \"@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout +2 FrameLayout >2 [text=\\\"下载应用\\\" || text=\\\"立即下载\\\" || text=\\\"查看详情\\\" || text=\\\"领取优惠\\\" || text=\\\"进入小程序\\\" || text=\\\"了解更多\\\"]\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/apps/ai.ling.luka.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'ai.ling.luka.app',\n  name: 'Luka阅读养成',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击[取消]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.page.activity.MainActivity',\n          matches: ['[text=\"通知服务未开启\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/15796616',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/air.tv.douyu.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'air.tv.douyu.android',\n  name: '斗鱼',\n  groups: [\n    {\n      key: 3,\n      name: '局部广告-直播间广告',\n      activityIds: [\n        'tv.douyu.view.activity.PlayerActivity',\n        'com.douyu.module.player.p.rambobase.RamboPlayerActivity',\n      ],\n      rules: [\n        {\n          key: 5,\n          name: '右下方悬浮广告-1',\n          matches:\n            'ViewGroup[childCount=8] > ViewGroup[index=5] >4 RelativeLayout[visibleToUser=true] > ImageView[clickable=true][index=1]',\n          snapshotUrls: 'https://i.gkd.li/i/13948990',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14310474',\n        },\n        {\n          key: 6,\n          name: '视频下方横幅广告-1',\n          matches:\n            '[id=\"android:id/content\"] > RelativeLayout >2 FrameLayout > ViewGroup[childCount=4] > ImageView[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)]',\n          snapshotUrls: 'https://i.gkd.li/i/14667860',\n        },\n        {\n          key: 7,\n          name: '右下方悬浮广告-2',\n          fastQuery: true,\n          matches:\n            '@ImageView[visibleToUser=true][childCount=0] -(1,2) * >3 [text=\"推荐\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14668232',\n            'https://i.gkd.li/i/17978451',\n          ],\n        },\n        {\n          key: 8,\n          name: '右下方悬浮广告-3',\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] +(1,2) ViewGroup >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/cfd83f2b-580d-4659-8966-eb5f4fe21ecd',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16939767',\n            'https://i.gkd.li/i/24661966',\n          ],\n        },\n        {\n          key: 9,\n          name: '右下方悬浮广告-4',\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0][index=1] <2 ViewGroup[childCount=2] < FrameLayout < FrameLayout < [vid=\"big_live_actions_layout\"]',\n          exampleUrls: 'https://e.gkd.li/cfd83f2b-580d-4659-8966-eb5f4fe21ecd',\n          snapshotUrls: 'https://i.gkd.li/i/16939767',\n        },\n        {\n          key: 10,\n          name: '视频下方横幅广告-2',\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] - FrameLayout >2 [text=\"去看看\" || text^=\"立即\"]',\n          exampleUrls: 'https://e.gkd.li/942ee7a5-43e1-4709-b967-7af1a6900e4c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14668232',\n            'https://i.gkd.li/i/18032754',\n            'https://i.gkd.li/i/24661966',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/anddea.youtube.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'anddea.youtube',\n  name: 'YouTube RVX',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-评论区自动点击[翻译成中文]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches:\n            '@Button[desc^=\"翻译成中文\"][visibleToUser=true] <<n [vid=\"results\"]',\n          exampleUrls: 'https://e.gkd.li/c16f1e91-7c74-46d4-bcb2-dc15e9b6812d',\n          snapshotUrls: 'https://i.gkd.li/i/18287650',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'android',\n  name: 'Android 系统',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-app无响应-关闭',\n      desc: '点击关闭',\n      rules: [\n        {\n          // activityIds: [],\n          fastQuery: true,\n          matches: [\n            '[text$=\"没有响应\" || text*=\"无响应\"]',\n            '[vid=\"aerr_close\"][text=\"确定\" || text=\"关闭应用\"][clickable=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/24468450',\n            'https://i.gkd.li/i/24992555',\n          ],\n          exampleUrls: 'https://e.gkd.li/c87754c4-6fe1-4567-97c3-c74c8db3d561',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/android.zhibo8.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'android.zhibo8',\n  name: '直播吧',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '点击[关闭]-点击[不感兴趣]',\n      fastQuery: true,\n      activityIds: [\n        'android.zhibo8.ui.contollers.main.MainActivity',\n        'android.zhibo8.ui.contollers.detail.DetailActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          matches: '[vid=\"iv_tip\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13786148',\n            'https://i.gkd.li/i/14428863',\n            'https://i.gkd.li/i/15443198',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击不感兴趣',\n          matches: '@[clickable=true] >3 [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14428912',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.ui.contollers.main.MainActivity',\n          matches: ['[text=\"发现新版本\"]', '[text$=\"不再提醒\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14395465',\n            'https://i.gkd.li/i/17825255',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"pushsetting_close_iv\"]',\n          exampleUrls: 'https://e.gkd.li/e28aa1f2-8088-4f78-bee9-2d5832637671',\n          snapshotUrls: 'https://i.gkd.li/i/17825298',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/app.revanced.android.apps.youtube.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'app.revanced.android.apps.youtube.music',\n  name: 'YouTube Music',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-会员广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@Button[desc=\"No thanks\"][visibleToUser=true] <<n [vid=\"custom\"]',\n            '[text=\"No thanks\"][visibleToUser=true]',\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/f07c01d7-9db2-43dd-9a89-ccb3d2a6200e',\n            'https://e.gkd.li/d1fbcb9c-bcc8-466e-9e94-63c4c7a22fd2',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/20448377',\n            'https://i.gkd.li/i/20598829',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.music.activities.MusicActivity',\n          matches:\n            '@Button[desc=\"Close\"][clickable=true][visibleToUser=true][width<150&&height<150] <<n [vid=\"custom\"]',\n          exampleUrls: 'https://e.gkd.li/2048d5b5-514f-46fa-9970-d442b1656fb0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20648224',\n            'https://i.gkd.li/i/20856350',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/app.revanced.android.youtube.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'app.revanced.android.youtube',\n  name: 'YouTube',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-会员广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches:\n            '@Button[desc=\"Close\"][clickable=true][visibleToUser=true][width<150 && height<150] <<n [vid=\"custom\"]',\n          exampleUrls: 'https://e.gkd.li/3c45eae4-383d-489b-ae58-f58d70ea4478',\n          snapshotUrls: 'https://i.gkd.li/i/20856330',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/bin.mt.plus.canary.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'bin.mt.plus.canary',\n  name: 'MT管理器Pro',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'bin.mt.plus.Main',\n          matches: '@[text=\"取消\"] + [text=\"更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13561226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/bin.mt.plus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'bin.mt.plus',\n  name: 'MT管理器',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.Main',\n          matches: ['[text=\"更新\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/16050794',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/bitcoin.minning.com.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'bitcoin.minning.com',\n  name: 'Bitcoin Mining',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.vungle.ads.internal.ui.VungleActivity',\n          matches:\n            '@Button[text=\"Close button\"][clickable=true][childCount=0][visibleToUser=true] <5 View[id*=\"ad\"] < View < WebView < WebView < RelativeLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/99958310-8a0e-47df-b017-b2eea86cd60e',\n          snapshotUrls: 'https://i.gkd.li/i/22361347',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.applovin.adview.AppLovinFullscreenActivity',\n          matches:\n            'View[childCount=0] < @FrameLayout[clickable=true][childCount=1][visibleToUser=true] - RelativeLayout[getChild(0).getChild(0).getChild(0).getChild(0).id=\"adFrame\"] < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/aff580b7-2e95-4145-b50c-07a59d1db617',\n          snapshotUrls: 'https://i.gkd.li/i/22337133',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/bubei.tingshu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'bubei.tingshu',\n  name: '懒人听书',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 0,\n          name: '播放列表-右侧悬浮广告',\n          fastQuery: true,\n          activityIds:\n            'bubei.tingshu.listen.book.detail.activity.DetailActivity',\n          matches: '[id=\"bubei.tingshu:id/closeIcon\"][desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13348489',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.home.ui.HomeActivity',\n          matches: '[text=\"暂不升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13545953',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/by.green.tuber.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'by.green.tuber',\n  name: 'YouTube',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-关闭底部播放横条',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            'ImageButton[desc=\"预览缩略图\"] +2 LinearLayout > ImageButton + ImageButton[visibleToUser=true][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24590682',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/camera.timestamp.mark.watermark.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'camera.timestamp.mark.watermark',\n  name: '今日水印相机',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-谷歌广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches:\n            '@ImageButton[desc=\"Interstitial close button\"][visibleToUser=true] < FrameLayout <2 RelativeLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/1ab940d5-88b8-4088-81fe-9cb72c4cbd53',\n          snapshotUrls: 'https://i.gkd.li/i/17058992',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/chuxin.shimo.shimowendang.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'chuxin.shimo.shimowendang',\n  name: '石墨文档',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页顶部横幅广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'chuxin.shimo.shimowendang.MainActivity',\n          matches:\n            '@[desc=\"banner-desktop-announcement-close\"][visibleToUser=true] - ViewGroup > [text*=\"免费试用企业版\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627960',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cisdom.com.bigteaapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cisdom.com.bigteaapp',\n  name: '大茶肆',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '[text$=\"抽奖送大礼\"] < WebView - [id=\"cisdom.com.bigteaapp:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13228579',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/client.android.yixiaotong.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'client.android.yixiaotong',\n  name: '乐校通',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds:\n            'client.android.yixiaotong.v3.ui.appcontrol.bath.BathDetailActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13055837',\n        },\n        {\n          key: 1,\n          name: '快手广告-1',\n          activityIds:\n            'client.android.yixiaotong.v3.ui.appcontrol.bath.BathDetailActivity',\n          matches:\n            '[id=\"client.android.yixiaotong:id/ksad_tk_view\"] >n ViewGroup + ViewGroup > @ViewGroup > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/13060116',\n        },\n        {\n          key: 2,\n          name: '快手广告-2',\n          fastQuery: true,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13625511',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      activityIds: [\n        'client.android.yixiaotong.v3.ui.V3MainActivity',\n        'client.android.yixiaotong.v3.ui.appcontrol.bath.BathControlActivity',\n        'client.android.yixiaotong.v3.ui.appcontrol.bath.BathDetailActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          matches:\n            'ImageView - FrameLayout - FrameLayout[childCount=1] > ImageView[childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/13451010',\n        },\n        {\n          key: 1,\n          name: '快手广告',\n          fastQuery: true,\n          matches:\n            '@TextView[clickable=true][childCount=0][visibleToUser=true] + View > [visibleToUser=true][text=\"广告\"] <<n [id=\"client.android.yixiaotong:id/ksad_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13450887',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ad8a1bbf-61b5-4a7e-8e16-5e0092f04b8c',\n          snapshotUrls: 'https://i.gkd.li/i/14469848',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9585',\n            top: 'width * 0.0424',\n          },\n          matches: '[vid=\"native_ad_tpbt_image_iv\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ed6c2c12-ac17-40cc-9842-3dbc2a477d15',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14469800',\n            'https://i.gkd.li/i/14469876',\n            'https://i.gkd.li/i/14469878',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cmb.pb.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cmb.pb',\n  name: '招商银行',\n  groups: [\n    {\n      key: 3,\n      name: '局部广告-首页活动悬浮广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cmb.pb.app.mainframe.container.PBMainActivity',\n          matches: '[vid=\"float_window\"] > [vid=\"ivCancle\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14208669',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'cmb.pb.app.h5container.webviewcontainer.PBWebContainerActivity',\n          matches: '[id=\"cover-img\"] + [text=\"关闭推荐\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706022',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.pb.marketing.PopupWindowActivity',\n          matches: '[desc^=\"活动图片\"] + [vid=\"ivCancle\"][desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14208693',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.app.h5container.webviewcontainer.PBWebContainerActivity',\n            '.app.search.PBSearchWebActivity',\n            'com.pb.marketing.PopupWindowActivity',\n          ],\n          matches: '@[desc=\"关闭\"] - * > [text*=\"开启\"][text*=\"定位\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13248893',\n            'https://i.gkd.li/i/13897345',\n            'https://i.gkd.li/i/14208717',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cmccwm.mobilemusic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cmccwm.mobilemusic',\n  name: '咪咕音乐',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: '.ui.base.MainActivity',\n          matches: '[text=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13448898',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.TuHu.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.TuHu.android',\n  name: '途虎养车',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.TuHu.Activity.tuhutab.TuHuTabActivity',\n          matches:\n            '@[id=\"cn.TuHu.android:id/imgClose\"] - [id=\"cn.TuHu.android:id/rlContent\"] > [id=\"cn.TuHu.android:id/img_jump\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13228818',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.TuHu.Activity.tuhutab.TuHuTabActivity',\n          matches: '[id=\"cn.TuHu.android:id/imgClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13228796',\n            'https://i.gkd.li/i/13256535',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.ccspeed.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.ccspeed',\n  name: 'CC加速器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-加速页分享抽奖浮窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.ccspeed.app.MainActivity',\n          matches:\n            '@ImageView[visibleToUser=true] + [id=\"cn.ccspeed:id/iv_float\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13539299',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.chuci.and.wkfenshen.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.chuci.and.wkfenshen',\n  name: '猴子分身',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-购买会员弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.chuci.and.wkfenshen.ActMain',\n          matches: [\n            '[id=\"cn.chuci.and.wkfenshen:id/dialog_local_buy_btn\"]',\n            '[id=\"cn.chuci.and.wkfenshen:id/action_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13226988',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.cntvnews.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.cntvnews',\n  name: '央视新闻',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '右侧悬浮小卡片',\n          fastQuery: true,\n          activityIds: 'com.torch.open.homeimpl.HomeActivity',\n          matches: '[vid=\"btn_close\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8c4308a3-4142-45a0-a085-af8ee89ead04',\n          snapshotUrls: 'https://i.gkd.li/i/14368501',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-个性化推荐弹窗',\n      desc: '点击[取消]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.torch.open.homeimpl.HomeActivity',\n          matches: '[text=\"是否开启个性化推荐？\"] +3 * > [text=\"取消\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b3ee21aa-429d-4407-9b70-acecb222c354',\n          snapshotUrls: 'https://i.gkd.li/i/14444961',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.bmac.nfc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.bmac.nfc',\n  name: '北京一卡通',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击[此广告不再提示]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.MainActivity',\n          matches:\n            '[vid=\"ad_content\"] < * - [clickable=true][vid=\"not_prompt_again\"]',\n          exampleUrls: 'https://e.gkd.li/34995c89-e659-4a38-b4ed-9cb1514323b2',\n          snapshotUrls: 'https://i.gkd.li/i/19718306',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-跳过协议',\n      desc: '点击[同意]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.MainActivity',\n          matches:\n            '@[vid=\"Agree_and_continue\"] <<2 * - [vid=\"layout_title\"] >2 [vid=\"tv_privacy_content\"]',\n          exampleUrls: 'https://e.gkd.li/9c0ec080-3156-4276-b556-47cf20e08150',\n          snapshotUrls: 'https://i.gkd.li/i/21133268',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.drivedu.chexuetang.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.drivedu.chexuetang',\n  name: '车学堂',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'cn.com.drivedu.chexuetang.main.activity.MainActivity_',\n          matches:\n            '[desc^=\"dislike\"] > @View[clickable=true][visibleToUser=true] <<n [vid=\"fragment_ad\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/16020d11-8e5b-4fb5-8e57-6baaa13ce6a9',\n          snapshotUrls: 'https://i.gkd.li/i/15137765',\n        },\n        {\n          key: 1,\n          activityIds: 'cn.com.drivedu.chexuetang.main.activity.MainActivity_',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout > @ImageView[visibleToUser=true] <<n [vid=\"fragment_ad\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/402dc635-354e-4c4b-a6b9-0eebeecfee0d',\n          snapshotUrls: 'https://i.gkd.li/i/15148368',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.hkgt.gasapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.hkgt.gasapp',\n  name: '易捷加油',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.com.hkgt.gasapp.dialog.BannerDialog',\n          matches: 'ImageView[id=\"cn.com.hkgt.gasapp:id/exit\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12744270',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-定位权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.main.HkMainActivity',\n          matches:\n            '@[vid=\"close_open\"] -2 [text*=\"开启定位\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/82022058-fadc-43de-baca-d254249b6c51',\n          snapshotUrls: 'https://i.gkd.li/i/20961130',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.hzb.mobilebank.per.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.hzb.mobilebank.per',\n  name: '杭州银行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.com.hzb.mobilebank.per.MainActivity',\n          matches:\n            'Image[width<160 && height<160][childCount=0] < @View[clickable=true][childCount=1] <2 View[childCount=2] < View[index=parent.childCount.minus(1)][childCount=1] <n View[id=\"app\"] <<3 [vid=\"h5_pc_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/25150390', // 关闭前\n            'https://i.gkd.li/i/25150391', // 关闭后\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-未登录时自动点击登录',\n      desc: '仅限财富版',\n      rules: [\n        {\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'cn.com.hzb.mobilebank.per.MainActivity',\n          matches: '@[clickable=true] > [text=\"立即登录>\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25150391',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.langeasy.LangEasyLexis.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.langeasy.LangEasyLexis',\n  name: '不背单词',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.com.langeasy.LangEasyLexis.activity.MainActivity',\n          matches: '[id=\"cn.com.langeasy.LangEasyLexis:id/bb_checkin\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13610321',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-右下角年度报告弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.com.langeasy.LangEasyLexis.activity.MainActivity',\n          matches: '[id=\"cn.com.langeasy.LangEasyLexis:id/close_float_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13759025',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.livelab.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.livelab',\n  name: '纷玩岛',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.com.livelab.MainActivity',\n          matches:\n            '@Button[clickable=true][childCount=0][visibleToUser=true] <2 View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13258873',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.ruijie.magicbox.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.ruijie.magicbox',\n  name: '无线魔盒',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.com.ruijie.wifibox.activity.MainActivity',\n          matches:\n            '@ImageView[id=\"cn.com.ruijie.magicbox:id/imageView_close\"] +(2) RelativeLayout > LinearLayout > [text*=\"新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12642359',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.spdb.mobilebank.per.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.spdb.mobilebank.per',\n  name: '浦发银行',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '自动点击关闭。',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.web.stage.StageCommonWebActivity',\n          matches: '[text=\"去开启\"] + View > Image[text.length=0]',\n          snapshotUrls: 'https://i.gkd.li/i/13458535',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.thit.wxmetro.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.thit.wxmetro',\n  name: '码上行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.bwton.metro.bwtadui.business.popup.PopDialogFixActivity',\n            'com.bwton.metro.tabindicator.business.MainTabActivity',\n          ],\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/398fe885-755b-4929-82f6-92a14157bac7',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20655916',\n            'https://i.gkd.li/i/20665105',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.com.yunma.school.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.com.yunma.school.app',\n  name: '易校园',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-打开应用后自动点击右上角扫一扫',\n      desc: '仅开屏后触发一次',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.yunma.app.ui.main.MainActivity',\n          matches: '[vid=\"fl_scan\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22451914',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-用水自动点击开始',\n      rules: [\n        {\n          fastQuery: true,\n          matchRoot: true, // 背景动画会持续产生无障碍事件\n          activityIds: 'com.yunma.baseextend.ui.WebActivity',\n          matches:\n            '@TextView[text=\"开始\"][childCount=0] < View[childCount=1] <<n WebView[text=\"立即用水\"] <<2 [vid=\"web_parent_layout_id\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23327551',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n          matches: '[vid=\"anythink_myoffer_btn_close_id\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3ddc6da8-7bbf-43f8-8d79-1fabe1180fea',\n          snapshotUrls: 'https://i.gkd.li/i/23475779',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.yunma.baseextend.appupdate.view.UpdateDialogActivity',\n          matches: ['[text^=\"发现新版本\"]', '[vid=\"ib_close\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/24336659',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.cty.hbzw.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.cty.hbzw',\n  name: '鄂汇办',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          position: {\n            left: 'width * 0.8676',\n            top: 'width * -1.9094',\n          },\n          fastQuery: true,\n          matches: '[vid=\"iv_ad_image\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/9cf76d31-3b11-45dc-be9c-c2e9cbf26c23',\n          snapshotUrls: 'https://i.gkd.li/i/14519367',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.damai.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.damai',\n  name: '大麦',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告', // 该软件会屏蔽无障碍事件，需使用坐标点击方式并在高级设置里开启[启用优化]才能跳过\n      desc: '该规则需要在高级设置中开启[启用优化]才能生效',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches: '[vid=\"homepage_advert_pb\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6680a0b8-0796-4165-88fc-1f16cd6c67dd',\n          snapshotUrls: 'https://i.gkd.li/i/14585402',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'cn.damai.homepage.MainActivity',\n          matches: '[id=\"cn.damai:id/homepage_popup_window_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627900',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.homepage.MainActivity',\n          matches:\n            '[vid=\"damai_theme_dialog_close_layout\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24213790',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.dxy.idxyer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.dxy.idxyer',\n  name: '丁香园',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.biz.main.MainActivity',\n          matches: '[vid=\"iv_image_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24851243',\n            'https://i.gkd.li/i/24868496',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@[vid=\"iv_close\"] <<n [vid=\"include_ad\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24858514',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.biz.main.MainActivity',\n          matches: '[vid=\"iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24852395',\n            'https://i.gkd.li/i/24852398',\n          ],\n        },\n        {\n          key: 1,\n          name: '内容对你有帮助吗-反馈页面',\n          activityIds:\n            'cn.dxy.drugscomm.business.medadviser.detail.MedAdviserDetailComposeActivity',\n          matches:\n            '[text*=\"有帮助吗\"] + [text*=\"参与反馈\"] +n ImageView[clickable=true][width<100 && height<100]',\n          snapshotUrls: 'https://i.gkd.li/i/24995535',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      desc: '点击:x取消',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.biz.main.MainActivity',\n          matches: '[vid=\"iv_close_open_notification\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24877703',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-悬浮小窗播放权限',\n      desc: '点击取消',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.common.WebViewActivity',\n          matches: ['[text=\"开启悬浮小窗播放功能\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/24865283',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-丁香园安全中心-自动点击继续访问',\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          activityIds: '.common.OuterWebViewActivity',\n          matches: '@Button[text=\"继续访问\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24845324',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-自动点击查看答案',\n      rules: [\n        {\n          key: 1,\n          name: '点击查看答案按钮',\n          activityIds: [\n            '.biz.post.PostDetailActivity',\n            '.biz.post.CommentDetailActivity',\n          ],\n          action: 'clickCenter',\n          matches: [\n            '@Button[text=\" 查看答案\"][clickable=true][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/24857800',\n            'https://i.gkd.li/i/24864724',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24875801',\n        },\n        {\n          preKeys: [1],\n          name: '执行返回操作',\n          activityIds: '.biz.post.ShowAnswerActivity',\n          matches: '@ImageButton[desc=\"转到上一层级\"] < [vid=\"toolbar\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24900979',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-药品说明书-表格全屏自动横屏观看',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'cn.dxy.drugscomm.business.ebm.EbmContentComposeActivity',\n          matches: '@TextView[text=\"横屏\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24860315',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '功能类-自动点击查看原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.common.image.GalleryActivity',\n          matches: '[vid=\"iv_item_bottom_ll\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865469',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-📋病例视频自动慢速x0.5_选你想要的但不要多选!',\n      desc: '适合CT,MRI影像学深入分析',\n      actionMaximum: 1,\n      activityIds: '.biz.post.PostDetailActivity',\n      rules: [\n        {\n          key: 0,\n          name: '调出倍速栏',\n          action: 'clickCenter',\n          matches: '[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '使用x0.5',\n          action: 'clickCenter',\n          matches: '@MenuItem[text=\"0.5x\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-📋病例视频自动慢速x0.8_选你想要的但不要多选!',\n      desc: '适合CT,MRI影像学深入分析',\n      actionMaximum: 1,\n      activityIds: '.biz.post.PostDetailActivity',\n      rules: [\n        {\n          key: 0,\n          name: '调出倍速栏',\n          action: 'clickCenter',\n          matches: '[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '使用x0.8',\n          action: 'clickCenter',\n          matches: '@MenuItem[text=\"0.8x\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-📋病例视频自动倍速x1.5_选你想要的但不要多选!',\n      desc: '提高观看效率',\n      actionMaximum: 1,\n      activityIds: '.biz.post.PostDetailActivity',\n      rules: [\n        {\n          key: 0,\n          name: '调出倍速栏',\n          action: 'clickCenter',\n          matches: '[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '使用x1.5',\n          action: 'clickCenter',\n          matches: '@MenuItem[text=\"1.5x\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-📋病例视频自动倍速x2.0_选你想要的但不要多选!',\n      desc: '极限观看效率',\n      actionMaximum: 1,\n      activityIds: '.biz.post.PostDetailActivity',\n      rules: [\n        {\n          key: 0,\n          name: '调出倍速栏',\n          action: 'clickCenter',\n          matches: '[text=\"Playback Rate\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '使用x2.0',\n          action: 'clickCenter',\n          matches: '@MenuItem[text=\"2x\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24865795',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '功能类-📖课程视频自动倍速x1.2⚠️选你想要的但不要多选!',\n      desc: '我们导师再也不卡壳啦',\n      rules: [\n        {\n          fastQuery: true,\n          actionMaximum: 1,\n          activityIds: '.openclass.biz.video.detail.VideoDetailActivity',\n          matches: '[vid=\"play_speed\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24866929',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-📖课程视频自动倍速x1.5⚠️选你想要的但不要多选',\n      desc: '显著提高讲师效率',\n      rules: [\n        {\n          fastQuery: true,\n          actionCd: 300,\n          actionMaximum: 2,\n          activityIds: '.openclass.biz.video.detail.VideoDetailActivity',\n          matches: '[vid=\"play_speed\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24866929',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '功能类-📖课程视频自动倍速x2.0⚠️选你想要的但不要多选',\n      desc: '导师讲到冒烟不带停',\n      rules: [\n        {\n          fastQuery: true,\n          actionCd: 300,\n          actionMaximum: 3,\n          activityIds: '.openclass.biz.video.detail.VideoDetailActivity',\n          matches: '[vid=\"play_speed\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24866758',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.edu.buaa.wxwork.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.edu.buaa.wxwork',\n  name: '智慧北航',\n  groups: [\n    {\n      key: 0,\n      name: '功能类-扫码后自动确认登录',\n      desc: '点击[确认登录]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: [\n            'com.tencent.wework.common.web.JsWebActivity',\n            'com.tencent.wework.launch.WwMainActivity',\n          ],\n          matches: '[desc=\"确认登录\"][clickable=true]',\n          exampleUrls: 'https://e.gkd.li/501ba684-b4a5-40e8-9e24-c61048569667',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16784272',\n            'https://i.gkd.li/i/16784259',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.emagsoftware.gamehall.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.emagsoftware.gamehall',\n  name: '咪咕快游',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.migugame.home_module.ui.activity.HomeActivity',\n          matches:\n            '[id=\"cn.emagsoftware.gamehall:id/btn_update\"] -2 [id=\"cn.emagsoftware.gamehall:id/btn_cancle\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13448894',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.gov.pbc.dcep.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.gov.pbc.dcep',\n  name: '数字人民币',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.activity.MainActivity',\n          matches: '[vid=\"upgrade_dialog_cancel\"][!(text=\"退出应用\")]',\n          snapshotUrls: 'https://i.gkd.li/i/13840408',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/17607391',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.honor.qinxuan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.honor.qinxuan',\n  name: '荣耀亲选',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.honor.qinxuan.MainActivity',\n          matches: '[id=\"cn.honor.qinxuan:id/iv_close_dlg\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13930613',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '@[vid=\"iv_close\"] < * > [text=\"开启消息通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14946137',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.kuwo.player.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.kuwo.player',\n  name: '酷我音乐',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-酷我会员日弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.kuwo.player.activities.MainActivity',\n          matches: '[id=\"cn.kuwo.player:id/iv_business_personal_dia_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13974483',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.mil.junhao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.mil.junhao',\n  name: '中国军号',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[vid=\"splash_adv_ship\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806892',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-右侧悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.mediacloud.app.nav2.AppHome21Style',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 [vid=\"float_feedback\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806896',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.mediacloud.app.nav2.AppHome21Style',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 FrameLayout <2 [vid=\"fragment_containerx\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806894',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.ms.pages.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.ms.pages',\n  name: '飞鸟听书',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '字节广告',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13450787',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'cn.ms.pages.ActivityLingPai',\n          matches:\n            'ImageView < @ViewGroup[clickable=true] < ViewGroup +n ViewGroup [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16136277',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'cn.ms.pages.ActivityLingPai',\n          matches: ['[text=\"广告\"]', '[text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/16136271',\n        },\n        {\n          key: 3,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] +3 View > [text$=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16136260',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-看视频得奖励广告',\n      fastQuery: true,\n      activityIds:\n        'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@RelativeLayout[childCount=0][clickable=true] < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/fd1ff96e-6d17-4738-a2f1-3648169ce53c',\n          snapshotUrls: 'https://i.gkd.li/i/16136235',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"坚持退出\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f09986f3-6dc6-4067-9136-ac6aa0afad3f',\n          snapshotUrls: 'https://i.gkd.li/i/16136240',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.net.shizheng.study.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.net.shizheng.study',\n  name: '365时政',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.dingwei.cloud_classroom.MainActivity',\n          matches:\n            'View[childCount=2] > ImageView[id=\"\"] + Button[id=\"\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12708731',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.nlyuming.duanju.ting.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.nlyuming.duanju.ting',\n  name: '星影视频',\n  groups: [\n    {\n      key: 1,\n      name: '其他-[您还未登录]弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.nlyuming.duanju.ting.MainActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=3] < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3041769f-b644-460b-b0de-9c2a84518849',\n          snapshotUrls: 'https://i.gkd.li/i/14321891',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.runningquotient.rq.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.runningquotient.rq',\n  name: 'RQrun',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      desc: '点击右侧[签到福利]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'cn.runningquotient.rq.page.common_page.MainActivity',\n          matches: '[vid=\"iv_main_checkin_entry\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16105502',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          activityIds:\n            'cn.runningquotient.rq.page.common_page.CommonContainerActivity',\n          matches:\n            '@[visibleToUser=true][text=\"我知道了\"] <<n [vid=\"common_h5_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16105938',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          activityIds:\n            'cn.runningquotient.rq.page.common_page.CommonContainerActivity',\n          matches: '[vid=\"iv_setting_header_view_left\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16105942',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.samsclub.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.samsclub.app',\n  name: '山姆会员商店',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@ImageView[clickable=true] <2 [id=\"cn.samsclub.app:id/advertising_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13609106',\n        },\n        {\n          key: 1,\n          matches: '@ImageView[vid=\"close_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15879369',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.samsclub.app.ui.MainActivity',\n          matches: '[id=\"cn.samsclub.app:id/tips_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13609113',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-关闭「您有一张亲友卡待赠送」通知条',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.samsclub.app.ui.MainActivity',\n          matches: '[id=\"cn.samsclub.app:id/fragment_home_window_delete_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13609113',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.soulapp.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.soulapp.android',\n  name: 'Soul',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          action: 'clickCenter', // 该快照action: 'click' 无效\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/20139575',\n        },\n        {\n          key: 1,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/20139739',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-广场页卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.soulapp.android.component.startup.main.MainActivity',\n          matches:\n            '[id=\"cn.soulapp.android:id/sl_ad_root\"] >n [id=\"cn.soulapp.android:id/fl_tag_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12838000',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示-app评分',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.component.chat.ConversationActivity',\n            '.component.startup.main.MainActivity',\n          ],\n          matches: [\n            '[vid=\"score_message\"][visibleToUser=true]',\n            '[vid=\"cancel\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/4f67640e-836c-4b17-9870-5bb8b8547462',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13425057',\n            'https://i.gkd.li/i/18423888',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      activityIds: [\n        '.component.startup.main.MainActivity',\n        '.component.chat.ConversationActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[id=\"cn.soulapp.android:id/img_close\"] -2 RelativeLayout > [text=\"升级到最新版本\"]',\n          exampleUrls: 'https://e.gkd.li/b8aedb39-1ef1-4b41-80da-0948614d9c7f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13693361',\n            'https://i.gkd.li/i/18096443',\n          ],\n        },\n        {\n          key: 1,\n          matches: '[text=\"升级体验\"] - [text=\"关闭\"]',\n          exampleUrls: 'https://e.gkd.li/8980a9a6-5ea3-4d61-afdb-e22ffbf1cbde',\n          snapshotUrls: 'https://i.gkd.li/i/15034131',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.component.startup.main.MainActivity',\n          matches: '[text=\"消息通知显示消息内容\"] +3 [vid=\"img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14332334',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告-帖子详情页卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'cn.soulapp.android.component.square.post.base.detail.PostDetailActivity',\n          matches: '@ImageView[visibleToUser=true] <2 * < [vid=\"tvAdClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14332294',\n        },\n        {\n          key: 1,\n          activityIds:\n            'cn.soulapp.android.component.square.post.base.detail.PostDetailActivity',\n          matches: '@[clickable=true][visibleToUser=true] >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14359616',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '全屏广告-送礼开聊会话',\n      desc: '自动点击先不聊了',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: '.component.chat.ConversationActivity',\n          matches: '[vid=\"cl_gift_normal\"] > TextView[vid=\"tv_btn_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/19448971',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '全屏广告-推荐页领金币',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: '.component.startup.main.MainActivity',\n          matches: '[vid=\"tslAdLayout\"] [vid=\"tv_cancel\"]',\n          exampleUrls: 'https://e.gkd.li/f721ac73-f66c-45ca-8660-0c3e57845fd9',\n          snapshotUrls: 'https://i.gkd.li/i/21900487',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.speedtest.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.speedtest.lite',\n  name: '网速管家极速版',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches:\n            '@[id=\"cn.speedtest.lite:id/iv_close\"] - [id=\"cn.speedtest.lite:id/ll_main_pane\"] >2 [id=\"cn.speedtest.lite:id/tv_upgrade_content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715483',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-新人专享优惠弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.speedtest.lite.main.MainActivity',\n          matches:\n            '@[id=\"cn.speedtest.lite:id/iv_close\"] - RelativeLayout >n [id=\"cn.speedtest.lite:id/ad_banner\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715511',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.timesneighborhood.app.c.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.timesneighborhood.app.c',\n  name: '邻里邦',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.zkty.modules.engine.activity.XEngineWebActivity',\n          matches: '[text=\"立即签到\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e02dac87-41dc-45eb-bf7e-8daa0b69f517',\n          snapshotUrls: 'https://i.gkd.li/i/14545251',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.trinea.android.developertools.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.trinea.android.developertools',\n  name: '开发助手',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'c.b.a',\n          matches:\n            'View[childCount=2] > View[childCount=1] + @Button[childCount=0] <<n [vid=\"alayout\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6236d6de-c4e1-44d1-b6ff-f472996464a1',\n          snapshotUrls: 'https://i.gkd.li/i/15140643',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.wenyu.bodian.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wenyu.bodian',\n  name: '波点音乐',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 2,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/349c0f9e-a1d2-4e1d-bd6e-e42c3b3c01a6',\n          snapshotUrls: 'https://i.gkd.li/i/22845785',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '@TextView[width<130&&height<130][clickable=true] + * > [text=\"开会员享专属曲库\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22867851',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.MainActivity',\n          matches: 'ImageView[desc=\"广告\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b57e1862-ef27-4b2d-9cf4-c4c1a1a5262e',\n          snapshotUrls: 'https://i.gkd.li/i/22878974',\n        },\n        {\n          key: 1,\n          activityIds: '.MainActivity',\n          matches:\n            '[desc$=\"广告\"] > ImageView[index=1][width=height][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5f249d6e-ac2d-4fda-a53c-039c8091ce63',\n          snapshotUrls: 'https://i.gkd.li/i/22878992',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.wps.moffice_eng.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wps.moffice_eng',\n  name: 'WPS',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页文档列表广告',\n      fastQuery: true,\n      activityIds: [\n        'cn.wps.moffice.main.StartPublicActivity',\n        'cn.wps.moffice.documentmanager.PreStartActivity',\n        'cn.wps.moffice.main.local.HomeRootActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.mopub.ad.xiaomi:id/nativeclose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12505350',\n            'https://i.gkd.li/i/12505286',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 99,\n          matches: '[text=\"不喜欢此广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12505365',\n            'https://i.gkd.li/i/13259090',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'cn.wps.moffice.main.AfterLoginActivity',\n            'com.android.packageinstaller.permission.ui.GrantPermissionsActivity',\n          ],\n          matches: '[id=\"cn.wps.moffice_eng:id/afterlogin_cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13259097',\n            'https://i.gkd.li/i/12882712',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'cn.wps.moffice.main.local.HomeRootActivity',\n          matches:\n            'View[childCount=3] > Image[text!=null] +2 @TextView[clickable=true] <<n [vid=\"push_tips_ptr_super_webview\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13945835',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'cn.wps.moffice.plugin.cloudPage.newpage.NewCloudSettingNewActivity',\n          matches: '[vid=\"cloud_popup_close_view\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23786698',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '[id=\"cn.wps.moffice_eng:id/close_new_func_guide_dialog_imageView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12882371',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-关闭[开启WPS云服务]弹窗',\n      desc: '自动点击不开启',\n      fastQuery: true,\n      activityIds: [\n        'cn.wps.moffice.main.cloud.roaming.login.core.QingLoginActivity',\n        'com.tencent.mm.plugin.webview.ui.tools.SDKOAuthUI',\n        'com.tencent.mm.ui.base.w',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[id=\"cn.wps.moffice_eng:id/cloud_protocol_dialog_not_start_btn\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12882536',\n            'https://i.gkd.li/i/12882610',\n            'https://i.gkd.li/i/12882678',\n          ],\n        },\n        {\n          key: 2,\n          matches: '[id=\"cn.wps.moffice_eng:id/dialog_button_positive\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12882554',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '分段广告-文档末尾广告',\n      fastQuery: true,\n      activityIds: 'cn.wps.moffice.writer.multiactivity.Writer',\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[id=\"cn.wps.moffice_eng:id/doc_end_ad_container_main\"] >2 [id=\"cn.wps.moffice_eng:id/btn_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13513911',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[text=\"关闭当前广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13513914',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'cn.wps.moffice.main.local.HomeRootActivity',\n          matches:\n            '[id=\"cn.wps.moffice_eng:id/home_banner_ad_spread_close\" || vid=\"phone_message_close_button\" || vid=\"close_home_ad_banner_iv\" || vid=\"iv_item_close\" || vid=\"iv_cloud_sync_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13804525',\n            'https://i.gkd.li/i/17893252',\n            'https://i.gkd.li/i/18047731',\n            'https://i.gkd.li/i/23577590',\n            'https://i.gkd.li/i/23786789',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-自动签到',\n      fastQuery: true,\n      activityIds: 'cn.wps.moffice.main.push.explore.PushTipsWebActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[visibleToUser=true][text=\"签到\"] <<n [vid=\"push_tips_ptr_super_webview\"]',\n          exampleUrls: 'https://e.gkd.li/c83fe3b0-74f2-45af-9f8d-6b70c622b424',\n          snapshotUrls: 'https://i.gkd.li/i/16382069',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches:\n            '[text=\"签到成功\"] -2 View[childCount=1] > @Image[text!=null][childCount=0] <<n [vid=\"push_tips_ptr_super_webview\"]',\n          exampleUrls: 'https://e.gkd.li/c8c2f3cb-9bde-4a01-8eb6-145cf668993f',\n          snapshotUrls: 'https://i.gkd.li/i/16382075',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '评价提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.wps.moffice.main.local.HomeRootActivity',\n          matches: [\n            '[text=\"喜欢WPS Office吗？\"]',\n            '[text=\"以后再说\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23714159',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.wps.moffice_i18n.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wps.moffice_i18n',\n  name: 'WPS Office Lite',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'cn.wps.moffice.func.pdf.OverseaPayActivity',\n          matches:\n            '@ImageView[clickable=true][width<90 && height<90] < LinearLayout + [text=\"确定退出吗？\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23577702',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'cn.wps.moffice.main.local.HomeRootActivity',\n          matches:\n            '@ImageView[clickable=true][width<90 && height<90] <n [childCount=2] <n [childCount=2] < [vid=\"TANGRAM_VIEW_CONTAINER_ID\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23578206',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.wps.moffice.main.local.HomeRootActivity',\n          matches: [\n            '[text^=\"开启通知权限\"]',\n            '@[clickable=true] >2 [text=\"别再烦我\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23577888',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.wps.yun.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wps.yun',\n  name: '金山文档',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-列表卡片广告',\n      desc: '点击右侧x',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.wps.yun.ui.IndexActivity',\n          matches:\n            '[id=\"cn.wps.yun:id/rootGroup\"][childCount=5] >  [text^=\"实用技巧\"] +3 [id=\"cn.wps.yun:id/moreIconRight\"]',\n          exampleUrls:\n            'https://m.gkd.li/47232102/bc97cb52-aad0-4114-a548-5831edbe342d',\n          snapshotUrls: 'https://i.gkd.li/i/13495062',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14333322', // 限定 [text^=\"实用技巧\"] 防止误触C\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.IndexActivity',\n          matches: '[text=\"发现新版本\"] +3 [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14333103',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.IndexActivity',\n          matches: '[text=\"开启推送通知\"] +2 * > [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14333362',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.wsds.gamemaster.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.wsds.gamemaster',\n  name: '迅游手游加速器',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-卡片广告',\n      desc: '点击关闭-点击不感兴趣',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'cn.wsds.gamemaster.ui.gamedetails.ActivityGameDetails',\n          matches:\n            'ViewGroup[childCount=2] > @ImageView[childCount=0][index=1][clickable=true][visibleToUser=true] - [text=\"立即下载\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13930398',\n        },\n        {\n          preKeys: [0],\n          activityIds: 'cn.wsds.gamemaster.ui.gamedetails.ActivityGameDetails',\n          matches: '[text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13930399',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.xiaochuankeji.tieba.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.xiaochuankeji.tieba',\n  name: '最右',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15858014',\n            'https://i.gkd.li/i/15858024',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/15858023',\n        },\n        {\n          key: 2,\n          position: {\n            left: 'width * 0.8903',\n            top: 'width * 0.1342',\n          },\n          matches: '[vid=\"contentView\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15856190',\n            'https://i.gkd.li/i/15858008',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.home.setting.SettingActivity',\n          matches:\n            '[id=\"cn.xiaochuankeji.tieba:id/btn_ok\"][text^=\"马上升级\"] + [id=\"cn.xiaochuankeji.tieba:id/btn_cancel\"][text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12660882',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-评论区卡片广告',\n      fastQuery: true,\n      activityIds: '.ui.post.postdetail.PostDetailActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            '@[vid=\"iv_close\"] <<n [vid=\"ad_container\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24209546',\n            'https://i.gkd.li/i/24380002',\n          ],\n        },\n        {\n          preKeys: [1],\n          matches: '@[clickable=true] >2 [text=\"不感兴趣\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/21334232',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '系统通知弹窗，点击暂不开启',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.ui.home.page.PageMainActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[id=\"cn.xiaochuankeji.tieba:id/confirm\"][text=\"打开通知\"] + [id=\"cn.xiaochuankeji.tieba:id/cancel\"][text=\"暂不开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12660823',\n        },\n        {\n          key: 2,\n          matches:\n            '[text^=\"开启通知\"] +(2) [id=\"cn.xiaochuankeji.tieba:id/tips_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12660851',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.xiaochuankeji.zuiyouLite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.xiaochuankeji.zuiyouLite',\n  name: '皮皮搞笑',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/14546304',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12745095',\n            'https://i.gkd.li/i/13387320',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.8778',\n            top: 'width * 0.1667',\n          },\n          matches:\n            '[id$=\"spalsh_ad_view\"] >4 [id$=\"native_container\"] >2 [id=\"cn.xiaochuankeji.zuiyouLite:id/contentView\"]', // 避免选中其他开屏广告节点\n          exampleUrls:\n            'https://m.gkd.li/57941037/485963ab-07b1-412a-a932-badc50cb2688',\n          snapshotUrls: 'https://i.gkd.li/i/13399391',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      activityIds: 'cn.xiaochuankeji.zuiyouLite.ui.slide.ActivitySlideDetail',\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          matches: '[id=\"cn.xiaochuankeji.zuiyouLite:id/ad_remove\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13387116',\n        },\n        {\n          preKeys: [0],\n          name: '点击[不喜欢广告主]',\n          matches: '@LinearLayout[clickable=true] > [text=\"不喜欢广告主\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13387155',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.xuexi.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.xuexi.android',\n  name: '学习强国',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.alibaba.android.rimet.biz.SplashActivity',\n          matches: '@[text=\"取消\"] + [text=\"立即升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715139',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.alibaba.android.rimet.biz.SplashActivity',\n          matches:\n            '[text^=\"开启消息通知\"] +2 [id=\"cn.xuexi.android:id/layout_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715160',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.ylkj.xingying.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.ylkj.xingying',\n  name: '星影视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.ylkj.xingying.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/66b19fbd-b82d-4f10-b82d-0fc74c146b1c',\n          snapshotUrls: 'https://i.gkd.li/i/14783306',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/cn.yonghui.hyd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'cn.yonghui.hyd',\n  name: '永辉生活',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-红包弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          name: '好券即将过期弹窗',\n          activityIds:\n            'cn.yonghui.hyd.coupon.couponfactory.CouponFactoryActivity',\n          matches: [\n            '[id=\"cn.yonghui.hyd:id/advance\" || id=\"cn.yonghui.hyd:id/couponsWillGoneHeaderIv\"]',\n            '[id=\"cn.yonghui.hyd:id/close\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13414401',\n            'https://i.gkd.li/i/13414444',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/coding.yu.ccompiler.new.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'coding.yu.ccompiler.new',\n  name: 'C语言编译器',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'coding.yu.ccompiler.ui.CMainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/274838d1-4618-41ea-b42e-beb0b021f8b2',\n          snapshotUrls: 'https://i.gkd.li/i/17689928',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'coding.yu.ccompiler.ui.CMainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/1ea8876f-4cac-492e-b977-e9a512aa1661',\n          snapshotUrls: 'https://i.gkd.li/i/17689929',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.DL.war.planes.inc.online.bomber.fighter.aircraft.ww2.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.DL.war.planes.inc.online.bomber.fighter.aircraft.ww2',\n  name: 'Warplane Inc. Online',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.yandex.mobile.ads.common.AdActivity',\n          matches:\n            '@ImageView[index=parent.childCount.minus(1)][clickable=true][visibleToUser=true] < ViewGroup <3 ViewGroup <2 ViewGroup +5 [text=\"Learn more\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25241260',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.yandex.mobile.ads.common.AdActivity',\n          matches: '@ImageView - ViewGroup >2 [text=\"AD\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25241244',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.applovin.adview.AppLovinFullscreenActivity',\n          matches:\n            'View[childCount=0] < @FrameLayout[clickable=true][childCount=1] <2 FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25241191',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.MobileTicket.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.MobileTicket',\n  name: '铁路12306',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '[vid=\"tv_main_splash_skip\" || vid=\"tv_skip\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/9a9b71b2-0c52-4623-b53b-6dd07d0cbe7c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17580273',\n            'https://i.gkd.li/i/17656103',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.Qunar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.Qunar',\n  name: '去哪儿旅行',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      ignoreGlobalGroupMatch: true,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@[text^=\"关闭\"][visibleToUser=true] - RelativeLayout > [vid=\"mery_splash_ad_resource\"]',\n          exampleUrls: 'https://e.gkd.li/e5b86f58-2938-4e00-ae5b-cefe05135582',\n          snapshotUrls: 'https://i.gkd.li/i/23180019',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mqunar.atom.attemper.pupgrade.PUpgradeActivity',\n          matches: '[text=\"残忍拒绝\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/068a6e67-572f-4cd5-a4db-ba63d760cbd0',\n          snapshotUrls: 'https://i.gkd.li/i/23742676',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.UCMobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.UCMobile',\n  name: 'UC浏览器',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      ignoreGlobalGroupMatch: true,\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[id=\"android:id/content\"] > FrameLayout[childCount=4] >3 FrameLayout[childCount=4] > RelativeLayout[childCount=1] > View[childCount=0][text=null][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13197655',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9',\n            top: 'width * 0.1676',\n          },\n          matches: '[id=\"com.UCMobile.adn_jingdong_sdk:id/animation_view\"]',\n          exampleUrls: 'https://e.gkd.li/92da64ad-5b08-4343-bec2-bb6a7e0bb92d',\n          snapshotUrls: 'https://i.gkd.li/i/16494884',\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '分段广告-信息流广告',\n      activityIds: 'com.uc.browser.InnerUCMobile',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'TextView[text=\"广告\"] +n ImageView[desc=\"不感兴趣\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12880737',\n            'https://i.gkd.li/i/12881751', // 限定 visibleToUser=true，尽量减少对正常浏览信息的干扰\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text^=\"屏蔽\"][text$=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12880772',\n            'https://i.gkd.li/i/12881307',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.uc.browser.InnerUCMobile',\n          matches: '@ImageView - LinearLayout >n [text=\"开启消息通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12880812',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '其他-请求添加桌面快捷方式弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.uc.browser.InnerUCMobile',\n          matches: '@ImageView + [text^=\"添加\"][text$=\"到桌面\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12880983',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.able.wisdomtree.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.able.wisdomtree',\n  name: '知到',\n  groups: [\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击[暂不开启]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.widget.MyAlertDialog',\n            '.login.MainGroupActivity',\n            'com.example.advertisement_business.advertisement.AdvertisementActivity',\n          ],\n          matches: [\n            '[text=\"开启消息推送通知\"][visibleToUser=true]',\n            '[text=\"暂不开启\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13458779',\n            'https://i.gkd.li/i/13623441',\n            'https://i.gkd.li/i/13695447',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      desc: '点击[忽略]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.login.StartActivity',\n            'com.example.advertisement_business.advertisement.AdvertisementActivity',\n          ],\n          matches: ['[text=\"更新\"] ', ' [text=\"忽略\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13458796',\n            'https://i.gkd.li/i/13797285',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-课程提醒',\n      desc: '点击[已绑定，不再提示]',\n      rules: [\n        {\n          fastQuery: true,\n          matches: [\n            '[text=\"课程提醒\"][visibleToUser=true]',\n            '[text=\"已绑定，不再提示\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/cceb9974-935d-496b-9b26-431864364433',\n          snapshotUrls: 'https://i.gkd.li/i/23122012',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '通知提示-AI分析',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.able.wisdomtree.course.course.studycourse.activity.StudyCourseVideoActivity',\n          matches: '@[vid=\"im_close\"][clickable=true] - [text$=\"同学\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24230330',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ai.obc.cbn.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ai.obc.cbn.app',\n  name: '中国广电',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.ui.other.activity.MainActivity',\n            '.ui.main.fragment.MainFragment$7$1',\n          ],\n          matches: '[id$=\"/ivDis\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12617201',\n            'https://i.gkd.li/i/12655061',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.aiwu.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.aiwu.market',\n  name: '爱吾游戏宝盒',\n  groups: [\n    {\n      key: 1,\n      name: '青少年模式',\n      desc: '点击[我知道了]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.NewHomeActivity',\n          matches: '[vid=\"hintTextView2\"] + [vid=\"confirmView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14032203',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.akspeed.jiasuqi.gameboost.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.akspeed.jiasuqi.gameboost',\n  name: 'AK加速器',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.screen.MainActivity',\n          matches:\n            '@ImageView[index=1][clickable=true][visibleToUser=true][width<200 && height<200] <2 View[childCount=2] < View < ViewGroup < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/8cf84942-9a6e-43a7-b743-d72dff1b7d8c',\n          snapshotUrls: 'https://i.gkd.li/i/20538098',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.alcidae.smarthome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\nexport default defineGkdApp({\n  id: 'com.alcidae.smarthome',\n  name: '海雀',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页通知弹窗',\n      desc: '点击[不再提醒]并关闭弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.danale.video.mainpage.main.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"cb_not_show\"][checked=false][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/02d8846c-6753-4efe-b944-ea024f7485ad',\n          snapshotUrls: 'https://i.gkd.li/i/18291310',\n        },\n        {\n          preKeys: [0],\n          matches: '[vid=\"ibtn_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/02d8846c-6753-4efe-b944-ea024f7485ad',\n          snapshotUrls: 'https://i.gkd.li/i/18291310',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击[取消]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.danale.video.mainpage.main.MainActivity',\n          matches: [\n            '[text*=\"开启通知\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/5f19c508-d4d3-4221-aafe-ab19845b3d4b',\n          snapshotUrls: 'https://i.gkd.li/i/18059150',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.alibaba.ailabs.tg.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.alibaba.ailabs.tg',\n  name: '天猫精灵',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.HomeActivity',\n          matches:\n            '[id=\"com.alibaba.ailabs.tg:id/ll_download\"] + [id=\"com.alibaba.ailabs.tg:id/va_dialog_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13296332',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-超级会员弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9444',\n            top: 'width * 1.0583',\n          },\n          activityIds:\n            'com.alibaba.ailabs.flutter.container.FlutterPaymentActivity',\n          matches: 'FrameLayout > LinearLayout > [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/4a823639-f400-4249-81ea-f920d09317f4',\n          snapshotUrls: 'https://i.gkd.li/i/14443874',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.alibaba.aliyun.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.alibaba.aliyun',\n  name: '阿里云',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.biz.home.mine.activity.KFeeCenterActivity',\n          matches: '[text^=\"打开手机消息通知\"] + * >2 [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13446162',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.alibaba.android.rimet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.alibaba.android.rimet',\n  name: '钉钉',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-消息列表上方广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@FrameLayout > [id=\"com.alibaba.android.rimet:id/icft_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13325125',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-文件即将过期提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@FrameLayout[id=\"com.alibaba.android.rimet:id/layout_close\"] -2 TextView[text=\"文件即将过期请备份\"]',\n          action: 'clickCenter',\n          snapshotUrls: 'https://i.gkd.li/i/13325125',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-自动点击原图',\n      fastQuery: true,\n      actionMaximum: 1,\n      activityIds:\n        'com.alibaba.android.dingtalk.photoui.activitys.AlbumActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'CheckBox[id=\"com.alibaba.android.rimet:id/cb_send_origin\"][text=\"原图\"][checked=false]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13309648', //未选中 [checked=false]\n            'https://i.gkd.li/i/13309845', //已选中 [checked=true]\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches: '@Button[text*=\"暂不更新\"] + Button[text*=\"更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13402478',\n        },\n        {\n          matches:\n            'TextView[id=\"com.alibaba.android.rimet:id/dialog_close_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13772151',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-扫码自动登录桌面版',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'activity',\n      activityIds: 'com.alibaba.android.user.qrcode.WebLoginActivity',\n      rules: [\n        {\n          matches: '[id=\"com.alibaba.android.rimet:id/btn_login\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13433981',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.alibaba.wireless.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.alibaba.wireless',\n  name: '阿里巴巴',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.launch.home.V5HomeActivity',\n            '.workbench.myali.MyAliSettingActivity',\n          ],\n          matches: '[id=\"com.alibaba.wireless:id/update_button_cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12684422',\n            'https://i.gkd.li/i/12684426',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.launch.home.V5HomeActivity',\n          matches: '[vid=\"update_pop_cancel_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15004486',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.alibaba.wireless.launch.home.V5HomeActivity',\n          matches:\n            '@Image[text*=\"FXa-124-124\"][visibleToUser=true] <<n [id=\"com.alibaba.wireless:id/v_yacht_float_cell\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13683509',\n            'https://i.gkd.li/i/13683510',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.alicloud.databox.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.alicloud.databox',\n  name: '阿里云盘',\n  groups: [\n    {\n      key: 0,\n      name: '功能类-自动签到',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        '.MainActivity',\n        '.navigation.NavigationFragmentContainerActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"领取\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15573070', // 签到前\n            'https://i.gkd.li/i/15573233', // 签到后\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          action: 'back',\n          matches: '[vid=\"ivCardBackBackground\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15144565',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-活动弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '@TextView[clickable=true][visibleToUser=true] - Image[text!=null] < View < View < View < WebView < WebView < [vid=\"webContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14235204',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '[text^=\"立即了解\"] -3 @View[clickable=true] <<n [vid=\"webContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806865',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-[开启相册自动备份功能]弹窗',\n      desc: '关闭弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@TextView[childCount=0][clickable=true][visibleToUser=true] <4 View[childCount=4] < View < View < WebView < WebView < [vid=\"webContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14414446',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-扫描二维码登录时自动点击登录',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.taobao.login4android.scan.QrScanActivity',\n          matches: '[text=\"确认并登录\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14414503', // 该页面不允许截图所以快照页面是黑屏，但不影响编写规则\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-[容量使用超限]提示',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.alicloud.databox.MainActivity',\n          matches: ['[text=\"容量使用超限\"]', '[vid=\"layout_close\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/a219a480-c0a3-4064-832d-533f66995fed',\n          snapshotUrls: 'https://i.gkd.li/i/15158788',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-卡片广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.alicloud.databox.transferpage.TransferListActivity',\n          matches: '[vid=\"close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15433289',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.allhistory.dls.marble.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.allhistory.dls.marble',\n  name: '全知识',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击暂不开启',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.pwrd.dls.marble.other.notification.NotificationDialogActivity',\n          matches: '[vid=\"v_open\"] + [vid=\"v_not\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13997956',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-左下角参与答题卡片',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.pwrd.dls.marble.moudle.homepage.HomePageActivity',\n          matches: ['[vid=\"iv_board\"]', '[vid=\"iv_close\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13997954',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.allinone.callerid.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.allinone.callerid',\n  name: 'Showcaller',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"mys-content\"] > View > View > Button[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13696207',\n        },\n        {\n          key: 1,\n          matches: '[id=\"close-button\"] > View > View > Image',\n          snapshotUrls: 'https://i.gkd.li/i/13696205',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.bankabc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.bankabc',\n  name: '中国农业银行',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchRoot: true,\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.android.bankabc:id/close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/67cfc2f8-a108-4382-976a-0da7d13764e9',\n          snapshotUrls: 'https://i.gkd.li/i/14179162',\n        },\n        {\n          key: 1,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a5f6ec81-04f6-4678-b1d5-f2f326521945',\n          snapshotUrls: 'https://i.gkd.li/i/17879768',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"upgrade_checkbox\"][checked=false]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14208545',\n            'https://i.gkd.li/i/16410094',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[vid=\"negativeTextView\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14208545',\n        },\n        {\n          preKeys: [0],\n          key: 2,\n          matches: '[vid=\"iv_negative\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16410094',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[text=\"允许获取位置信息\"] +n * > [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14208572',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[vid=\"iv_notification_reminder_dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14208621',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.browser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.browser',\n  name: '小米浏览器',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告-关闭[个性推荐开启提示]',\n      activityIds: ['com.android.browser.BrowserActivity'],\n      rules: [\n        {\n          matches:\n            '@ImageView[id!=null][clickable=true] -2 [text=\"个性推荐获得更丰富内容\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12829403',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '分段广告-主页信息流广告',\n      fastQuery: true,\n      activityIds: [\n        'com.android.browser.BrowserActivity',\n        'com.android.browser.flow.view.FeedbackDialog',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[id!=null][desc=\"负反馈\"][visibleToUser=true] -n * > * > [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12894221',\n            'https://i.gkd.li/i/12893649',\n          ],\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '@FrameLayout > ViewGroup > [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12894234',\n            'https://i.gkd.li/i/13196059',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-搜索结果页底部必应推荐卡片',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.android.browser.BrowserActivity',\n          matches: '[id=\"bnp_close_icon\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b0d601cf-6cd1-411c-8555-bd4a8ee3335c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14256707',\n            'https://i.gkd.li/i/14256761', // visibleToUser=true防止误触此界面\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-小说阅读页面广告',\n      fastQuery: true,\n      activityIds: 'com.duokan.shop.mibrowser.reading.SdkReaderActivity',\n      rules: [\n        {\n          key: 0,\n          excludeMatches:\n            '[vid=\"reading__close_ad_view__subtitle_tv\"][visibleToUser=true]',\n          matches: '[vid=\"reading__app_ad_view__close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5deac756-01a5-4ee0-a26f-9fb659115f78',\n          snapshotUrls: 'https://i.gkd.li/i/19718114',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/19718162',\n        },\n        {\n          preKeys: [0],\n          matches:\n            '[vid=\"reading__close_ad_view__subtitle_tv\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6e2c9635-4084-47e1-b255-4bc9728a7528',\n          snapshotUrls: 'https://i.gkd.li/i/19718162',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.calendar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.calendar',\n  name: '小米日历',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      desc: '注意⚠️：该广告需开启[智能服务]的对应规则才能关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.homepage.AllInOneActivity',\n          matches: '[vid=\"close\"][desc=\"关闭广告卡片\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23619245',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.chrome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.chrome',\n  name: 'Chrome',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-文件可能有害-点击[仍然下载]',\n      desc: '警告⚠️：会跳过有害文件警告，请谨慎开启',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.chromium.chrome.browser.ChromeTabbedActivity',\n          matches: [\n            '[text=\"文件可能有害\"][visibleToUser=true]',\n            '[text=\"仍然下载\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/7fd28568-a614-4dea-8928-56a20c5780b6',\n          snapshotUrls: 'https://i.gkd.li/i/24863365',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.contacts.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.contacts',\n  name: '通讯录与拨号',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.mobile.businesshall.ui.common.RecommendPopupActivity',\n          matches: '[vid=\"img_close_btn\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a3ad68fc-4a2e-45e2-87d3-97ece1fceaa4',\n          snapshotUrls: 'https://i.gkd.li/i/14321032',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击[取消]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '@[text=\"取消\"] +2 [text=\"更新\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/803695f8-48e1-43e8-8841-ec0288393489',\n          snapshotUrls: 'https://i.gkd.li/i/14469082',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.documentsui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.documentsui',\n  name: '文件',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-允许第三方应用访问文件夹',\n      desc: '点击允许',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.android.documentsui.picker.PickActivity',\n          matches: [\n            '[text^=\"要允许\"][visibleToUser=true]',\n            '[text=\"允许\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13801468',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-使用此文件夹',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.android.documentsui.picker.PickActivity',\n          matches: '[text=\"使用此文件夹\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13916082',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-自动选择排序方式[修改日期（从新到旧）]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.picker.PickActivity',\n          matches:\n            '[text=\"修改日期（从新到旧）\"][checked=false][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bf621eae-8268-4381-aa46-4161c7811cbe',\n          snapshotUrls: 'https://i.gkd.li/i/23096908',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.email.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.email',\n  name: '电子邮件',\n  groups: [\n    {\n      // 小米自带电子邮件\n      key: 1,\n      name: '权限提示-自启动',\n      desc: '点击取消',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.wps.multiwindow.main.HomeActivity',\n          matches: [\n            '[text^=\"检测到您的自启动权限未开启\"]',\n            '[text=\"取消\"][clickable=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/1eacdaf8-1405-44d8-a9b9-228e913c5180',\n          snapshotUrls: 'https://i.gkd.li/i/17276404',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.icredit.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.icredit',\n  name: '企查查',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-VIP弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.android.icredit.ui.MainMenuActivity',\n          matches:\n            '@Image[childCount=0][visibleToUser=true] <2 View < View < WebView[text$=\"限时返场\" || text=\"首单有礼\"] < WebView < LinearLayout < LinearLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/eb232325-12e4-495f-a9f3-5f853d5e66f9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14720494',\n            'https://i.gkd.li/i/15112280',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.incallui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.incallui',\n  name: '电话',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-接通话时自动点击录音',\n      actionMaximum: 1,\n      rules: [\n        {\n          actionDelay: 500,\n          fastQuery: true,\n          activityIds: '.InCallActivity',\n          matches: [\n            '[vid=\"elapsedTime\"][visibleToUser=true]',\n            '[vid=\"recordButton\"][desc=\"录音\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/cfe191ef-3786-403c-ba88-e18d299803a8',\n          snapshotUrls: 'https://i.gkd.li/i/20876897',\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/20876893', // 接通后\n            'https://i.gkd.li/i/20877514', // 未接通时点击无效\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.mediacenter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.mediacenter',\n  name: '华为音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          matches: '[text^=\"跳过\"][text.length<=10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12901417',\n            'https://i.gkd.li/i/12908742',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-VIP弹窗广告',\n      desc: '点击底部圆形x图标关闭弹窗',\n      activityIds: 'com.android.mediacenter.MainActivity',\n      fastQuery: true,\n      rules: '[id=\"com.android.mediacenter:id/iv_close\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12914026',\n    },\n    {\n      key: 2,\n      name: '局部广告-推荐卡片广告',\n      desc: '点击卡片右上角[广告],点击不感兴趣[直接关闭]',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '点击卡片右上角[广告]',\n          activityIds: 'com.android.mediacenter.MainActivity',\n          matches: '[id=\"com.android.mediacenter:id/ad_more_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12914077',\n        },\n        {\n          key: 1,\n          name: '点击不感兴趣[直接关闭]',\n          activityIds: 'com.huawei.openalliance.ad.activity.FeedbackActivity',\n          matches:\n            '[id=\"com.android.mediacenter:id/label_title\"][text=\"直接关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12914078',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.packageinstaller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.packageinstaller',\n  name: '软件包安装程序',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动安装应用',\n      fastQuery: true,\n      forcedTime: 10000,\n      activityIds: [\n        '.PackageInstallerActivity',\n        '.FlymePackageInstallerActivity',\n        '.PackageInterceptActivity',\n        '.NewInstallInstalling',\n        '.InstallSuccess',\n        '.oplus.InstallAppProgress',\n        '.DeleteStagedFileOnResult',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击[继续安装]',\n          matches:\n            '[text=\"继续安装\"][focusable=true || parent.focusable=true || parent.parent.focusable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13206444',\n            'https://i.gkd.li/i/14046749',\n            'https://i.gkd.li/i/16550275',\n            'https://i.gkd.li/i/23621117',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/23621105',\n        },\n        {\n          key: 1,\n          name: '点击[完成]',\n          matches: '[text=\"完成\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13206476',\n            'https://i.gkd.li/i/13766420',\n            'https://i.gkd.li/i/13962438',\n            'https://i.gkd.li/i/14138323',\n            'https://i.gkd.li/i/14471862',\n            'https://i.gkd.li/i/16550273',\n          ],\n        },\n        {\n          key: 2,\n          name: '点击[安装]',\n          matches: '[vid=\"confirm_bottom_button_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14228348',\n        },\n        {\n          key: 4,\n          position: {\n            left: 'width * 1.5394',\n            top: 'height * 0.5',\n          },\n          excludeMatches: '[text=\"继续安装\" || text=\"完成\"]',\n          matches:\n            'LinearLayout[childCount=1] > Button[text=\"取消\"][childCount=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14969116',\n            'https://i.gkd.li/i/17158050',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-授权本次安装',\n      rules: [\n        {\n          fastQuery: true,\n          position: {\n            left: 'width * 0.4609',\n            top: 'height * 0.75',\n          },\n          activityIds: '.PackageInterceptActivity',\n          matches:\n            '[vid=\"tv_install_guide\"][text*=\"授权本次安装\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6ad6e4c6-3cb7-41b2-a37b-bcaa3c06de34',\n          snapshotUrls: 'https://i.gkd.li/i/24465121',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-自动继续安装高危风险应用',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.PackageInterceptActivity',\n          matches: [\n            '[text=\"该应用存在高危风险\"][visibleToUser=true]',\n            '@[clickable=true] >2 [text=\"仍要继续\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/2961e749-6aac-4f74-b7f7-268ecc0e14f4',\n          snapshotUrls: 'https://i.gkd.li/i/24540505',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-勾选[已了解此应用未经检测，可能存在风险]',\n      fastQuery: true,\n      activityIds: ['.PackageInterceptActivity', '.PackageInstallerActivity'],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[vid=\"checkbox\" || vid=\"deleted_file_state_cb\"][checked=false]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14595443',\n            'https://i.gkd.li/i/22870985',\n          ],\n        },\n        {\n          preKeys: [0],\n          matches: '@LinearLayout[clickable=true][id=null] > [text=\"继续安装\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22870985',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.permissioncontroller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.permissioncontroller',\n  name: '权限控制器',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      desc: '点击不允许',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.permission.ui.GrantPermissionsActivity',\n          matches: [\n            '[text*=\"位置信息权限\"]',\n            'Button[text=\"不允许\"][clickable=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/801303af-ac30-4d06-b2f8-cfea98aa847a',\n          snapshotUrls: 'https://i.gkd.li/i/24759204',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.providers.downloads.ui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.providers.downloads.ui',\n  name: '下载管理',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.DownloadList',\n          matches: '@[text=\"以后再说\"] + [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13631769',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.quicksearchbox.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.quicksearchbox',\n  name: '搜索',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.SearchActivityTransparent',\n          matches: '[vid=\"ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13897834',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.soundrecorder.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.soundrecorder',\n  name: '录音机',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.RecordPreviewActivity',\n          matches: '@[text=\"以后再说\"] + [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14140552',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.systemui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.systemui',\n  name: '系统界面',\n  groups: [\n    // 以下规则组快照截取自小米手机，可能不适配其他系统。\n    {\n      key: 1,\n      name: '功能类-自动允许网易云音乐共享整个屏幕',\n      fastQuery: true,\n      activityIds:\n        '.mediaprojection.permission.MediaProjectionPermissionActivity',\n      rules: [\n        {\n          key: 1,\n          matches: [\n            '[text=\"要与“网易云音乐”共享屏幕吗？\"]',\n            '[vid=\"screen_share_mode_spinner\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23451390',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '@[clickable=true] > [text=\"共享整个屏幕\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23451403',\n        },\n        {\n          preKeys: [2],\n          key: 3,\n          matches: 'Button[text=\"共享屏幕\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23451416',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-自动允许白描共享整个屏幕',\n      fastQuery: true,\n      activityIds:\n        '.mediaprojection.permission.MediaProjectionPermissionActivity',\n      rules: [\n        {\n          key: 1,\n          matches: [\n            '[text=\"要与“白描”共享屏幕吗？\"]',\n            '[vid=\"screen_share_mode_spinner\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23451390',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '@[clickable=true] > [text=\"共享整个屏幕\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23451403',\n        },\n        {\n          preKeys: [2],\n          key: 3,\n          matches: 'Button[text=\"共享屏幕\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23451416',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-自动允许QQ音乐共享整个屏幕',\n      fastQuery: true,\n      activityIds:\n        '.mediaprojection.permission.MediaProjectionPermissionActivity',\n      rules: [\n        {\n          key: 1,\n          matches: [\n            '[text=\"要与“QQ音乐”共享屏幕吗？\"]',\n            '[vid=\"screen_share_mode_spinner\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23451390',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '@[clickable=true] > [text=\"共享整个屏幕\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23451403',\n        },\n        {\n          preKeys: [2],\n          key: 3,\n          matches: 'Button[text=\"共享屏幕\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23451416',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.thememanager.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.thememanager',\n  name: '主题壁纸',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '该广告的第二段需开启[智能服务]的对应规则才能关闭',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            '.ThemeResourceProxyTabActivity',\n            '.module.detail.view.ThemeDetailActivity',\n            '.module.detail.view.WidgetDetailActivity',\n            '.v9.WallpaperSubjectActivity',\n          ],\n          matches: '[vid=\"ad_close_btn\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17143445',\n            'https://i.gkd.li/i/17143447',\n            'https://i.gkd.li/i/17675601',\n            'https://i.gkd.li/i/19637669',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'clickCenter',\n          activityIds: [\n            'com.android.thememanager.ThemeResourceTabActivity',\n            'com.android.thememanager.ThemeResourceProxyTabActivity',\n          ],\n          matches: 'ImageView[vid=\"cancel\"][desc=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13215038',\n            'https://i.gkd.li/i/15286330',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-右下角悬浮窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.android.thememanager.ThemeResourceTabActivity',\n            'com.android.thememanager.ThemeResourceProxyTabActivity',\n          ],\n          matches: '[vid=\"close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/41ff6d56-e583-4e6e-9fb3-4efafaeedbd5',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14722559',\n            'https://i.gkd.li/i/15286334',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.tnaant.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.tnaant',\n  name: '蚂蚁加速器',\n  groups: [\n    {\n      key: 5,\n      name: '通知提示-公告弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dd.antss.ui.activity.LaunchActivity',\n          matches: '[text=\"公告\"] +2 [text=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13713449',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.updater.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.updater',\n  name: '系统更新',\n  groups: [\n    {\n      key: 0,\n      name: '功能类-不开启自动更新',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: ['.MainActivity', '.UpdateActivity'],\n          matches: [\n            '[vid=\"alertTitle\"][text=\"开启智能更新\" || text=\"Install automatically?\"]',\n            '[id=\"android:id/button2\"][text=\"暂不开启\" || text=\"No\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/15386937',\n            'https://i.gkd.li/i/15386869',\n            'https://i.gkd.li/i/18469146',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '功能类-流量更新点击继续下载',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.android.updater.UpdateActivity',\n          matches: [\n            '[text^=\"您当前正在使用数据网络，继续下载可能会产生流量费用\"]',\n            '[text=\"继续下载\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23182185',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-不开启流量自动更新',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.android.updater.UpdateActivity',\n          matches: ['[text=\"开启数据网络自动下载\"]', '[text=\"不开启\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/23182175',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.android.vending.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.android.vending',\n  name: 'Google Play 商店',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-Play保护机制弹窗',\n      desc: '点击[不发送]/[拒绝]',\n      rules: [\n        {\n          activityIds:\n            'com.google.android.finsky.protectdialogs.activity.PlayProtectDialogsActivity',\n          matches:\n            '[text*=\"保护机制\"] +3 @View[clickable=true] > [text=\"不发送\" || text=\"拒绝\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14035144',\n            'https://i.gkd.li/i/17375098',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击[以后再说]/[不用了]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          position: {\n            left: 'width * 0.5',\n            top: 'height * 0.75',\n          },\n          activityIds: 'com.google.android.finsky.activities.MainActivity',\n          matches:\n            '@LinearLayout[childCount=0][visibleToUser=true] -3 [text^=\"体验\" || text^=\"隆重推出\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15286041',\n            'https://i.gkd.li/i/16397947',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: 'com.google.android.finsky.activities.MainActivity',\n          matches:\n            '[text=\"以后再说\" || text=\"不用了\" || text=\"No thanks\" || text=\"Not now\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14958783',\n            'https://i.gkd.li/i/16079813',\n            'https://i.gkd.li/i/17622043',\n            'https://i.gkd.li/i/18135816',\n            'https://i.gkd.li/i/18609168',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-不开启生物识别支付',\n      desc: '点击[以后再说]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.finsky.billing.acquire.SheetUiBuilderHostActivity',\n          matches: [\n            '[text=\"要使用指纹或人脸验证购买交易吗？\"]',\n            '[text=\"以后再说\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23289407',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-隐私政策更新',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.google.android.finsky.activities.MainActivity',\n          matches: [\n            '[text=\"更新 Google Play 隐私设置\"]',\n            '[text=\"知道了\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24982226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.anshibo.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.anshibo.activity',\n  name: '车e兴',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/7f58925f-39dd-40c3-a8f1-f6e5268eced4',\n          snapshotUrls: 'https://i.gkd.li/i/18046569',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18047812', // 全局规则 key: 1 在此提前触发消耗次数\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ants360.yicamera.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ants360.yicamera',\n  name: '小蚁摄像机',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13463241',\n        },\n        {\n          key: 1,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +3 ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13543175',\n        },\n        {\n          key: 2,\n          activityIds: [\n            '.activity.MainActivity',\n            'com.xiaoyi.yiplayer.ui.PlayerActivity',\n          ],\n          matches: '@[vid=\"ivClose\"] - [text=\"专属福利\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a7ba5126-27dd-450d-abf9-c3a8b6938727',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18410909',\n            'https://i.gkd.li/i/22652775',\n          ],\n        },\n        {\n          key: 3,\n          activityIds: [\n            'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n            'com.yd.saas.base.inner.interstitial.YdInterstitialActivity',\n          ],\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/1af231f8-bb98-450e-83d1-5bd067802de3',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19514818',\n            'https://i.gkd.li/i/19722625',\n            'https://i.gkd.li/i/22652776',\n          ],\n        },\n        {\n          key: 4,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true] + RelativeLayout >2 [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/af626eb0-e24d-446d-8137-a4a9839ebc20',\n          snapshotUrls: 'https://i.gkd.li/i/19514819',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.xiaoyi.yiplayer.ui.PlayerActivity',\n            '.activity.MainActivity',\n            '.activity.camera.LandscapePlayerActivity',\n          ],\n          matches: [\n            '[text=\"开启通知\"][visibleToUser=true]',\n            '[text=\"暂不开启\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/1cb1471e-94a5-430f-ac2f-b031413a067e',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18395740',\n            'https://i.gkd.li/i/19503517',\n            'https://i.gkd.li/i/19722627',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c9e67d26-d65f-4e24-9f62-cc29f29cff9b',\n          snapshotUrls: 'https://i.gkd.li/i/18406158',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches:\n            '@[clickable=true][id=\"com.kwad.dy.sdk:id/ksad_ad_dislike\"] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/2d358b3b-6a8e-4ebf-813b-03d01d18d5f1',\n          snapshotUrls: 'https://i.gkd.li/i/22652771',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.xiaoyi.yiplayer.ui.PlayerActivity',\n          matches:\n            'FrameLayout > FrameLayout > FrameLayout[childCount=1] > @ImageView[childCount=0][width<50 && height<50] <<n [vid=\"adContainer\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2c38cc0d-06e6-4075-86f8-cbb9c2453840',\n          snapshotUrls: 'https://i.gkd.li/i/22652772',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.antutu.ABenchMark.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.antutu.ABenchMark',\n  name: '安兔兔评测',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.android.module.app.ui.test.activity.ActivityTestResult',\n          matches:\n            '[text=\"广告\"] +2 View > @TextView[childCount=0][index=1][clickable=true][visibleToUser=true] <<n [id=\"com.antutu.ABenchMark:id/ksad_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13234012',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.apkpure.aegon.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.apkpure.aegon',\n  name: 'APKPure',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-热门推荐关闭',\n      desc: '关闭应用推广',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.apkpure.aegon.main.activity.MainTabActivity',\n          matches:\n            '@RelativeLayout[clickable=true][visibleToUser=true] - [text=\"精选必备好应用\"] <2 RelativeLayout < LinearLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13466647',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-更新与已安装界面-点击[查看更多]',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            'com.apkpure.aegon.main.activity.MainTabActivity',\n            'com.apkpure.aegon.main.activity.AppManagerActivity',\n            'com.apkpure.aegon.cms.activity.CommonActivity',\n            'com.apkpure.aegon.main.activity.AppMoreActivity',\n          ],\n          matches:\n            '@ViewGroup[clickable=true] > [text=\"查看更多\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15469126',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-更新界面软件推荐',\n      activityIds: [\n        'com.apkpure.aegon.main.activity.MainTabActivity',\n        'com.apkpure.aegon.main.activity.AppManagerActivity',\n        'com.apkpure.aegon.cms.activity.CommonActivity',\n        'com.apkpure.aegon.main.activity.AppMoreActivity',\n      ],\n      fastQuery: true,\n      rules: [\n        {\n          name: '点击三点图标',\n          key: 0,\n          matches:\n            '@ImageView - RelativeLayout >3 [text=\"AD\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13466329',\n        },\n        {\n          name: '点击关闭',\n          preKeys: 0,\n          matches:\n            '@LinearLayout[clickable=true] >n [text=\"关闭\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13466610',\n            'https://i.gkd.li/i/15542026',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-添加桌面快捷方式',\n      desc: '下次添加',\n      rules: [\n        {\n          activityIds: 'com.apkpure.aegon.main.activity.MainTabActivity',\n          matches: '[id=\"com.apkpure.aegon:id/arg\"][text=\"下次添加\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13416401',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          activityIds: '.main.activity.MainTabActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @LinearLayout[clickable=true][visibleToUser=true] < LinearLayout < LinearLayout < LinearLayout < RelativeLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/10d6f26e-cbd1-4159-914b-68c39ff05436',\n          snapshotUrls: 'https://i.gkd.li/i/18587607',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          activityIds: '.main.activity.AppManagerActivity',\n          matches:\n            '@ImageView[index=0][childCount=0][clickable=true][visibleToUser=true] < ViewGroup[childCount=2] < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/b8201abb-359e-4fc8-82de-0e3784278cd2',\n          snapshotUrls: 'https://i.gkd.li/i/18587646',\n        },\n        {\n          key: 2,\n          activityIds: '.v2.app.detail.AppDetailV2Activity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] - [text=\"正在下载\" || text=\"正在更新\"]',\n          exampleUrls: 'https://e.gkd.li/214effcb-76c5-4cc0-b4c8-40c805331fe8',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18587702',\n            'https://i.gkd.li/i/18587507',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.plugin.runtime.PluginDefaultProxyActivity',\n          matches:\n            '@ImageView[clickable=true] <2 RelativeLayout[childCount=2] - FrameLayout >5 [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24605359',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.activity.MainTabActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] <3 RelativeLayout[childCount=4] < FrameLayout <2 FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/1ba2de53-b533-47dc-87a4-a701d2bcacd7',\n          snapshotUrls: 'https://i.gkd.li/i/18587501',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.main.activity.AppManagerActivity',\n          matches:\n            '@[desc=\"closeButton\"][visibleToUser=true] - WebView >3 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/afc307a6-8271-4776-b7d5-60bd999d0fe5',\n          snapshotUrls: 'https://i.gkd.li/i/18587514',\n        },\n        {\n          key: 1,\n          activityIds: '.main.activity.AppManagerActivity',\n          matches: '[vid=\"anythink_myoffer_banner_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ce6a779c-454d-4a71-9d54-1401e615bbf7',\n          snapshotUrls: 'https://i.gkd.li/i/18587745',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-电报频道推广横幅',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.main.activity.MainTabActivity',\n            '.main.activity.AppManagerActivity',\n            '.v2.app.detail.AppDetailV2Activity',\n          ],\n          matches:\n            '@LinearLayout[clickable=true][visibleToUser=true] - LinearLayout >3 [text=\"Join\"]',\n          exampleUrls: 'https://e.gkd.li/088ca8e8-5442-4b60-9ce9-0e6dd7d94304',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18587504',\n            'https://i.gkd.li/i/18587515',\n            'https://i.gkd.li/i/18587775',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.at.a552360580763717.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.at.a552360580763717',\n  name: '安心加速器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.ft.movie.project_speed.MainActivity',\n          matches:\n            'View[childCount=29 || childCount=30] > View[childCount=2] > ImageView[clickable=true][visibleToUser=true][index=0]',\n          exampleUrls: 'https://e.gkd.li/089c780e-e37a-4c25-a375-ba7f67b5ae9b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16784443',\n            'https://i.gkd.li/i/16797995',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ataaw.tianyi.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ataaw.tianyi',\n  name: '天翼生活',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: ['[vid=\"version\"]', '[vid=\"ignore\"]'],\n      snapshotUrls: 'https://i.gkd.li/i/13867468',\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.attempt.afusekt.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.attempt.afusekt',\n  name: 'AfuseKt',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.attempt.afusekt.MainActivity',\n          matches: '[text=\"下次一定\"]',\n          exampleUrls: 'https://e.gkd.li/7c513592-123b-4dde-92cd-54fad5d14dee',\n          snapshotUrls: 'https://i.gkd.li/i/16938883',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.aurora_tec.downloader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.aurora_tec.downloader',\n  name: '极光下载器',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-系统公告',\n      desc: '点击[确定]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.HomeActivity',\n          matches: '[text=\"系统公告\"] +2 [text=\"确定\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/45886cda-e54a-4a1f-b136-949b59704f0c',\n          snapshotUrls: 'https://i.gkd.li/i/24726084',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.autonavi.minimap.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.autonavi.minimap',\n  name: '高德地图',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/983cc392-1b01-4172-bc1d-2df001baeb3d',\n          snapshotUrls: 'https://i.gkd.li/i/16490985',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches: [\n            '[text=\"版本升级\" || id=\"com.autonavi.minimap:id/update_viewpager\"][visibleToUser=true]',\n            '[text=\"取消\" || id=\"com.autonavi.minimap:id/iv_close\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13379094',\n            'https://i.gkd.li/i/13379426',\n            'https://i.gkd.li/i/21981032',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-截屏分享',\n      desc: '关闭截屏时app弹出的分享弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            '[text=\"分享截图至\"] < ViewGroup < ViewGroup + @ViewGroup[clickable=true] > ImageView <<n [id=\"com.autonavi.minimap:id/fragment_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13473388',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-首页上方消息提醒',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.autonavi.map.activity.NewMapActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            'RelativeLayout[desc=\"弹窗\"] > [id=\"com.autonavi.minimap:id/msgbox_popup_clear\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12642830',\n          exampleUrls: 'https://e.gkd.li/a7f72c58-0b31-4b87-9839-567d4d74350a',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: '@ImageView[clickable=true] - [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/17426322',\n          exampleUrls: 'https://e.gkd.li/ca2dae5b-10d8-458e-9d83-fe04652ff074',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-首页签到卡片',\n      desc: '点击\"x\"',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.autonavi.map.activity.NewMapActivity',\n      rules:\n        'ImageView[visibleToUser=true][width<90][height<90] < @ViewGroup -(2) ViewGroup > ViewGroup > View[text*=\"签到\"||text*=\"成长值\"]',\n      snapshotUrls: [\n        'https://i.gkd.li/i/12642842',\n        'https://i.gkd.li/i/12642845',\n        'https://i.gkd.li/i/12818770', // 限定 ImageView[visibleToUser=true]，防止控件不可见时触发规则\n        'https://i.gkd.li/i/13764540', // 限定 ImageView[width<90][height<90]，避免在此误触\n      ],\n    },\n    {\n      key: 13,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            'ViewGroup > ViewGroup > [desc=\"关闭\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/071a07d2-c760-4f15-9359-f54bf51b6205',\n          snapshotUrls: 'https://i.gkd.li/i/14715295',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            'ViewGroup[desc=\"图片\"][childCount=2] > ViewGroup[clickable=true] > @ImageView[childCount=0] <<n [vid=\"tab_container_id\"]',\n          exampleUrls: 'https://e.gkd.li/132266f7-b7b8-4cac-9549-bcbe4314c893',\n          snapshotUrls: 'https://i.gkd.li/i/16960367',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            '@ImageView[childCount=0] < ViewGroup[clickable=true] -2 * > View[text^=\"高德购票\" && text$=\"优惠\"] <<n [vid=\"mapInteractiveRelativeLayout\"]',\n          exampleUrls: 'https://e.gkd.li/59408741-4847-4395-ace5-b1e14ee24cec',\n          snapshotUrls: 'https://i.gkd.li/i/16960157',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            '@[clickable=true] > [visibleToUser=true][text=\"关闭\"] <<n [vid=\"ajx_view_container\"]',\n          exampleUrls: 'https://e.gkd.li/018aa83b-3f0a-46b4-b084-a5e7a397ca68',\n          snapshotUrls: 'https://i.gkd.li/i/18627401',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '[欢迎]弹窗',\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            'ViewGroup[childCount=6] >4 ViewGroup[childCount=5] > @ImageView[clickable=true] + View[text!=null] <<n [vid=\"fragment_container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/660ef360-eee8-4fb8-9764-7a1822ccb6e9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14800704',\n            'https://i.gkd.li/i/17079025', // add @ImageView[clickable=true]避免在此误触\n          ],\n        },\n        {\n          key: 1,\n          name: '签到弹窗',\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches: '[vid=\"main_map_msg_dialog_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e059109b-f4bb-4ed6-81a8-6010b51ebfd5',\n          snapshotUrls: 'https://i.gkd.li/i/14809993',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            '@ViewGroup[clickable=true] > View[visibleToUser=true][text^=\"关闭\"] <<n [vid=\"mapInteractiveRelativeLayout\"]',\n          exampleUrls: 'https://e.gkd.li/0a4e847f-b1b0-4667-982a-43f313305139',\n          snapshotUrls: 'https://i.gkd.li/i/22287641',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '功能类-一键点亮角落',\n      desc: '点击[一键点亮]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches:\n            '[text=\"一键点亮\"] <2 @[clickable=true] <<n [vid=\"mapInteractiveRelativeLayout\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1fd33208-e81d-4da6-a23c-4d562a8e0ae0',\n          snapshotUrls: 'https://i.gkd.li/i/14881505',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '权限提示-授权蓝牙',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.autonavi.map.activity.NewMapActivity',\n          matches: '@ImageView[clickable=true] -2 [text=\"授权蓝牙\"]',\n          exampleUrls: 'https://e.gkd.li/8aef9184-d2b6-4c49-b729-82e6e76decdc',\n          snapshotUrls: 'https://i.gkd.li/i/17002003',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.babycloud.hanju.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.babycloud.hanju',\n  name: '韩小圈',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.babycloud.hanju.ui.activity.HanjuSeriesActivity',\n            'com.babycloud.hanju.ui.activity.HanjuHomeActivity',\n            'com.babycloud.hanju.search.activity.SearchActivity',\n          ],\n          matches: '[vid=\"unified_ad_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13628282',\n            'https://i.gkd.li/i/13670721',\n            'https://i.gkd.li/i/13849929',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-视频播放时的弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.babycloud.hanju.ui.activity.HanjuSeriesActivity',\n          matches:\n            '[vid=\"close_rl\" || vid=\"only_skip_rl\" || vid=\"skip_rl\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13800123',\n            'https://i.gkd.li/i/13972345',\n            'https://i.gkd.li/i/14048532',\n            'https://i.gkd.li/i/14048302',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.babytree.apps.pregnancy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.babytree.apps.pregnancy',\n  name: '宝宝树孕育',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12614757',\n        },\n        {\n          key: 1,\n          matches:\n            '@View[childCount=0][clickable=true][visibleToUser=true] < RelativeLayout < FrameLayout + RelativeLayout >2 [text^=\"摇一摇\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15566228',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      activityIds: 'com.babytree.apps.pregnancy.activity.SailfishActivity',\n      rules: [\n        {\n          matches:\n            'ImageView[id=\"com.babytree.apps.pregnancy:id/bb_referenced_active_dialog_img_2\"] + ImageView[id!=null][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12614834',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-首页右侧悬浮广告',\n      activityIds: 'com.babytree.apps.pregnancy.activity.SailfishActivity',\n      rules: [\n        {\n          matches:\n            'ImageView[id!=null][clickable=false] + @ImageView[id!=null][clickable=true] + FrameLayout[id=null] > TextView[text=null][id!=null]',\n          snapshotUrls: 'https://i.gkd.li/i/12614838',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.badmintoncn.bbs.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.badmintoncn.bbs',\n  name: '中羽在线',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '红包弹窗',\n          activityIds: 'net.duohuo.magappx.main.IndexTabActivity',\n          matches: '[id=\"com.badmintoncn.bbs:id/iv_close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13635224',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.BaiduMap.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.BaiduMap',\n  name: '百度地图',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f03b3648-757a-48e3-bd3b-098f8293edbf',\n          snapshotUrls: 'https://i.gkd.li/i/16556555',\n        },\n        {\n          key: 1,\n          matches: '[vid=\"ms_skipView\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/cd89ffb7-6cd3-4978-b3d6-ef5ece2769d0',\n          snapshotUrls: 'https://i.gkd.li/i/23742641',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      activityIds: [\n        'com.baidu.mapframework.widget.BMBaseDialog',\n        'com.baidu.baidumaps.MapsActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[text^=\"开启位置服务\"] + RelativeLayout > [id=\"com.baidu.BaiduMap:id/tv_notip_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12660884',\n        },\n        {\n          key: 1,\n          matches:\n            '[text=\"需开启系统定位服务开关\"] +2 [id=\"com.baidu.BaiduMap:id/ll_dialog_btn\"] > [id=\"com.baidu.BaiduMap:id/tv_dialog_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12660883',\n        },\n        {\n          key: 2,\n          matches:\n            'ImageView[id=\"com.baidu.BaiduMap:id/location_dialog_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12909299',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches: 'ImageView[id=\"com.baidu.BaiduMap:id/cancel_update\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12909385',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches: '[vid=\"push_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15284736',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-通勤卡添加至桌面',\n      desc: '点击取消',\n      fastQuery: true,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches: ['[text=\"添加至桌面\"]', '[text=\"取消\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13439258',\n            'https://i.gkd.li/i/16920986', // 防止误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches: '[vid=\"img_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22616256',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches: '[vid=\"banner_ad_close_icon\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22656085',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] + ViewGroup > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22616267',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.baidu.baidumaps.MapsActivity',\n          matches: 'ImageView[id=\"com.baidu.BaiduMap:id/yellow_banner_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24633179',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.baike.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.baike',\n  name: '百度百科',\n  groups: [\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '自动点击\"不允许\"',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.component.push.NotificationEnableDialog',\n          matches: '[text^=\"打开推送通知\"] +2 [text=\"不允许\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755717',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.homework.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.homework',\n  name: '作业帮',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.baidu.homework.activity.index.IndexActivity',\n          matches: '[vid=\"ad_dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15374440',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.activity.index.IndexActivity',\n          matches: ['[text^=\"小组件\"]', '[text=\"以后再说\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/23567064',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.input.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\nexport default defineGkdApp({\n  id: 'com.baidu.input',\n  name: '百度输入法',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-创作祝福弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      resetMatch: 'app',\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: '.ImeAppMainActivity',\n          matches: '[id=\"android:id/content\"] >2 [vid=\"button_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14179064',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-底部会员悬浮卡片',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          position: {\n            left: 'width * 0.9269',\n            top: 'width * 0.113',\n          },\n          activityIds:\n            'com.baidu.input.layout.store.subshop.activity.SkinShopActivity',\n          matches:\n            '@[desc=\"开会员，全部皮肤免费用\"] <<n [vid=\"shop_content_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15320905',\n        },\n        {\n          key: 1,\n          activityIds: 'com.baidu.input.ImeAppMainActivity',\n          matches: '[vid=\"close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15320990',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.netdisk.samsung.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.netdisk.samsung',\n  name: '百度网盘-三星版本',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      activityIds: 'com.baidu.netdisk.ui.MainActivity',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '[id=\"com.baidu.netdisk.samsung:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12738331',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      activityIds: 'com.baidu.netdisk.ui.MainActivity',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[id=\"com.baidu.netdisk.samsung:id/buy_product_root\"] > [id=\"com.baidu.netdisk.samsung:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12738388',\n        },\n        {\n          key: 1,\n          activityIds: 'com.baidu.netdisk.ui.MainActivity',\n          matches:\n            'View[childCount=2] > @TextView[text=\"\"][clickable=true] + TextView[text=\"专属福利\"][clickable=false]',\n          snapshotUrls: 'https://i.gkd.li/i/12738404',\n        },\n        {\n          key: 2,\n          activityIds: 'com.baidu.netdisk.ui.MainActivity',\n          matches:\n            '@TextView[text=\"\"][clickable=true] - TextView[text=\"去使用\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12738449',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.baidu.netdisk.ui.transfer.TransferListTabActivity',\n          matches:\n            '[vid=\"close_probationary_guide_layout\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ab41b402-c4d0-439a-96f3-23029434aec4',\n          snapshotUrls: 'https://i.gkd.li/i/16423129',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.baidu.netdisk.ui.transfer.TransferListTabActivity',\n          matches: '[vid=\"youa_guide_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ab41b402-c4d0-439a-96f3-23029434aec4',\n          snapshotUrls: 'https://i.gkd.li/i/16423129',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '评价提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baidu.netdisk.ui.MainActivity',\n          matches: '[vid=\"view_score_style\"] > [text=\"以后再说\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/167a8392-23c8-4e84-a55f-4f91e7e560d8',\n          snapshotUrls: 'https://i.gkd.li/i/14893286',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[vid=\"dialog_cancel\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/06ae328b-f852-407b-83ab-ec295d41baa4',\n          snapshotUrls: 'https://i.gkd.li/i/14893280',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-[上新【专辑】功能]弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.baidu.netdisk.filealbum.ui.activity.FileAlbumListActivity',\n          matches: '[vid=\"add_widget_dialog_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/256b5cad-a5ad-48e3-ba72-9c84447f2cac',\n          snapshotUrls: 'https://i.gkd.li/i/14893285',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.netdisk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.netdisk',\n  name: '百度网盘',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 3,\n          activityIds: [\n            'com.baidu.netdisk.business.guide.dialog.lifeproduct.',\n            'com.baidu.netdisk.ui.MainActivity',\n            'com.baidu.netdisk.ui.Navigate',\n          ],\n          matches: '[vid=\"iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642505',\n            'https://i.gkd.li/i/12783106',\n            'https://i.gkd.li/i/12923937',\n            'https://i.gkd.li/i/13806852',\n            'https://i.gkd.li/i/14730106',\n            'https://i.gkd.li/i/14822799',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.video.VideoPlayerActivity',\n          matches: '[vid=\"rl_ad_root\"] > [vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5e0625e3-ef3b-4a71-a222-54728c2274b0',\n          snapshotUrls: 'https://i.gkd.li/i/20414230',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: ['.ui.MainActivity', '.ui.cloudp2p.RichMediaActivity'],\n          matches: '[text=\"立即更新\"] -2 [text=\"下次再说\"]', //使用ID会导致误触（例如删除确认https://i.gkd.li/i/13069049）\n          snapshotUrls: [\n            'https://i.gkd.li/i/16118181',\n            'https://i.gkd.li/i/24834209',\n          ],\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.MainActivity',\n          matches: 'ImageView[id=\"com.baidu.netdisk:id/dialog_cancel\"]', //单独使用ID会导致误触（例如删除确认https://i.gkd.li/i/13069049）\n          snapshotUrls: 'https://i.gkd.li/i/12923936',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '评价提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.ui.MainActivity',\n      rules: [\n        {\n          matches: '[vid=\"view_score_style\"] > [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14317054',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.baidu.netdisk.ui.MainActivity',\n          matches:\n            '[vid=\"float_btn_close\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/470eec82-ed99-4f50-beba-2587e525cfdf',\n          snapshotUrls: 'https://i.gkd.li/i/14278618',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '分段广告-暂不开启自动备份',\n      fastQuery: true,\n      activityIds: '.ui.NewQuickSettingsActivity',\n      rules: [\n        {\n          key: 0,\n          matches: [\n            '[text=\"开启安全备份\"][visibleToUser=true]',\n            '[text=\"暂不开启\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/e227fa57-f728-4ba4-8fff-493751bc5035',\n          snapshotUrls: 'https://i.gkd.li/i/22401064',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"暂不开启\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/aa9782d4-304f-401b-89f6-4fae703b8280',\n          snapshotUrls: 'https://i.gkd.li/i/22401070',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.newapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.newapp',\n  name: '文心一言',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.update.UpdateAlertActivity',\n          matches: '[text=\"立即更新\"] + [text=\"暂不升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13360280',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.searchbox.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.searchbox',\n  name: '百度',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-红包弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.baidu.searchbox.MainActivity',\n          matches:\n            '@View[vid=\"obfuscated\"][clickable=true][visibleToUser=false] +3 [text=\"看视频，领现金\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806848',\n        },\n        {\n          activityIds: 'com.baidu.searchbox.MainActivity',\n          matches:\n            '@ImageView[vid=\"obfuscated\"][text=null][childCount=0][clickable=true][visibleToUser=true][index=1] <2 LinearLayout[childCount=2] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13988536',\n        },\n        {\n          activityIds: 'com.baidu.searchbox.MainActivity',\n          matches:\n            '@ImageView[vid=\"obfuscated\"][text=null][childCount=0][clickable=true][visibleToUser=true] +4 [text^=\"继续看视频\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14034223',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.update.UpdateDialogActivity',\n          matches:\n            '@ImageView[desc=\"关闭\"] <2 RelativeLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f2712b2e-7327-4068-bcff-92646b3400bd',\n          snapshotUrls: 'https://i.gkd.li/i/14730100',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.searchcraft.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.searchcraft',\n  name: '简单搜索',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-信息流广告',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          activityIds: 'com.baidu.browser.search.LightSearchActivity',\n          matches: '[desc=\"ad-logo\"] + [id=\"logo-close-btn\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13520385',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.tieba.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.tieba',\n  name: '百度贴吧',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: 'TextView[text^=\"跳过\"][text.length<=10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775906',\n            'https://i.gkd.li/i/12566191',\n            'https://i.gkd.li/i/12870916',\n            'https://i.gkd.li/i/13233500',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13322227',\n        },\n        {\n          key: 2,\n          matches:\n            'TextView[text=\"广告\"] - @LinearLayout[clickable=true] > [text=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13168386',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            '@ImageView[clickable=true] -2 LinearLayout > [text^=\"打开通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13536170',\n        },\n        {\n          key: 1,\n          activityIds: '.immessagecenter.mention.reply.ReplyMeActivity',\n          matches: 'TextView[text=\"开启消息推送\"] +2 TextView[text=\"不开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13675694',\n        },\n        {\n          key: 2,\n          activityIds: 'com.baidu.tbadk.browser.TBWebContainerActivity',\n          matches: '[text=\"开启通知\"] <n * > [text=\"暂不开启\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13804455',\n            'https://i.gkd.li/i/20918198',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-信息流广告',\n      desc: '关闭广告、直播推广',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: ['.tblauncher.MainTabActivity', '.forum.ForumActivity'],\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] <(1,2) LinearLayout <4 RelativeLayout +2 RelativeLayout >2 [text=\"直播中\"]',\n          exampleUrls: 'https://e.gkd.li/94be671a-4709-4aa5-b114-d4cfabe0ed9c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595137',\n            'https://i.gkd.li/i/16596473',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: [\n            '.forum.ForumActivity',\n            '.pb.pb.main.PbActivity',\n            '.tblauncher.MainTabActivity',\n          ],\n          matches:\n            '@FrameLayout[clickable=true][visibleToUser=true] < LinearLayout < RelativeLayout <3 LinearLayout < RelativeLayout + LinearLayout >2 [text$=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/3b2f0906-f620-4fda-a59f-334a9548836e',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595127',\n            'https://i.gkd.li/i/16595515',\n            'https://i.gkd.li/i/16596130',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            '@FrameLayout[clickable=true][visibleToUser=true] < LinearLayout < FrameLayout -(1,2) [text$=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/683d8e48-909e-4c06-9686-9a9778456e78',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595120',\n            'https://i.gkd.li/i/16595133',\n          ],\n        },\n        {\n          key: 3,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] -3 [text=\"直播中\"]',\n          exampleUrls: 'https://e.gkd.li/ad2f214b-0e2a-400e-9511-d35d7f14c004',\n          snapshotUrls: 'https://i.gkd.li/i/16596210',\n        },\n        {\n          key: 4,\n          activityIds: [\n            '.tblauncher.MainTabActivity',\n            '.pb.pb.main.PbActivity',\n          ],\n          matches:\n            'ImageView[childCount=0] < @FrameLayout[clickable=true][childCount=1][visibleToUser=true] <(3,4) RelativeLayout + FrameLayout >9 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/0ac82700-02f3-40c6-bf45-b21e365ac84c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21524232',\n            'https://i.gkd.li/i/21529443',\n            'https://i.gkd.li/i/21556758',\n            'https://i.gkd.li/i/24520138',\n          ],\n        },\n        {\n          key: 5,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            'ImageView[childCount=0] < @FrameLayout[clickable=true][childCount=1][visibleToUser=true] <2 RelativeLayout + RelativeLayout >3 [text=\"广告\"] ',\n          exampleUrls: 'https://e.gkd.li/0d5fea40-44ac-4b47-8b3c-e8388640e37d',\n          snapshotUrls: 'https://i.gkd.li/i/24541094',\n        },\n        {\n          preKeys: [0, 1, 2, 3, 4, 5],\n          activityIds: [\n            '.tblauncher.MainTabActivity',\n            '.pb.pb.main.PbActivity',\n            '.forum.ForumActivity',\n          ],\n          matches:\n            '@View[clickable=true][visibleToUser=true] - [text^=\"选择不喜欢\"]',\n          exampleUrls: 'https://e.gkd.li/67a159e7-59ea-45f6-909c-7a681c4d3838',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595134',\n            'https://i.gkd.li/i/16595511',\n            'https://i.gkd.li/i/16595113',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-首页、推荐列表顶部卡片广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      activityIds: ['.tblauncher.MainTabActivity', '.frs.FrsActivity'],\n      rules: [\n        {\n          key: 1,\n          matches:\n            'RelativeLayout[childCount=2] > @RelativeLayout[childCount=1][clickable=true] > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/13060892',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          activityIds: '.UpdateDialog',\n          matches: '[text=\"稍后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16908501',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 1,\n          name: '点击正下方x关闭',\n          activityIds: [\n            '.frs.FrsActivity',\n            '.tblauncher.MainTabActivity',\n            '.LogoActivity',\n          ],\n          matches:\n            '@TextView[id=\"com.baidu.tieba:id/obfuscated\"][clickable=true][childCount=0][visibleToUser=true] - FrameLayout[childCount=2][getChild(1).text=\"广告\"] < RelativeLayout[childCount=2] < [parent=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13168383',\n            'https://i.gkd.li/i/13322120',\n            'https://i.gkd.li/i/13328246',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: [\n            '.tblauncher.MainTabActivity',\n            'com.baidu.tbadk.browser.TBWebContainerActivity',\n          ],\n          matches:\n            'WebView[text!=null] > View[childCount=1] > View[childCount=3] > @[visibleToUser=true][index=2]',\n          exampleUrls: 'https://e.gkd.li/ac3d88b7-31a2-441f-a4c8-8a73eaec24b9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13060891',\n            'https://i.gkd.li/i/16703244',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-悬浮小广告',\n      matchDelay: 500,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          activityIds: [\n            '.tblauncher.MainTabActivity',\n            '.pb.pb.main.PbActivity',\n          ],\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][vid=\"obfuscated\"] - [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16622395',\n            'https://i.gkd.li/i/16632851',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/13327933',\n        },\n        {\n          key: 1,\n          name: '首页右侧悬浮广告-2',\n          activityIds: '.tblauncher.MainTabActivity',\n          matches:\n            'RelativeLayout >2 RelativeLayout[childCount=1] > ImageView[childCount=0][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14291964',\n        },\n        {\n          key: 2,\n          name: '评论区左侧悬浮广告',\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            'FrameLayout[getChild(1).getChild(1).text!=null] + @FrameLayout[clickable=true] > LinearLayout[childCount=2] > ImageView + [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13296280',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20361318',\n        },\n        {\n          key: 3,\n          activityIds: [\n            '.pb.pb.main.PbActivity',\n            '.tblauncher.MainTabActivity',\n          ],\n          matches:\n            'RelativeLayout[childCount=2] > RelativeLayout[childCount=1] > ImageView[childCount=0][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13625336',\n            'https://i.gkd.li/i/13627881',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-[帖子内/吧内]底部悬浮窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] <2 LinearLayout - * > [text$=\"热议中\" || text^=\"猜你喜欢\" || text*=\"进吧逛逛\"]',\n          exampleUrls: 'https://e.gkd.li/047ab857-f690-473b-9b18-43369319c5ce',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595234',\n            'https://i.gkd.li/i/16619736',\n            'https://i.gkd.li/i/16647874',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.forum.ForumActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] <2 LinearLayout - * > [text^=\"关注本吧\"]',\n          exampleUrls: 'https://e.gkd.li/756c02b5-a72c-4ca4-a05c-a33202e8ecd6',\n          snapshotUrls: 'https://i.gkd.li/i/17992981',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-贴吧内签到并关闭弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          name: '贴吧页签到',\n          activityIds: '.forum.ForumActivity',\n          anyMatches: [\n            '@TextView[text=\"签到\"][visibleToUser=true] <3 View < View <2 View < View < WebView < WebView < FrameLayout < ViewGroup <2 FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n            '@TextView[text=\"签到\"][visibleToUser=true] <5 View < View <2 View < WebView < WebView < FrameLayout < ViewGroup <2 FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/15087289',\n            'https://i.gkd.li/i/17902156',\n          ],\n        },\n        {\n          key: 1,\n          name: '关闭签到成功弹窗',\n          action: 'back',\n          activityIds: 'com.baidu.tbadk.browser.TBWebContainerActivity',\n          matches:\n            '@WebView[text=\"签到弹窗\"][visibleToUser=true] < WebView < FrameLayout < LinearLayout < RelativeLayout < [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15087327',\n            'https://i.gkd.li/i/15881225',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '局部广告-帖子底部话题卡片',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches: '@ImageView[clickable=true] -2 [text=\"进入话题查看更多\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2fa193f8-5e0e-4f85-b828-eb3e22cb60a3',\n          snapshotUrls: 'https://i.gkd.li/i/14586847',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '全屏广告-会员弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          forcedTime: 10000,\n          activityIds: [\n            '.tblauncher.MainTabActivity',\n            'com.baidu.tbadk.browser.TBWebContainerActivity',\n          ],\n          matches:\n            'WebView[text=\"会员弹窗\" || text=\"一键签到\"] >(3,4) TextView + Image[text!=null][childCount=0][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/dd2f2a00-e9d3-47fa-986d-09ae6180d932',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14630806',\n            'https://i.gkd.li/i/15119439',\n            'https://i.gkd.li/i/15119451',\n            'https://i.gkd.li/i/16426630',\n          ],\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      forcedTime: 10000,\n      rules: [\n        {\n          key: 0,\n          activityIds: '.pb.pb.main.PbActivity',\n          matches:\n            '@[clickable=true][visibleToUser=true] <(1,2) RelativeLayout <(1,4) RelativeLayout[childCount>1] >(3,4) [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/337a7e8b-500f-4a0b-ae08-018c5222d4da',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595124',\n            'https://i.gkd.li/i/16596297',\n            'https://i.gkd.li/i/16632851', // [childCount>1] 防止误触\n          ],\n        },\n        {\n          key: 1,\n          activityIds: [\n            '.tblauncher.MainTabActivity',\n            '.pb.pb.main.PbActivity',\n            '.forum.ForumActivity',\n          ],\n          matches:\n            '@FrameLayout[clickable=true][visibleToUser=true] <4 RelativeLayout + FrameLayout >7 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/5b53c3be-4972-44aa-a62e-3ca780ae7098',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16595301',\n            'https://i.gkd.li/i/16596195',\n            'https://i.gkd.li/i/16596775',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: '.tblauncher.MainTabActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] < LinearLayout[childCount=1] <4 RelativeLayout +3 LinearLayout >4 [text=\"小游戏\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17943902',\n            'https://i.gkd.li/i/18217417',\n          ],\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '局部广告-感兴趣的吧推广',\n      desc: '关闭首页、吧内其他贴吧的推广',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: ['.tblauncher.MainTabActivity', '.forum.ForumActivity'],\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] - [text=\"你可能感兴趣的吧\" || text^=\"本吧的人都在逛\"]',\n          exampleUrls: 'https://e.gkd.li/bfc13aa1-579f-46f4-beff-64b3f8ec693a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16914357',\n            'https://i.gkd.li/i/17944680',\n            'https://i.gkd.li/i/18218517',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.tieba_mini.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.tieba_mini',\n  name: '贴吧极速版',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页信息流广告',\n      activityIds: ['com.baidu.tieba.tblauncher.MainTabActivity'],\n      rules: [\n        {\n          key: 0,\n          matches: 'LinearLayout > [text=\"广告\"] + ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12905039',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '[text=\"屏蔽广告\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12904633'],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.xin.aiqicha.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.xin.aiqicha',\n  name: '爱企查',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baidu.newbridge.fast.MainFastActivity',\n          matches: '[id=\"com.baidu.xin.aiqicha:id/update_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755738',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '自动点击\"不允许\"/关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '点击不允许',\n          activityIds: 'com.baidu.newbridge.fast.MainFastActivity',\n          matches: '[id=\"com.baidu.xin.aiqicha:id/notice_dialog_cancel_iv\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/9c26bb3a-d770-429a-b211-46b97a47f5f0',\n          snapshotUrls: 'https://i.gkd.li/i/12755733',\n        },\n        {\n          key: 1,\n          name: '点击关闭',\n          activityIds: 'com.baidu.newbridge.fast.MainFastActivity',\n          matches:\n            '@[id=\"com.baidu.xin.aiqicha:id/close\"] +2 [text=\"打开消息通知\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/92a1bd1b-91c5-42a8-830b-9b721815d9a4',\n          snapshotUrls: 'https://i.gkd.li/i/12755756',\n        },\n      ],\n    },\n    // key 11 已弃用\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidu.youavideo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidu.youavideo',\n  name: '一刻相册',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          excludeActivityIds:\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTRewardVideoActivity',\n          excludeMatches: '[text=\"开启安全备份\"][visibleToUser=true]',\n          anyMatches: [\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n            '[text.length<10][text*=\"跳过\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/5185bf9d-70f7-4841-991e-55b1b6768e97',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23549481',\n            'https://i.gkd.li/i/23549490', // 无法快速查询\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/23549097',\n            'https://i.gkd.li/i/23567868',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23549504',\n            'https://i.gkd.li/i/23549553',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示-软件升级提醒',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: '.home.view.HomeActivity',\n          matches:\n            '[id=\"com.baidu.youavideo:id/tv_upgrade\"] < LinearLayout +2 [id=\"com.baidu.youavideo:id/img_close\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12597916'],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-悬浮窗广告',\n      desc: '关闭广告悬浮窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.home.view.HomeActivity',\n          matches: '[id=\"com.baidu.youavideo:id/img_operation_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12970088',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '评价提示',\n      desc: '点击下次再说',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: '.home.view.HomeActivity',\n          matches: '[id=\"com.baidu.youavideo:id/tv_next_time\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12970094',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-会员弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.vip.ui.VipPayWebDialogActivity',\n          matches:\n            '[text^=\"恭喜获得会员\"] - View[text=\"\"] > @Image[text!=null][visibleToUser=true] <<n [vid=\"fl_web_view\"]',\n          exampleUrls: 'https://e.gkd.li/c149b068-7f00-4173-9000-a41fa1603ba7',\n          snapshotUrls: 'https://i.gkd.li/i/17576805',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            '.preview.ui.search.SearchPreviewActivity',\n            '.preview.ui.hometimeline.TimelinePreviewActivity',\n            '.preview.ui.album.AlbumPreviewActivity',\n          ],\n          matches: '[vid=\"fl_ad\"] - [vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6b628b65-214f-4dc0-b0b8-805ea566464b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14133595',\n            'https://i.gkd.li/i/14217352',\n            'https://i.gkd.li/i/17580816',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/15750684',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.home.view.HomeActivity',\n          matches: '[vid=\"dialog_home_pop_close_button\"]',\n          exampleUrls: 'https://e.gkd.li/c83b5006-1b0d-478e-ab0a-d2f3f4957162',\n          snapshotUrls: 'https://i.gkd.li/i/17732139',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.ui.HomeActivity',\n          matches:\n            '[id=\"com.baidu.youavideo:id/dialog_open_guide_notification_root\"] > [id=\"com.baidu.youavideo:id/img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13413819',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-照片页底部浮窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.baidu.youavideo.home.view.HomeActivity',\n          matches:\n            '[id=\"com.baidu.youavideo:id/cl_root\"] + [id=\"com.baidu.youavideo:id/img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13711475',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"riv_banner\"] + [vid=\"iv_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13874124',\n            'https://i.gkd.li/i/15220559', // 避免误触\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baidutieba.davy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baidutieba.davy',\n  name: '贴吧一键签到大师',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-内部弹窗广告',\n      activityIds: 'com.davy.commonlibrary.utils.DialogUtil',\n      rules: [\n        {\n          matches: '[id=\"com.baidutieba.davy:id/exit\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12504289',\n        },\n        {\n          matches: '[id=\"com.baidutieba.davy:id/mimo_interstitial_close_img\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12504291',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.banjixiaoguanjia.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.banjixiaoguanjia.app',\n  name: '班级小管家',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      activityIds: 'com.banjixiaoguanjia.app.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.byted.pangle:id/tt_bu_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12904612',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '@LinearLayout > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12906196',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bankcomm.Bankcomm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bankcomm.Bankcomm',\n  name: '交通银行',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bankcomm.module.biz.home.MainActivity',\n          matches: '[vid=\"popup_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15046998',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击 暂不更新',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.bankcomm.module.biz.webcontainer.BCMHtml5Activity',\n          matches:\n            '[id = \"com.bankcomm.Bankcomm:id/tvNotNow\" && text = \"暂不更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12842484',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-网络代理提示弹窗',\n      desc: '点击[继续使用]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bankcomm.module.biz.home.MainActivity',\n          matches: '[text=\"继续使用\"]',\n          exampleUrls: 'https://e.gkd.li/b9854883-ed3c-4a55-bd8e-7af7c02d59ba',\n          snapshotUrls: 'https://i.gkd.li/i/17556284',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bankcomm.maidanba.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bankcomm.maidanba',\n  name: '买单吧',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示-好评弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.account.activity.AutoLoginGuideActivity',\n          matches: [\n            '[text=\"给好评\"][visibleToUser=true]',\n            '[vid=\"rl_close\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/18a99aed-445a-4f4d-9b41-2e51f14ecc8b',\n          snapshotUrls: 'https://i.gkd.li/i/18296891',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-网络代理提示弹窗',\n      desc: '点击[继续使用]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: '[text=\"继续使用\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/22674cc8-5a46-49a0-9654-e77c0f13823e',\n          snapshotUrls: 'https://i.gkd.li/i/19652606',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.banshenghuo.mobile.ofdm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.banshenghuo.mobile.ofdm',\n  name: 'OmoFun',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n          matches: '[vid=\"anythink_myoffer_btn_close_id\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15443189',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.banshenghuo.mobile.ofdm.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15444005',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] -n @View[index=0] > Image',\n          snapshotUrls: 'https://i.gkd.li/i/15444017',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.banshenghuo.mobile.ofdm.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[clickable=true] < ViewGroup + ViewGroup > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/8bbf31e8-598b-4021-9136-8de189fc7cf9',\n          snapshotUrls: 'https://i.gkd.li/i/16548166',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-公告弹窗',\n      desc: '点击[我知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n          matches: '[desc=\"我知道了\"]',\n          exampleUrls: 'https://e.gkd.li/327ea04c-acda-4913-a0a9-fdda9cd83dd7',\n          snapshotUrls: 'https://i.gkd.li/i/16548158',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.baseus.intelligent.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.baseus.intelligent',\n  name: '倍思',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-定位请求',\n      desc: '点击取消-点击取消',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.baseus.intelligent.view.home.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@[text=\"取消\"] + [text=\"前往设置\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13827653',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '@[text=\"取消\"] + [text=\"授权\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13827986',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bbk.appstore.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bbk.appstore',\n  name: 'vivo应用商店',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: '.ui.AppStoreTabActivity',\n          matches: ['[text*=\"通知\"]', '[text=\"取消\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13198234',\n            'https://i.gkd.li/i/13246971',\n            'https://i.gkd.li/i/13884356',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-热门应用推荐',\n      desc: '点击[跳过，进入首页]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.upgrade.UpgradeNecessaryActivity',\n          matches: '[text=\"跳过，进入首页\"]',\n          exampleUrls: 'https://e.gkd.li/eb96ca80-2e68-4f41-ac0f-3c82092034d7',\n          snapshotUrls: 'https://i.gkd.li/i/13198101',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bbk.theme.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bbk.theme',\n  name: 'i 主题',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-推广弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bbk.theme.Theme',\n          matches: '[vid=\"card_close_img\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8207ec80-6e9d-4b9e-9880-7370d826c405',\n          snapshotUrls: 'https://i.gkd.li/i/14904298',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-[添加主题卡片至桌面]弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '@[vid=\"cancel\"] + * > [text=\"智慧桌面\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/45df70c2-55bc-428a-91cf-40dff23ae2af',\n          snapshotUrls: 'https://i.gkd.li/i/14904036',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bide.haoyoukan.buhaokan.kanbukan.hiiik.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bide.haoyoukan.buhaokan.kanbukan.hiiik',\n  name: '追剧喵',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][index=parent.childCount.minus(1)] - [desc=\"了解更多\" || desc=\"暂不下载\"] <5 View < View < View < View < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/a8b9fa37-4d87-4ab0-a1f5-c09aea00a0f0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23599803',\n            'https://i.gkd.li/i/23598096',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/cd3a468f-0768-4fd6-952b-c0d5a9769486',\n          snapshotUrls: 'https://i.gkd.li/i/23598268',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bilibili.app.in.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bilibili.app.in',\n  name: 'bilibili',\n  groups: [\n    {\n      key: 5,\n      name: '评价提示-评论区满意度评价',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',\n          matches:\n            '@View[childCount=0][width<180 && height<180] - [childCount=0][text~=\"你.+评论.*氛围.+？\"] <<n [vid=\"compose_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23125454',\n            'https://i.gkd.li/i/23182150',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '评价提示-APP评分',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'tv.danmaku.bili.MainActivityV2',\n          matches: ['[text=\"鼓励一下\"]', '[text=\"下次再说\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13180746',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '通知提示-订阅感兴趣的通知',\n      desc: '点击\"暂不开启\"',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.bilibili.bplus.im.communication.HomeCommunicationActivity',\n          matches: ['[text=\"订阅感兴趣的通知\"]', '[text=\"暂不开启\"]'],\n          exampleUrls: 'https://e.gkd.li/283c2be2-80d7-43ab-976c-0896e678fc49',\n          snapshotUrls: 'https://i.gkd.li/i/18392097',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'tv.danmaku.bili.MainActivityV2',\n          matches: ['[text=\"打开推送通知\"]', '[text=\"暂不\"]'],\n          exampleUrls: 'https://e.gkd.li/e67d6d21-f09b-44b0-bf91-8b9fa0670e27',\n          snapshotUrls: 'https://i.gkd.li/i/15907493',\n        },\n        {\n          key: 1,\n          activityIds: 'com.bilibili.vip.web.VipWebActivity',\n          matches:\n            '@Image < View + [id=\"subscribeContainer\"] > [text=\"权益更新时推送通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23714120',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-自动领取会员经验',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bilibili.vip.web.VipWebActivity',\n          matches:\n            '[text^=\"专属等级加速包\"] +n @TextView[childCount=0][text=\"领取\"] <<n [vid=\"webview\"]',\n        },\n      ],\n      snapshotUrls: [\n        'https://i.gkd.li/i/22886723', // 领取前\n        'https://i.gkd.li/i/22886739', // 领取后\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-自动关闭故事模式',\n      desc: '播放视频时退出竖屏模式',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bilibili.video.story.StoryVideoActivity',\n          matches: '[vid=\"story_ctrl_router\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4bfd6131-d4be-46be-affb-73338b01f49c',\n          snapshotUrls: 'https://i.gkd.li/i/18164075',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bilibili.studio.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bilibili.studio',\n  name: '必剪',\n  groups: [\n    {\n      key: 0,\n      name: '权限提示-通知权限',\n      desc: '点击[不开启]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.bcut.homepage.widget.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: 'TextView[text=\"开启设置\"] - TextView[text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12867401', // 创作页面\n        },\n        {\n          key: 1,\n          matches: 'ImageView[id=\"com.bilibili.studio:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12908880', // 模板页面\n        },\n        {\n          key: 2,\n          matches: 'ImageView[id=\"com.bilibili.studio:id/iv_push_tips_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12908886', // 我的页面\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      desc: '勾选\"忽略\"-点击\"以后再说\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '勾选\"忽略\"',\n          matches: '[text=\"忽略此版本的更新\"][checked=false]',\n          snapshotUrls: 'https://i.gkd.li/i/13496049',\n        },\n        {\n          preKeys: [0],\n          name: '点击\"以后再说\"',\n          matches: '[id=\"com.bilibili.studio:id/update_btn_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13496049',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.binance.dev.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.binance.dev',\n  name: '币安',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.eaas.launcher.activities.main.MainActivity',\n          matches: '@[clickable=true] + [vid=\"tv_title\"][text=\"发现新版本\"]',\n          exampleUrls: 'https://e.gkd.li/3ebed425-8801-4d70-9bcf-5c9fa61890ca',\n          snapshotUrls: 'https://i.gkd.li/i/24257907',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.black.unique.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.black.unique',\n  name: '全球购骑士特权',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.black.unique.feature.home.HomeActivity',\n          matches: '@ImageView[id=\"com.black.unique:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13499502',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bluemobile.flutterbabylife.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bluemobile.flutterbabylife',\n  name: '宝宝生活记录',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          name: '字节SDK',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13632639',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bokecc.dance.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bokecc.dance',\n  name: '糖豆',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击\"以后再说\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MainActivity',\n          matches: '[text=\"以后再说\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/9156698c-76bb-4921-a39d-96a20c45260b',\n          snapshotUrls: 'https://i.gkd.li/i/14071977',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-视频播放前的广告',\n      desc: '5秒后点击关闭广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bokecc.dance.player.DancePlayActivity',\n          matches: '[text=\"关闭广告\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f70ca3e3-762c-47ba-aed8-c9e8d5955b7e',\n          snapshotUrls: 'https://i.gkd.li/i/14318204',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.bokecc.dance.activity.MainActivity',\n          matches: '[vid=\"iv_bottom\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e866b196-04f3-454a-9eb3-a766fed952ba',\n          snapshotUrls: 'https://i.gkd.li/i/14318249',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.bokecc.dance.player.DancePlayActivity',\n          matches: '[vid=\"iv_cancel\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/45eb8c79-f683-4fcd-a2c4-0c9d1ff9d998',\n          snapshotUrls: 'https://i.gkd.li/i/14318261',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',\n          exampleUrls: 'https://e.gkd.li/d3e73052-1459-4b3b-baf2-a3620226985f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18627429',\n            'https://i.gkd.li/i/18627432',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: ['[text=\"广告\"]', '[vid=\"iv_close\"]'],\n          exampleUrls: 'https://e.gkd.li/717ad9b7-dce7-4284-9360-4f9923ebacd7',\n          snapshotUrls: 'https://i.gkd.li/i/18627427',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.boohee.one.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.boohee.one',\n  name: '薄荷健康',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.boohee.library.update.UpdateDialogActivity',\n          matches:\n            '@[id=\"com.boohee.one:id/tv_ignore\"] + [id=\"com.boohee.one:id/tv_update\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12716918',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-发现页弹窗广告',\n      activityIds: 'com.sensorsdata.sf.ui.view.DialogActivity',\n      rules:\n        'LinearLayout[childCount=2] > @ImageView[id=null][clickable=true] + ImageView',\n      snapshotUrls: 'https://i.gkd.li/i/12716970',\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.account.ui.activity.MsgCategoryActivityV2',\n          matches: '[id=\"com.boohee.one:id/img_close_push\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12716950',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.buyanchuantong.buyanshufa.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.buyanchuantong.buyanshufa',\n  name: '不厌书法',\n  groups: [\n    {\n      key: 3,\n      name: '功能类-功能介绍',\n      desc: '点击跳过',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.buyanchuantong.buyanshufa.SplashActivity',\n          matches: '[text^=\"点击跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13425296',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bw30.zsch.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bw30.zsch',\n  name: '四川航空',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.bw.zsch.MainActivityTab',\n          matches: '[id=\"com.bw30.zsch:id/tv_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13068699',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bx.game.dgg.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bx.game.dgg',\n  name: '看剧',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] -2 @View > Image[childCount=0][text=\"\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15335006',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n          matches: '[vid=\"anythink_myoffer_btn_close_id\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15362931',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.bx.game.dgg.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15362927',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.bx.game.dgg.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15400143',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-[温馨提示]弹窗',\n      desc: '点击[我知道了]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.bx.game.dgg.MainActivity',\n          matches:\n            '@Button[desc=\"我知道了\"][visibleToUser=true] < View <2 View < View < View < View < View < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8a825661-5595-4577-835c-2a0b2d41bc14',\n          snapshotUrls: 'https://i.gkd.li/i/15362930',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.byd.aeri.caranywhere.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.byd.aeri.caranywhere',\n  name: '比亚迪王朝',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: [\n            '[id=\"com.byd.aeri.caranywhere:id/tv_determine\"][text=\"立即安装\"]',\n            '[id=\"com.byd.aeri.caranywhere:id/tv_cancel\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13348383',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.byfen.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.byfen.market',\n  name: '百分网游戏盒子',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.byfen.market.ui.activity.MainActivity',\n          matches: '[vid=\"idIvClose\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/35d2a562-fe30-4bff-b739-96b37dccd05c',\n          snapshotUrls: 'https://i.gkd.li/i/13801613',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击[忽略更新]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.MainActivity',\n          matches: '[text=\"忽略更新\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e92b10b8-b0f8-4dc3-95bf-172829996600',\n          snapshotUrls: 'https://i.gkd.li/i/14322280',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.byyoung.setting.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.byyoung.setting',\n  name: '爱玩机工具箱',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-忽略授权提示',\n      activityIds: 'com.byyoung.setting.Welcome.PermissionActivity',\n      rules: [\n        {\n          matches: '[id=\"com.byyoung.setting:id/tv_name\"][text*=\"忽略授权\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12829909',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.bz.yilianlife.sd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.bz.yilianlife.sd',\n  name: '深(新)度搜索',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: 'com.deep.search.MainActivity',\n          matches: [\n            '[text=\"广告\"]',\n            '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13766176',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.deep.search.SearchActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/1f7e5a9f-e1a1-4e30-9d89-6d18d3717c80',\n          snapshotUrls: 'https://i.gkd.li/i/18095241',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',\n          matches: '[id=\"ad_area\"] >2 [id=\"close_btn\"]',\n          exampleUrls: 'https://e.gkd.li/eee962a4-5a67-4bc7-bda2-8c1e3fbe04fe',\n          snapshotUrls: 'https://i.gkd.li/i/18095172',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.deep.search.SearchActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/b752c0a3-8108-4107-bc29-29d75fb88562',\n          snapshotUrls: 'https://i.gkd.li/i/18146842',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ca.fantuan.customer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ca.fantuan.customer',\n  name: 'Fantuan Delivery',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.app.mainv2.view.MainActivity',\n            '.app.orderdetail.view.OrderDetailActivity',\n            '.app.p_address.city.view.SelectCityActivity',\n            '.app.payresult_v2.view.OrderPaySuccessActivity',\n            '.app.main.view.MainActivityV2',\n          ],\n          matches: [\n            '[text*=\"开启消息通知\" || text*=\"开启系统通知\"][visibleToUser=true]',\n            '[vid=\"tv_cancel\" || vid=\"iv_close\" || vid=\"iv_notification_close\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/8dd09677-8a02-4496-8611-c37b70e981d7',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19442163',\n            'https://i.gkd.li/i/19460300',\n            'https://i.gkd.li/i/19442191',\n            'https://i.gkd.li/i/19624918',\n            'https://i.gkd.li/i/19676244',\n            'https://i.gkd.li/i/20633831',\n            'https://i.gkd.li/i/22441592',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '评价提示',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.app.mainv2.view.MainActivity',\n          matches: [\n            '[text=\"写评价\" || text=\"您对饭团外卖的评价如何\"][visibleToUser=true]',\n            '[vid=\"close_iv\" || vid=\"iv_dialog_close\"][visibleToUser=true]',\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/8bd038b0-c555-4ac5-b1c0-c31c351cd788',\n            'https://e.gkd.li/43231b54-3fd3-4c1d-9217-8721f86153ba',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/19442188',\n            'https://i.gkd.li/i/20598853',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.app.mainv2.view.MainActivity',\n          matches: [\n            '[vid=\"home_bottom_float_view\"][visibleToUser=true]',\n            '[vid=\"iv_close\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/a61401ed-245c-4942-9245-bae8fbb15abd',\n          snapshotUrls: 'https://i.gkd.li/i/19459880',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cainiao.wireless.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cainiao.wireless',\n  name: '菜鸟',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          forcedTime: 10000,\n          activityIds:\n            'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',\n          matches:\n            '[vid=\"draw_dialog_iv_close\" || vid=\"package_import_ad_dialog_iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16118156',\n            'https://i.gkd.li/i/22570634',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',\n          matches:\n            'View[childCount=4] > Image + View + Image + View[text.length>0][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13042279',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches:\n            'View[clickable=true] > @[text=\"关闭\"] + [visibleToUser=true][text=\"活动\"] <<n [vid=\"browser_fragment_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14033859',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches: '[vid=\"dialog_full_image_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13842492',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches:\n            '@[text=\"关闭\"] + [visibleToUser=true][text=\"活动\"] <<n [vid=\"browser_fragment_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14033859',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds:\n            'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',\n          matches: '[vid=\"cn_bottom_sheet_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16118155',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: '.homepage.view.activity.HomePageActivity',\n          matches:\n            '[desc=\"恭喜你获得\" || desc=\"你想买的\"] - @ImageView[id=null][text=null][clickable=true][visibleToUser=true][width<150&&height<150] <2 FrameLayout <2 FrameLayout < FrameLayout < [vid=\"fl_guide_ad_get_reward_dialog_dx_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22441306',\n            'https://i.gkd.li/i/22570632',\n          ],\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          activityIds:\n            'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',\n          matches:\n            'Image[childCount=0][width<100 && height<100] < @View[clickable=true][childCount=1] - Image[childCount=0][text=\"超时享\"] <<n [vid=\"browser_fragment_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24099845',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',\n          matches: 'View[desc=\"立即查看\"] +2 ImageView[id=null]',\n          snapshotUrls: 'https://i.gkd.li/i/12914450',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',\n          matches: '[vid=\"iv_banner_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15879126',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches:\n            'FrameLayout[childCount=8] > @FrameLayout[clickable=true][childCount=0][text=null] + ImageView[childCount=0][text=null] <<n [vid=\"layout_root\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16024305',\n            'https://i.gkd.li/i/16518502', // 避免误触\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches: '[vid=\"home_task_action_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16024305',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.homepage.view.activity.HomePageActivity',\n          matches: '[text=\"确认\"] - [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13042207',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      desc: '自动点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: '[id=\"com.cainiao.wireless:id/gg_dialog_base_close\"]',\n      snapshotUrls: 'https://i.gkd.li/i/13068573',\n    },\n    {\n      key: 6,\n      name: '评价提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: '@[text=\"取消\"] + [text=\"好评\"]',\n      snapshotUrls: [\n        'https://i.gkd.li/i/13692761',\n        'https://i.gkd.li/i/14969859',\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-询问[是否要查询包裹]弹窗',\n      desc: '点击[立即查看]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches: '@[text=\"立即查看\"] < * - * >2 [text=\"您是否要查询包裹\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/eb48e137-66c3-4777-b65e-8f4f6b3bc4ee',\n          snapshotUrls: 'https://i.gkd.li/i/14913359',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-包裹页面-自动展开更多物流信息',\n      desc: '点击[展开]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',\n          matches:\n            '@[clickable=true] > View[desc=\"展开\"] <<n LinearLayout[vid=\"layout_root\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15879126',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '其他-好友代取功能提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.cainiao.wireless.homepage.view.activity.HomePageActivity',\n          matches: ['[text^=\"好友代取\"]', '[text=\"下次再说\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/23787455',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.canghai.haoka.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.canghai.haoka',\n  name: '172号卡',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-[公安部提示]弹窗',\n      desc: '点击[我已知晓，并承诺本人使用]',\n      rules: [\n        {\n          activityIds: 'io.dcloud.PandoraEntryActivity',\n          matches: '[text=\"我已知晓，并承诺本人使用\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a2d6a74c-829c-4436-af5b-0893b6269886',\n          snapshotUrls: 'https://i.gkd.li/i/15144791',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cctv.cctv5ultimate.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cctv.cctv5ultimate',\n  name: '央视体育',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.cctv.cctv5ultimate.activity.MainActivity',\n          matches: [\n            '[text=\"广告\"]',\n            '[id=\"com.cctv.cctv5ultimate:id/iv_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13405159',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-视频暂停时的广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.cctv.cctv5ultimate.videodetail.activity.VideoDetailActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] + LinearLayout > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/26bf9fcc-9dda-4465-a4d5-3fd56a3addde',\n          snapshotUrls: 'https://i.gkd.li/i/16454650',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cctv.yangshipin.app.androidp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cctv.yangshipin.app.androidp',\n  name: '央视频',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/19859692', // 被全局规则排除\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20949002',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.tencent.videolite.android.ui.HomeActivity',\n          matches: '[vid=\"lottery_popup_view_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8ae44849-08d0-4e7f-a3e1-a277a4e22315',\n          snapshotUrls: 'https://i.gkd.li/i/16493556',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.tencent.videolite.android.business.videolive.VideoLiveActivity',\n          matches: '[vid=\"product_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/1dcd9a1c-4994-4d6f-8611-fcfbcfa184bd',\n          snapshotUrls: 'https://i.gkd.li/i/21209009',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          forcedTime: 10000,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.tencent.videolite.android.ui.HomeActivity',\n          matches: '[vid=\"iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/abb06a51-6b92-4734-8a60-d0ef87b3364d',\n          snapshotUrls: 'https://i.gkd.li/i/16742915',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tencent.videolite.android.ui.HomeActivity',\n          matches: [\n            '[text=\"给个好评\"][visibleToUser=true]',\n            '[vid=\"close_btn\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/7d8f15f0-1f71-4538-8fde-144ebd81dead',\n          snapshotUrls: 'https://i.gkd.li/i/19788008',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-底部关注弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.tencent.videolite.android.business.videolive.VideoLiveActivity',\n          matches:\n            '@[vid=\"close\"] <<n [vid=\"follow_float_container\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b4006011-8b13-431b-9af3-f4390898d12c',\n          snapshotUrls: 'https://i.gkd.li/i/21208995',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cdxzy.gjssdw.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cdxzy.gjssdw',\n  name: '公交实时定位',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/71b97b0e-053c-4338-b82a-530c4b759c1c',\n          snapshotUrls: 'https://i.gkd.li/i/20796307',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20796034', // 全局规则在此误触\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cebbank.mobile.cemb.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cebbank.mobile.cemb',\n  name: '光大银行',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"tv_skip\"]',\n          exampleUrls: 'https://e.gkd.li/81f951ce-39b0-4677-93a7-25b5a709b46d',\n          snapshotUrls: 'https://i.gkd.li/i/17615867',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.view.CustomizedDialog',\n          matches: '@[text=\"不再提示\"] +2 [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12727241',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.cebbank.mobile.cemb.ui.activity.SplashActivity',\n            'com.cebbank.mobile.cemb.ui.activity.HomeActivity',\n          ],\n          matches:\n            '[id=\"com.cebbank.mobile.cemb:id/home_advertising_iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12727248',\n            'https://i.gkd.li/i/13471080',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cf.dubaji.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cf.dubaji',\n  name: '毒霸姬',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.module.main.MainActivity',\n          matches:\n            '[id=\"com.cf.dubaji:id/dlg_action_positive\"][text=\"立即更新\"]',\n          action: 'back',\n          snapshotUrls: 'https://i.gkd.li/i/13198107',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chan.cwallpaper.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chan.cwallpaper',\n  name: '图凌',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[vid=\"activate_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14293734',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-会员回馈弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.chan.cwallpaper.module.main.MainActivity',\n          matches: '[vid=\"ivClose\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8150c450-bcf8-4e8b-8236-4c3abebbeef3',\n          snapshotUrls: 'https://i.gkd.li/i/14308433',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.changyou.app.qi.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.changyou.app.qi',\n  name: '777影视',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.changyou.app.qi.MainActivity',\n          matches: '[vid=\"ksad_auto_close_btn\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/687f8201-8b15-491e-9c51-f3af0dc00260',\n          snapshotUrls: 'https://i.gkd.li/i/14228685',\n        },\n        {\n          key: 1,\n          activityIds: 'com.changyou.app.qi.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c65e146e-4f2a-42f0-b233-4e04152d851d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14296913',\n            'https://i.gkd.li/i/14480073',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chaoxing.mobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chaoxing.mobile',\n  name: '学习通',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-提示没有网络时点击[重试/确定]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.player.course.CoursePlayerWithNoteActivity',\n          matches: [\n            '[text^=\"请在有网络时进行学习\"][visibleToUser=true]',\n            '[text=\"重试\" || text=\"确定\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/17573fa6-2143-4b41-9d61-e922117c9bc7',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23046734',\n            'https://i.gkd.li/i/23046852',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-提示非WIFI环境时点击[继续]，使用流量播放',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.player.course.CoursePlayerWithNoteActivity',\n            'com.chaoxing.fanya.aphone.ui.chapter.detail.ui.ChapterDetailActivity',\n          ],\n          matches: [\n            '[text^=\"正在使用非WiFi环境\"][visibleToUser=true]',\n            '[text=\"继续\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/d4a8ec6d-031f-4030-b111-51a2f37bd39d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23046887',\n            'https://i.gkd.li/i/23046892',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.ui.MainTabActivity',\n          matches: '[id=\"com.chaoxing.mobile:id/vNotificationItemClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13197374',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-电脑端登录自动确认',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.chaoxing.mobile.webapp.ui.WebAppViewerActivity',\n          matches:\n            'TextView[text=\"登录\"] < @View[clickable=true][desc=\"登录\"] < * - * > View[childCount=0][text=\"电脑端学习通登录确认\"] <<n [vid=\"web_view_fragment_refresh_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23280198',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chaozh.iReader.dj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chaozh.iReader.dj',\n  name: '得间免费小说',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'com.qq.e.ads.PortraitADActivity',\n            'com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT',\n          ],\n          matches:\n            '@[id*=\"ad_close\"] - LinearLayout >(5,6) [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24879639',\n            'https://i.gkd.li/i/24879692',\n            'https://i.gkd.li/i/24879766',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n          matches:\n            '@ImageView[clickable=true][childCount=0][width<50 && height<50] < FrameLayout <2 [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24880989',\n            'https://i.gkd.li/i/24881759',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: [\n            'com.zhangyue.iReader.ui.activity.ActivityContainer',\n            'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n            'com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT',\n          ],\n          matches:\n            '@[text=\"关闭\"][clickable=true] <<n [id=\"com.zhangyue.module.ad:id/mix_ad_view\" || id=\"com.zhangyue.module.ad:id/ad_splash_ad_layout\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24884414',\n            'https://i.gkd.li/i/24882622',\n            'https://i.gkd.li/i/24883183',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.qq.e.ads.PortraitADActivity',\n          matches:\n            '[text$=\"了解更多\"] <<n [id=\"android:id/content\"] + [text=\"关闭\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24909685',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: [\n            'com.zhangyue.app.shortplay.player.ui.activity.EpisodesSetPlayActivity',\n            'com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT',\n          ],\n          matches:\n            '[id=\"com.zhangyue.module.ad:id/close_ad\" || id=\"com.zhangyue.module.ad:id/ad_close_2\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24885716',\n            'https://i.gkd.li/i/24888022',\n          ],\n        },\n      ],\n    },\n\n    // 存在无法解决的误触问题\n    // {\n    //   key: 3,\n    //   name: '局部广告-书籍阅读页间断插入广告', //可点击，但是容易被骗。。。\n    //   fastQuery: true,\n    //   rules: [\n    //     {\n    //       key: 0,\n    //       name: '中间单容器单广告',\n    //       activityIds: 'com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT',\n    //       matches:\n    //         '@ImageView[id=\"com.zhangyue.module.ad:id/close\"][width<25 && height<25]',\n    //       snapshotUrls: [\n    //         'https://i.gkd.li/i/24882824',\n    //         'https://i.gkd.li/i/24882944',\n    //         'https://i.gkd.li/i/24887834', //真机测试发现钓鱼假x关闭按钮3个，一旦点击会弹出两个层叠充值会员页面\n    //         'https://i.gkd.li/i/24888200', //结果图\n    //         'https://i.gkd.li/i/24888204',\n    //       ],\n    //     },\n    //   ],\n    // },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chaozh.iReader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chaozh.iReader',\n  name: 'VIVO 电子书',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.zhangyue.iReader.read.ui.Activity_BookBrowser_TXT',\n          matches: 'Button[text=\"前往开启\"] - Button[text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627649',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n          matches: '@ImageView[clickable=true] + TextView[text=\"开启推送通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13837961',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chaozh.iReaderFree.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chaozh.iReaderFree',\n  name: '掌阅',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter', // clickNode无效\n          matches:\n            '[name!$=\"ViewGroup\"] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/84df4bd7-bdf9-4b34-bb3c-57dfe9c09454',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23046697',\n            'https://i.gkd.li/i/23186001',\n          ],\n        },\n        {\n          key: 1,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24635516',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n          matches: '[vid=\"dialog_public_top_bar_title_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16549332',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cheersedu.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cheersedu.app',\n  name: '湛庐阅读',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches: '[id=\"com.cheersedu.app:id/iv_version_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13315712',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinamobile.mcloud.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinamobile.mcloud',\n  name: '中国移动云盘',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: '.client.ui.setting.UpgradeActivity',\n          matches: ['[text=\"发现新版本\"]', '[vid=\"bn_cancel\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/14297700',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: [\n            'com.chinamobile.mcloud.client.ui.MenuActivity',\n            'com.chinamobile.mcloud.client.ui.CustomScanActivity',\n            'com.mcloud.login.ui.ConfirmLoginTvActivity',\n          ],\n          matches: '[id=\"com.chinamobile.mcloud:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13627826',\n            'https://i.gkd.li/i/14549523',\n            'https://i.gkd.li/i/14732062',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.chinamobile.mcloud.client.ui.MenuActivity',\n          matches:\n            '@Image[clickable=true] < View -3 [text=\"马上领取\"] < View < View < View < WebView < WebView < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627832',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.chinamobile.mcloud.client.ui.MenuActivity',\n          matches:\n            '[id=\"com.chinamobile.mcloud:id/iv_logo\"] + [id=\"com.chinamobile.mcloud:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627834',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-请求开启自动备份弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.client.ui.MenuActivity',\n          matches:\n            '[text=\"开启自动备份\"] +4 [text=\"暂不设置\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13627830',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.client.ui.MenuActivity',\n          matches: '[vid=\"btn_push_notice_close_dialog\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14882447',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinamworld.bocmbci.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinamworld.bocmbci',\n  name: '中国银行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.boc.bocsoft.mobile.bocmobile.buss.system.main.ui.MainActivity',\n          matches: '@[desc=\"关闭\"] > [vid=\"btn_action\"]',\n          exampleUrls: 'https://e.gkd.li/988dbaff-68b3-499a-8736-a6e5b3364ed9',\n          snapshotUrls: 'https://i.gkd.li/i/17691747',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.boc.bocsoft.mobile.bocmobile.buss.system.main.ui.MainActivity',\n          matches:\n            '@Image[clickable=true][childCount=0][visibleToUser=true][width<150 && height<150] <2 View[childCount=2] < View <4 View < View < WebView < WebView < [vid=\"webview_layout\"]',\n          exampleUrls: 'https://e.gkd.li/13b6fa95-5198-41f5-b39c-d40166a624fb',\n          snapshotUrls: 'https://i.gkd.li/i/19567854',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinamworld.main.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinamworld.main',\n  name: '中国建设银行',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: [\n            '[vid=\"ll_load\"][visibleToUser=true]',\n            '[vid=\"skip\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/69567942-f5a1-40f0-b4b6-7f8bf2348052',\n          snapshotUrls: 'https://i.gkd.li/i/20649289',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ccb.start.view.startdialog.StartDialogActivity',\n          matches: [\n            '[vid=\"tip_view_pager\"][visibleToUser=true]',\n            '[vid=\"close\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/d1f24a66-8d46-4c0d-9ca9-ac5b540a6548',\n          snapshotUrls: 'https://i.gkd.li/i/20649291',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-VPN风险弹窗',\n      desc: '点击[知晓风险，继续使用]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ccb.start.MainActivity',\n          matches: '[text=\"知晓风险，继续使用\"]',\n          exampleUrls: 'https://e.gkd.li/827582b2-d449-429c-b21d-7277c618d8bf',\n          snapshotUrls: 'https://i.gkd.li/i/18113538',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinarailway.globalticketing.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinarailway.globalticketing',\n  name: '铁路12306',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.MobileTicket.ui.activity.MainActivity',\n          matches: ['[text^=\"开启定位权限\"]', '[vid=\"img_close\"]'],\n          exampleUrls: 'https://e.gkd.li/95c8443e-babc-4d96-a3cd-00692c2acf30',\n          snapshotUrls: 'https://i.gkd.li/i/16987292',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-关闭底部公告横幅',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.MobileTicket.ui.activity.MainActivity',\n          matches: '[vid=\"iv_tip_close\"][desc^=\"关闭公告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/be03fa78-7c6f-4a05-8370-93a5de9a246e',\n          snapshotUrls: 'https://i.gkd.li/i/19497545',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinarainbow.tft.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinarainbow.tft',\n  name: '天府通',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'Image[text=\"\"] < @View +4 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13269854',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.mvp.ui.activity.QrcodeScanCompletedActivity',\n          matches:\n            '[id=\"com.byted.pangle.m:id/tt_reward_full_count_down_after_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13468554',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinatelecom.bestpayclient.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinatelecom.bestpayclient',\n  name: '翼支付',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.MainActivity',\n          matches:\n            '[id=\"com.chinatelecom.bestpayclient:id/bupdate_tv_bottom_tip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13391544',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '权益页',\n          fastQuery: true,\n          activityIds: '.ui.MainActivity',\n          matches:\n            '[name$=\"Dialog\"] >4 @[clickable=true][visibleToUser=true] - View >(1,2) [childCount=0][text=\"\"] + Image[text!=null][childCount=0] <<n [vid=\"best_h5_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13402692',\n            'https://i.gkd.li/i/24428096',\n          ],\n        },\n        {\n          key: 1,\n          name: '首页1',\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.ui.MainActivity',\n          matches:\n            '[vid=\"iv_dialog_close_one\" || vid=\"iv_sky_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13455790',\n            'https://i.gkd.li/i/15369212',\n            'https://i.gkd.li/i/18160066',\n          ],\n        },\n        {\n          key: 2,\n          name: '首页2',\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches:\n            '[text=\"甜橙信用卡\"] >2  View[childCount=2] > @Image[clickable=true][text!=null] <<n [id=\"com.chinatelecom.bestpayclient:id/h5_pc_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13626324',\n        },\n        {\n          key: 3,\n          name: '借贷页',\n          activityIds: '.ui.MainActivity',\n          fastQuery: true,\n          matches:\n            '@[clickable=true][text=\"\"][visibleToUser=true] <<n [vid=\"best_h5_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13455929',\n            'https://i.gkd.li/i/24427912',\n          ],\n        },\n        {\n          key: 4,\n          name: '信用卡页面',\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches:\n            '[id=\"com.chinatelecom.bestpayclient:id/h5_pc_container\"] >2 bc >5 View > View >3 View[childCount=3] > @[clickable=true][width<150 && height<150][visibleToUser=true] + * + View[childCount=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13696322',\n            'https://i.gkd.li/i/13696323',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24420758',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-悬浮窗小广告',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.chinatelecom.bestpayclient.ui.MainActivity',\n          matches:\n            '[id=\"com.chinatelecom.bestpayclient:id/best_h5_container\"] View[childCount=2] > @View[clickable=true] + View[clickable=true] > Image[text!=null]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/4457a342-5750-45d8-ad8e-233dd1da3de3',\n          snapshotUrls: 'https://i.gkd.li/i/13402711',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.chinatelecom.bestpayclient.ui.MainActivity',\n          matches: '[vid=\"iv_market_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/14326e73-6c7c-4659-8493-d4b196746b2a',\n          snapshotUrls: 'https://i.gkd.li/i/14456159',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-年底积分活动弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches:\n            'View[childCount=2] > @View[index=1][clickable=true][childCount=1] > Image[childCount=0] <<n [id=\"com.chinatelecom.bestpayclient:id/h5_pc_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13543032',\n            'https://i.gkd.li/i/13625037', //修改规则，避免在此误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-自动签到',\n      desc: '点击[立即打卡]-关闭弹窗',\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches: '[text^=\"已连续签到\"] +12 * >2 Image[visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8fd8a0ce-90a3-460b-9882-33fdb55cbca4',\n          snapshotUrls: 'https://i.gkd.li/i/14459643',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches: '[text=\"明日签到可得惊喜盲盒\"] <2 View + View > Image',\n          exampleUrls:\n            'https://m.gkd.li/57941037/31296e53-7d32-405b-b8ae-25855a02291d',\n          snapshotUrls: 'https://i.gkd.li/i/14459494',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinatower.tthd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinatower.tthd',\n  name: '铁塔换电',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.chinatower.fghd.customer.home.HomeNewActivity',\n          matches:\n            '[id=\"com.chinatower.tthd:id/fl_content_container\"] + [id=\"com.chinatower.tthd:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13694901',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chinaunicom.bol.cloudapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chinaunicom.bol.cloudapp',\n  name: '联通云盘',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      desc: '点击取消',\n      rules: [\n        {\n          matches: '[vid=\"update_button_cancel\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13998612',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.chunqiu.ah.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.chunqiu.ah',\n  name: 'AH视频',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '[text^=\"跳过\"][text.length<10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13264387',\n            'https://i.gkd.li/i/13264381',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '@ImageView - [text=\"|\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13264377',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/15258457',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.androlua.LuaActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13264383',\n            'https://i.gkd.li/i/13852448',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] -4 @View[visibleToUser=true] > Image[childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/15258557',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.androlua.LuaActivity',\n          matches: '[text=\"我已知晓\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13852430',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.androlua.LuaActivity',\n          matches:\n            '@FrameLayout[childCount=1] <3 FrameLayout[childCount=3] +2 * >2 [text=\"了解更多\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13635499',\n        },\n        {\n          key: 1,\n          activityIds: 'com.androlua.LuaActivity',\n          matches:\n            '@TextView[visibleToUser=true][childCount=0] - View >4 [text=\"立即下载\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13852535',\n            'https://i.gkd.li/i/15258570',\n            'https://i.gkd.li/i/15258575',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: 'com.androlua.LuaActivity',\n          matches:\n            'WebView >3 View[childCount=6] > @View[visibleToUser=true] > Image[childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/15258500',\n        },\n        {\n          key: 3,\n          activityIds: 'com.androlua.LuaActivity',\n          matches:\n            '[id=\"android:id/content\"] FrameLayout[childCount<=5] > FrameLayout[childCount=1] > ImageView[visibleToUser=true][index=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13852695',\n            'https://i.gkd.li/i/13852670',\n            'https://i.gkd.li/i/13852669',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-公告弹窗',\n      desc: '点击[不再提示]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.androlua.LuaActivity',\n          matches: '[text=\"不再提示\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13852447',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cimoc.haleydu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cimoc.haleydu',\n  name: 'Cimoc',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.haleydu.cimoc.ui.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/bc2e0453-1da8-43db-ad18-ec69d72e3c75',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14318224',\n            'https://i.gkd.li/i/14318235',\n            'https://i.gkd.li/i/14318236',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.citiccard.mobilebank.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.citiccard.mobilebank',\n  name: '动卡空间',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.citiccard.mobilebank:id/btn_skip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12684908',\n        },\n        {\n          key: 1,\n          matches: '[id=\"com.citiccard.mobilebank:id/jump\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13049013',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds:\n            'com.citiccard.mobilebank.card.activity.BillDetailHomeActivity',\n          matches: '[id=\"com.citiccard.mobilebank:id/iv_bill_home_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13049284',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          matches:\n            '[id=\"com.citiccard.mobilebank:id/ll_app_upgrade_content\"] + [id=\"com.citiccard.mobilebank:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13049283',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.closeli.ipc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.closeli.ipc',\n  name: 'Eyeplus',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.arcsoft.closeli.dhmain2.main.NewMainActivity',\n          matches: '@[vid=\"iv_close\"] - [vid=\"iv_ads\"]',\n          exampleUrls: 'https://e.gkd.li/2f4b9b69-06bb-4d7e-9607-4e1ebb57322b',\n          snapshotUrls: 'https://i.gkd.li/i/18070447',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.arcsoft.closeli.dhmain2.main.NewMainActivity',\n          matches:\n            'FrameLayout[childCount=2] > FrameLayout[childCount=3] > FrameLayout[index=2][childCount=1] > @ImageView[childCount=0][visibleToUser=true] <<n [vid=\"cv_empty_container\"]',\n          exampleUrls: 'https://e.gkd.li/798ebfdd-7966-437c-9d29-ce34749113d8',\n          snapshotUrls: 'https://i.gkd.li/i/18070476',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cloudpower.netsale.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cloudpower.netsale.activity',\n  name: '中国人保',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击下次再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.picc.aasipods.module.versionupdate.controller.VersionUpdateActivity',\n          matches: '[id=\"com.cloudpower.netsale.activity:id/tvw_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14005533',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cmbchina.ccd.pluto.cmbActivity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cmbchina.ccd.pluto.cmbActivity',\n  name: '掌上生活',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.CMBRootActivityV2',\n            '.secplugin.activity.login.fingerprint.cmbR6VH0R',\n          ],\n          matches: '[text=\"暂不更新\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12647025',\n            'https://i.gkd.li/i/12727203',\n            'https://i.gkd.li/i/13345771',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: ['com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2'],\n      rules:\n        '[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/lly_pop_shell\"] > [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/img_cf_view_close\"]',\n      snapshotUrls: [\n        'https://i.gkd.li/i/12647000',\n        'https://i.gkd.li/i/13360282',\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-右侧悬浮广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 2, // 目前只有2个界面会分别弹悬浮窗\n      resetMatch: 'app',\n      rules: [\n        {\n          name: '信用卡、我的页面',\n          activityIds: [\n            'com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2',\n            'com.cmbchina.ccd.pluto.cmbActivity.secondNav',\n          ],\n          matches:\n            '[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/img_floating_ad_cmb\"] - [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/img_close_floating_ad_cmb\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12647039', // 信用卡页面\n            'https://i.gkd.li/i/12647052', // 我的页面\n          ],\n        },\n        {\n          name: '查账页面',\n          activityIds: [\n            'com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2',\n            'com.cmbchina.ccd.pluto.cmbActivity.repaymentBillv3.billRepay',\n            'com.cmbchina.ccd.pluto.cmbActivity.repaymentBillv3.billDetail.view',\n          ],\n          matches:\n            '@[vid=\"img_cmb_drag_pendant_close\"] + [vid=\"img_cmb_drag_pendant_bg\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12647127',\n            'https://i.gkd.li/i/14209121',\n          ],\n        },\n        {\n          name: '发现页',\n          activityIds: 'com.cmbchina.ccd.pluto.cmbActivity.CMBRootActivityV2',\n          matches:\n            '[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/view_cat\"] + [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/view_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13402782',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      desc: '点击x按钮，不开启系统通知',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules:\n        '[id=\"com.cmbchina.ccd.pluto.cmbActivity:id/btn_open_notify\"] + [id=\"com.cmbchina.ccd.pluto.cmbActivity:id/iv_delete\"]',\n      snapshotUrls: ['https://i.gkd.li/i/12647068'],\n    },\n    {\n      key: 5,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: '[text=\"定位服务\"] +n * > [text=\"取消\"]',\n      snapshotUrls: 'https://i.gkd.li/i/14209071',\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cmcc.cmvideo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cmcc.cmvideo',\n  name: '咪咕视频',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-右下角小广告',\n      fastQuery: true,\n      activityIds: 'com.cmcc.cmvideo.main.application.CompatibleMainActivity',\n      rules: '[id=\"com.cmcc.cmvideo:id/iv_right_bottom_close\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12498315',\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[id=\"com.cmcc.cmvideo:id/btn_update_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13276116',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13276127',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matchRoot: true,\n          activityIds:\n            'com.cmcc.cmvideo.main.application.CompatibleMainActivity',\n          matches: '[vid=\"iv_big_close\"]',\n          exampleUrls: 'https://e.gkd.li/ece7eb54-9b9b-40e2-9402-fc350f4734bb',\n          snapshotUrls: 'https://i.gkd.li/i/16503612',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cmcc.hebao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cmcc.hebao',\n  name: '和包',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.cmcc.wallet.mocam.activity.home.WalletHomeActivity',\n          matches:\n            '@[clickable=true] > [visibleToUser=true][text=\"dialog-delete\"] <<n [vid=\"rl_parent\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/cb33c5b5-dd2e-4aa9-80d1-f7013f150305',\n          snapshotUrls: 'https://i.gkd.li/i/14567338',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cmi.jegotrip.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cmi.jegotrip',\n  name: '无忧行',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.BottomTabsActivity',\n          matches: '[id=\"com.cmi.jegotrip:id/ig_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13631904',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.cmi.jegotrip.ui.BottomTabsActivity',\n          matches: [\n            '[text=\"申请定位权限说明\"]',\n            '[id=\"com.cmi.jegotrip:id/btn_cancel\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13232766',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-权限申请弹窗',\n      desc: '点击[取消]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'pub.devrel.easypermissions.AppSettingsDialogHolderActivity',\n          matches: ['[text=\"权限申请\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/16233246',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cmri.universalapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cmri.universalapp',\n  name: '移动爱家',\n  groups: [\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.SmartMainProxyActivity',\n          matches: '[vid=\"ivCancelDlg\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17872852',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告-卡片广告',\n      fastQuery: true,\n      matchTime: 10000,\n      rules: [\n        {\n          key: 0,\n          name: '横幅式',\n          activityIds: '.SmartMainProxyActivity',\n          matches: '[vid=\"close_banner\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17872961',\n        },\n        {\n          key: 1,\n          name: '卡片信息流式',\n          activityIds: '.SmartMainProxyActivity',\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17872961',\n        },\n        {\n          key: 2,\n          name: '横幅式2',\n          activityIds: '.smarthome.control.view.CameraControlActivity',\n          matches: '[vid=\"iv_item_banner_close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25209084',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cmstop.shaoxing.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cmstop.shaoxing',\n  name: '越牛新闻',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.cmstop.shaoxing:id/roundProgressBar\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13611775',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cn21.ecloud.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cn21.ecloud',\n  name: '天翼云盘',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.cn21.ecloud.activity.MainPageActivity',\n          matches:\n            'FrameLayout > View[childCount=1] > View[childCount=1] >(1,4) View[childCount=2][desc=null] > @ImageView[clickable=true][visibleToUser=true] <<n [vid=\"content_frame\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12865488',\n            'https://i.gkd.li/i/16653930',\n            'https://i.gkd.li/i/16647901', // 防止误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MainPageActivity',\n          matches: '[id=\"com.cn21.ecloud:id/ivCancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13399488',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cnki.client.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cnki.client',\n  name: '手机知网',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.core.tramp.SplashActivity',\n          matches: '[id=\"com.cnki.client:id/update_undo\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12854857',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cnki.view.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cnki.view',\n  name: '知网文化',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.cnki.view.core.navigator.main.HomeActivity',\n            'com.cnki.view.core.tramp.main.SplashActivity',\n          ],\n          matches: '[id=\"com.cnki.view:id/update_undo\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12755689',\n            'https://i.gkd.li/i/12755700',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cnspeedtest.globalspeed.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cnspeedtest.globalspeed',\n  name: '全球网测',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      desc: '点击[取消]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ruili.android.taierspeed.main.WelcomeActivity',\n          matches: [\n            '[text*=\"开启GPS权限\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/f6668ec9-eac9-4728-9ab1-5c76ac4b1ef5',\n          snapshotUrls: 'https://i.gkd.li/i/24012859',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.codium.hydrocoach.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.codium.hydrocoach',\n  name: 'Hydro Coach',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-订阅推荐',\n      desc: '关闭每次开启时的订阅推荐',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.pro.subscription.SubscribeActivity',\n          matches: ['[text^=\"解鎖所有功能\"]', '[vid=\"close_button\"]'],\n          exampleUrls: 'https://e.gkd.li/7092a375-a9f0-4aca-b5b4-3386c71a0820',\n          snapshotUrls: 'https://i.gkd.li/i/15806266',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.codoon.gps.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.codoon.gps',\n  name: '咕咚',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '首页-弹窗广告',\n          fastQuery: true,\n          activityIds: 'com.codoon.gps.ui.SlideActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] - ImageView[clickable=true][childCount=0] < ViewGroup[childCount=2] < RelativeLayout[childCount=1] < RelativeLayout[childCount=1] < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13358586',\n        },\n        {\n          key: 1,\n          name: '运动圈-弹窗广告',\n          fastQuery: true,\n          activityIds: 'com.codoon.gps.ui.SlideActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13348663',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.coloros.gallery3d.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.coloros.gallery3d',\n  name: '相册',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.MainActivity',\n          matches: '[text=\"更新\"] -2 [text=\"取消\"]',\n          exampleUrls:\n            'https://m.gkd.li/47232102/0dae9f4b-8432-4cf4-b648-07ae17cdece2',\n          snapshotUrls: 'https://i.gkd.li/i/13554797',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-开启相册同步弹窗',\n      desc: '点击忽略',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.coloros.gallery3d.app.MainActivity',\n          matches:\n            '[text=\"开启相册自动同步，保障相册数据安全\"] + [text=\"忽略\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13637185',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.coloros.phonemanager.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.coloros.phonemanager',\n  name: 'OPPO手机管家',\n  groups: [\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '@[text=\"取消\"] < [id=\"com.coloros.phonemanager:id/buttonPanel\"] > [text=\"更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13194979',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.coloros.phonemanager.clear.ClearMainActivity',\n          matches: '[vid=\"ad_close\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/4d8b27a4-f129-479e-871b-bc6f664072ae',\n          snapshotUrls: 'https://i.gkd.li/i/14317524',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '其他-风险应用提示',\n      desc: '点击忽略',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.oplus.phonemanager.virusdetect.VirusDialogActivity',\n          matches: [\n            '[text$=\"风险应用\"][visibleToUser=true]',\n            '[text=\"忽略\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/19749344',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.coloros.weather2.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.coloros.weather2',\n  name: '天气',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      activityIds: 'com.oplus.weather.main.view.WeatherMainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"feed_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/fc08493c-dec2-4534-9f61-3627aa337b30',\n          snapshotUrls: 'https://i.gkd.li/i/14258190',\n        },\n        {\n          preKeys: [0],\n          matches: '@[clickable=true] >(1,2) [text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/9137d262-7fda-4b57-a0bc-b9fa60634a22',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16631878',\n            'https://i.gkd.li/i/20429502',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.coolapk.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.coolapk.market',\n  name: '酷安',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      excludeActivityIds: [\n        '.view.search.', // 在搜索页面禁用\n        '.view.feed.', // 在动态页面禁用\n        '.view.node.DynamicNodePageActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12503773',\n            'https://i.gkd.li/i/13247610',\n            'https://i.gkd.li/i/13264779',\n            'https://i.gkd.li/i/13826359',\n            'https://i.gkd.li/i/13827095',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '[!(id=\"com.coolapk.market:id/item_view\") && !(vid=\"card_view\")] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12917990',\n            'https://i.gkd.li/i/13211392',\n            'https://i.gkd.li/i/23097140',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/13247733',\n            'https://i.gkd.li/i/13296816',\n            'https://i.gkd.li/i/18245546',\n          ],\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      activityIds: [\n        '.view.feed.FeedDetailActivityV8',\n        '.view.main.MainActivity',\n        '.view.node.DynamicNodePageActivity',\n        '.view.base.SimpleAlphaActivity',\n        '.view.search.SuperSearchResultActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[vid=\"close_view\"] <<n [vid=\"coolapk_card_view\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19004644',\n            'https://i.gkd.li/i/19004652',\n            'https://i.gkd.li/i/19004663',\n            'https://i.gkd.li/i/19005176',\n            'https://i.gkd.li/i/20776874',\n            'https://i.gkd.li/i/21693917',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/14996359',\n            'https://i.gkd.li/i/15159886',\n            'https://i.gkd.li/i/15587119',\n            'https://i.gkd.li/i/20768037',\n          ],\n        },\n        {\n          preKeys: [0, 2], // https://github.com/AIsouler/GKD_subscription/issues/1693\n          key: 1,\n          anyMatches: [\n            '@[clickable=true] >(1,2) [text=\"不感兴趣\"][visibleToUser=true]',\n            '[text=\"不感兴趣\"][clickable=true][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/19004649',\n            'https://i.gkd.li/i/19643258',\n            'https://i.gkd.li/i/19643262',\n            'https://i.gkd.li/i/19534649',\n            'https://i.gkd.li/i/20776872',\n            'https://i.gkd.li/i/21693916',\n            'https://i.gkd.li/i/23046625',\n          ],\n        },\n        {\n          preKeys: [0, 1], // 疑似酷安旧版本bug，点击不感兴趣后会再出现一个弹窗\n          key: 2,\n          matches: '[text=\"不感兴趣\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/21036817',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          action: 'back',\n          fastQuery: true,\n          activityIds: '.view.main.MainActivity',\n          matches: '[text=\"立即更新\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15511206',\n        },\n        {\n          key: 1,\n          matchTime: 10000,\n          activityIds: '.view.main.MainActivity',\n          matches: '[text=\"立即更新\"]',\n          exampleUrls: 'https://e.gkd.li/19b5d743-3632-4c64-8e51-b55c85070512',\n          snapshotUrls: 'https://i.gkd.li/i/23096630',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.view.main.MainActivity',\n            '.view.splash.SplashActivity',\n          ],\n          matches: '[text=\"去开启\"] - [text=\"以后再说\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13296465',\n            'https://i.gkd.li/i/20708984',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-[大家还下载了]应用推荐',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.view.search.SuperSearchResultActivity',\n            '.view.node.DynamicNodePageActivity',\n          ],\n          matches: '[text=\"大家还下载了\"] + [vid=\"close_view\"]',\n          exampleUrls: 'https://e.gkd.li/0cfa8038-dc74-46c3-9e06-998965d73711',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16448265',\n            'https://i.gkd.li/i/16448385',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.view.search.SuperSearchResultActivity',\n          matches:\n            '@[desc=\"关闭\"] <<n [vid=\"item_view\"] <<n [vid=\"to_native_ad_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/efd366d9-1c66-4c35-b164-6f91a623e2f2',\n          snapshotUrls: 'https://i.gkd.li/i/19643150',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.copymanga.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.copymanga.app',\n  name: '拷貝漫畫',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      actionDelay: 400,\n      rules: [\n        {\n          key: 0,\n          name: '快手广告-1',\n          fastQuery: true,\n          activityIds: 'com.copymanga.app.MainActivity',\n          matches: [\n            '[text=\"广告\"]',\n            '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13259085',\n        },\n        {\n          key: 1,\n          name: '快手广告-2',\n          fastQuery: true,\n          activityIds: [\n            'com.copymanga.app.MainActivity',\n            'com.kwad.components.ad.interstitial',\n          ],\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13625486',\n            'https://i.gkd.li/i/12504488',\n            'https://i.gkd.li/i/13344156',\n          ],\n        },\n        {\n          key: 2,\n          name: '快手广告-3',\n          fastQuery: true,\n          activityIds: 'com.copymanga.app.MainActivity',\n          matches: [\n            'ViewGroup > [text=\"广告\"]',\n            '@ViewGroup[clickable=true] > [text=\"跳过\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13696292',\n        },\n        {\n          key: 3,\n          name: '腾讯广告-1',\n          fastQuery: true,\n          activityIds: 'com.copymanga.app.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12504520',\n            'https://i.gkd.li/i/12661019',\n            'https://i.gkd.li/i/13193877',\n            'https://i.gkd.li/i/12892156',\n            'https://i.gkd.li/i/12504501',\n            'https://i.gkd.li/i/13259082',\n          ],\n        },\n        {\n          key: 4,\n          name: '腾讯广告-2',\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13246786',\n        },\n        {\n          key: 5,\n          name: '腾讯广告-3',\n          fastQuery: true,\n          activityIds: 'com.copymanga.app.MainActivity',\n          matches:\n            '[id=\"com.copymanga.app:id/interact_ad_root\"] > [id=\"com.copymanga.app:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13521801',\n            'https://i.gkd.li/i/13332719',\n          ],\n        },\n        {\n          key: 6,\n          name: '腾讯广告-4',\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13233178',\n        },\n        {\n          key: 7,\n          name: '字节广告-1',\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@View[clickable=true] < FrameLayout[desc*=\"close\"] +4 FrameLayout[desc!=null] >2 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13372542',\n        },\n        {\n          key: 8,\n          fastQuery: true,\n          activityIds: 'com.beizi.ad.v2.activity.BeiZiNewInterstitialActivity',\n          matches:\n            '@[clickable=true] > ImageView[vid=\"beizi_interstitial_ad_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25049918',\n        },\n        {\n          key: 9,\n          name: '字节广告-3',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12925052',\n            'https://i.gkd.li/i/12925095',\n          ],\n        },\n        {\n          key: 10,\n          name: '百度广告-1',\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true] - RelativeLayout >2 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25189723',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告-1',\n          activityIds: 'com.copymanga.app.MainActivity',\n          matches:\n            '[id^=\"com.copymanga.app:id/ad_flag_source\"] - * > [id=\"com.copymanga.app:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12504525',\n        },\n        {\n          key: 1,\n          name: '快手广告-2',\n          activityIds: 'com.copymanga.app.MainActivity',\n          fastQuery: true,\n          matches:\n            '[id=\"com.copymanga.app:id/close_m_image_left_text_right_no_compliance\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761154',\n        },\n        {\n          key: 2,\n          name: '腾讯广告',\n          activityIds: 'com.copymanga.app.MainActivity',\n          matches:\n            'FrameLayout[childCount=3] > LinearLayout + FrameLayout[childCount=1] > ImageView[id=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12851671',\n            'https://i.gkd.li/i/12909005',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-关闭赞助提示',\n      activityIds: 'com.copymanga.app.MainActivity',\n      rules: [\n        {\n          matches: '@[desc=\"就这样吧\"] + [desc^=\"赞助免广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12851627',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-自动确认线路',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"进入拷贝漫画\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13233179',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '通知提示-公告弹窗',\n      matchTime: 30000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"系统提示\"] +2 [desc=\"确定\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7577dafa-9e3e-44de-bd20-c52f8a30e9c6',\n          snapshotUrls: 'https://i.gkd.li/i/13233180',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.craftvpn.craft.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.craftvpn.craft',\n  name: '小牛加速器',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '@View < View[childCount=2] < View[childCount=1] < View[childCount=1] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13914788',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.crgt.ilife.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.crgt.ilife',\n  name: '国铁吉讯',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.crgt.ilife.ui.main.MainPageView',\n          matches:\n            'FrameLayout[childCount=2] > FrameLayout[childCount=2] > FrameLayout[childCount=3] > @FrameLayout[childCount=1][visibleToUser=true] > ImageView[childCount=0][text=null] <<n [vid=\"home_banner\"]',\n          exampleUrls: 'https://e.gkd.li/3026504f-acb7-4f58-b171-ab664b2caf27',\n          snapshotUrls: 'https://i.gkd.li/i/16450332',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.crgt.ilife.ui.main.MainPageView',\n          matches:\n            '@FrameLayout[childCount=1] - LinearLayout > [text=\"查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/15dc994f-ab27-481f-afbe-f6b3f18dde11',\n          snapshotUrls: 'https://i.gkd.li/i/16485384',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.crgt.ilife.ui.main.MainPageView',\n          matches: '[vid=\"iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/43ccfd78-67d7-4dba-a25f-a2f5d62f9c40',\n          snapshotUrls: 'https://i.gkd.li/i/16581549',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.crirp.zhipu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.crirp.zhipu',\n  name: '智谱',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[text=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13725305',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-今日要闻弹窗',\n      desc: '点击不再提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ruipeng.zipu.ui.main.uniauto.UniautoHomeActivity',\n          matches: '[text=\"今日不再提示\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13725337',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cs_credit_bank.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cs_credit_bank',\n  name: '发现精彩',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mapass.example.activity.MainActivity_',\n          matches: '@[vid=\"iv_close\"] + [vid=\"iv_advert\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0d91563d-057b-47d4-9ce5-8e9a5fc2b9c9',\n          snapshotUrls: 'https://i.gkd.li/i/23141403',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.csair.mbp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.csair.mbp',\n  name: '南方航空',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.CSMBPActivity',\n          matches: '[id=\"com.csair.mbp:id/close_btn\"]',\n          exampleUrls: 'https://e.gkd.li/c6aeaf1c-e4d6-4b9c-a4bf-ee5b05d2bb30',\n          snapshotUrls: 'https://i.gkd.li/i/13197497',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-长辈版弹窗',\n      desc: '点击[暂不开启]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.csair.mbp.CSMBPActivity',\n          matches: '[text=\"开启长辈版\"] -2 [text=\"暂不开启\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8744f8c6-7f9a-4f7b-a5c7-68de1701cd7b',\n          snapshotUrls: 'https://i.gkd.li/i/14810700',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.csg.palmhall.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.csg.palmhall',\n  name: '南网在线',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '@[text=\"关闭\"] + [text=\"升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12700060',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.csg.palmhall.MainActivity',\n          matches: 'View > Image +(3) [text=\"不再显示\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12700075',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '通知提示-公告弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.csg.palmhall.MainActivity',\n          matches:\n            '[text$=\"公告\"] - View[childCount=2] > Image[childCount=0][text=\"\"]',\n          exampleUrls: 'https://e.gkd.li/0ecc2a4e-6ab9-4c00-80fe-bbd23d181be8',\n          snapshotUrls: 'https://i.gkd.li/i/16478559',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ct.client.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ct.client',\n  name: '中国电信',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15084759',\n            'https://i.gkd.li/i/15079224', // 全局规则在此页面误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '功能类-软件更新/安装后的用户引导',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ct.client.activity.UserGuideActivity',\n          matches: '[id=\"com.ct.client:id/tvSkip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12508971',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.activity.MainActivity',\n            '.activity.SplashActivity',\n            '.common.ConfirmDialogActivity',\n          ],\n          matches: 'LinearLayout > [text=\"取消升级\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12819594',\n            'https://i.gkd.li/i/13316168',\n            'https://i.gkd.li/i/13695096',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-浮窗广告',\n      desc: '会出现在首页、查询办理页面',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.ct.client.common.ConfirmDialogActivity',\n            'com.ct.client.activity.MainActivity',\n          ],\n          matches: '[vid=\"rlActivity\"] > [vid=\"close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12819676',\n            'https://i.gkd.li/i/15104434',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      // fastQuery: true, 实机测试使用无法跳过\n      activityIds: 'com.ct.client.common.webview.OnlineBusinessWebkitActivity',\n      rules: 'Image[text=\"tishi-close\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12913804',\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      desc: '自动点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      // fastQuery: true, 实机测试使用无法跳过\n      rules: [\n        {\n          key: 0,\n          matches: 'ImageView[id=\"com.ct.client:id/msg_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13043522',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.ct.client.activity.MainActivity',\n          matches: '[text^=\"开启消息通知\"] - [vid=\"ivClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15209597',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-右下角客服悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ct.client.MainActivity',\n          matches: '[id=\"com.ct.client:id/close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3a14e0ac-ce6a-411d-9f92-e50da5165119',\n          snapshotUrls: 'https://i.gkd.li/i/14133742',\n        },\n        {\n          activityIds: 'com.ct.client.activity.MainActivity',\n          matches: '[id=\"com.ct.client:id/ivFloatClose\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a97bf7a2-6e35-4922-ad0d-8677fca79f7c',\n          snapshotUrls: 'https://i.gkd.li/i/13043345',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ct.client.activity.MainActivity',\n          matches: '[vid=\"ivFloatClose\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/5dd9c9e3-f290-4b73-abdd-dc5e97a99772',\n          snapshotUrls: 'https://i.gkd.li/i/15137220',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '功能类-英文版未登录时自动一键登录',\n      desc: '仅在使用该卡移动数据时可用',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          // 点击“Login”\n          key: 0,\n          fastQuery: true,\n          activityIds: '.international.homepage.InternationalHomePageActivity',\n          matches: '[text=\"Login\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22843837', // 登录前\n            'https://i.gkd.li/i/22846926', // 登录后\n          ],\n        },\n        {\n          // 勾选同意用户协议\n          key: 1,\n          preKeys: [0],\n          fastQuery: true,\n          activityIds: '.international.login.InternationalLoginActivity',\n          matches:\n            '@CheckBox[checked=false] + [text^=\"I agree that I have read and accepted\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22843889', // 勾选前\n            'https://i.gkd.li/i/22843896', // 勾选后\n          ],\n        },\n        {\n          // 点击一键登录\n          preKeys: [1],\n          fastQuery: true,\n          activityIds: '.international.login.InternationalLoginActivity',\n          matches: '[text=\"Login with Current Number\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22843896',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ctm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ctm',\n  name: 'CTM Buddy',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.home.page.MainActivity',\n          matches: '[id=\"com.ctm:id/iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/fbaa53c3-109d-47b3-b85c-373d93e420d9',\n          snapshotUrls: 'https://i.gkd.li/i/13350575',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-底部横幅广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ctm.home.page.MainActivity',\n          matches:\n            '[id=\"com.ctm:id/iv_bottom_adv\"] + [id=\"com.ctm:id/btn_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13350612',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cto51.student.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cto51.student',\n  name: '51CTO',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.foundation.activities.MainActivity',\n          matches: '@[vid=\"iv_close\"] - [vid=\"rl_ad\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b646bfb4-0d23-483e-b03e-f827f1c4b155',\n          snapshotUrls: 'https://i.gkd.li/i/18308616',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cubic.autohome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cubic.autohome',\n  name: '汽车之家',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.cubic.autohome.MainActivity',\n          matches: '[id=\"com.cubic.autohome:id/operate_show_exit_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12836324',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          name: '领福利悬浮窗',\n          fastQuery: true,\n          activityIds: 'com.cubic.autohome.MainActivity',\n          matches:\n            '@ImageView[visibleToUser=true] < * <2 * - [id=\"android:id/tabhost\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13885414',\n        },\n        {\n          key: 1,\n          name: '直播悬浮窗',\n          activityIds: 'com.cubic.autohome.MainActivity',\n          matches:\n            '[id=\"com.autohome.main.car:id/image_live_close\" || id=\"com.autohome.main.car:id/view_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24221462',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.custom.zktimehelp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.custom.zktimehelp',\n  name: 'ZK助手',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.custom.zktimehelp.ui.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/95f17fff-486c-4cad-83c7-804b808ff800',\n          snapshotUrls: 'https://i.gkd.li/i/16670372',\n        },\n        {\n          key: 1,\n          activityIds: 'com.qq.e.ads.PortraitADActivity',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout[childCount=2] > FrameLayout[childCount=2] >2 @FrameLayout[childCount=1] > ImageView[childCount=0]',\n          exampleUrls: 'https://e.gkd.li/cacb889d-0328-4431-af23-d267fa4eb626',\n          snapshotUrls: 'https://i.gkd.li/i/16670426',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.cyl.musiccy.ou.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.cyl.musiccy.ou',\n  name: 'OMOFUN',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775918',\n            'https://i.gkd.li/i/12775926',\n            'https://i.gkd.li/i/13063151',\n            'https://i.gkd.li/i/13063246',\n            'https://i.gkd.li/i/13071599',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '[id=\"com.cyl.musiccy.ou:id/ksad_splash_root_container\"] [childCount=3] > @ImageView[clickable=true] - [text=\"|\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775919',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13063206',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      actionDelay: 300,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.cyl.musiccy.ou.MainActivity',\n            'com.ksf.yyx.MainActivity',\n          ],\n          name: '快手广告-1',\n          matches:\n            '[id$=\"ksad_container\"] >n @ViewGroup[clickable=true] > [text=\"跳过\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775922',\n            'https://i.gkd.li/i/13063222',\n          ],\n        },\n        {\n          key: 1,\n          name: '快手广告-2',\n          fastQuery: true,\n          activityIds: [\n            'com.ksf.yyx.MainActivity',\n            'com.cyl.musiccy.ou.MainActivity',\n          ],\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775923',\n            'https://i.gkd.li/i/13800051',\n          ],\n        },\n        {\n          key: 2,\n          name: 'Sigmob广告',\n          activityIds: [\n            'com.cyl.musiccy.ou.MainActivity',\n            'com.sigmob.sdk.base.common.TransparentAdActivity',\n          ],\n          matches: '[id=\"ad_area\"] [id=\"close_btn\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775925',\n            'https://i.gkd.li/i/12775924',\n            'https://i.gkd.li/i/13759345',\n          ],\n        },\n        {\n          key: 3,\n          name: '腾讯广告-1',\n          fastQuery: true,\n          activityIds: [\n            'com.ksf.yyx.MainActivity',\n            'com.android.internal.app.ResolverActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775921',\n            'https://i.gkd.li/i/12776903',\n            'https://i.gkd.li/i/12789928',\n            'https://i.gkd.li/i/13215476',\n            'https://i.gkd.li/i/13071595',\n            'https://i.gkd.li/i/13063249',\n          ],\n        },\n        {\n          key: 5,\n          name: '腾讯广告-2',\n          fastQuery: true,\n          activityIds: 'com.cyl.musiccy.ou.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13422363',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.czbank.mbank.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.czbank.mbank',\n  name: '浙商银行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mixhome.MainMarsMixAct',\n          matches: '[vid=\"ad_close_btn\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5c4f7917-8d01-419e-ac77-3d1fb27a9613',\n          snapshotUrls: 'https://i.gkd.li/i/23324592',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dailyyoga.inc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dailyyoga.inc',\n  name: '每日瑜伽',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.session.fragment.UploadSessionResultActivity',\n          matches:\n            '[visibleToUser=true] - [vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3395e6cc-6776-4c86-ac6d-4411faced360',\n          snapshotUrls: 'https://i.gkd.li/i/21563972',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/21705377',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.session.fragment.UploadSessionResultActivity',\n          matches: '[vid=\"iv_guide_share_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a4e4e4c8-401a-47d7-8765-d5f0aa915af5',\n          snapshotUrls: 'https://i.gkd.li/i/21705377',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.daimajia.gold.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.daimajia.gold',\n  name: '稀土掘金',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: [\n            '[text=\"发现新版本\"]',\n            '[id=\"com.daimajia.gold:id/iv_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13498703',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.danielstudio.app.wowtu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.danielstudio.app.wowtu',\n  name: '煎蛋',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动查看高清图片',\n      desc: '点击图片左下角[HD]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.ImageGalleryActivity',\n          matches: '[vid=\"hd_image\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ec909db9-b585-4d69-a456-aa0865cec6a7',\n          snapshotUrls: 'https://i.gkd.li/i/19643465',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.danlan.xiaolan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.danlan.xiaolan',\n  name: 'Blued极速版',\n  groups: [\n    {\n      key: 3,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      activityIds: [\n        'com.blued.android.core.ui.TerminalActivity',\n        'com.soft.blued.ui.home.HomeActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.danlan.xiaolan:id/img_close\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13421613',\n            'https://i.gkd.li/i/13421923',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@LinearLayout > [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13421622',\n            'https://i.gkd.li/i/13422170',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dataoke.union.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dataoke.union',\n  name: '大淘客联盟',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.dtk.plat_home_lib.index.activity.IndexActivity',\n            'com.dtk.plat_web_lib.X5WebViewActivity',\n          ],\n          matches: ['[text^=\"你还没有打开通知哦\"]', '[text=\"取消\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13446826',\n            'https://i.gkd.li/i/18094567',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.dtk.plat_web_lib.X5WebViewActivity',\n          matches: '[vid=\"img_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a1cfa798-0fb1-456c-9875-dd3387f5b7e0',\n          snapshotUrls: 'https://i.gkd.li/i/18094553',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.daysko.safp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.daysko.safp',\n  name: '7天澳門統考',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-谷歌广告',\n      activityIds: 'com.google.android.gms.ads.AdActivity',\n      rules: [\n        {\n          key: 1,\n          matches: 'View > [text=\"关闭\"]',\n          // 快照里可以选择 @[text=\"关闭\"] < View + View > [text=\"安装\"||text=\"打开\"]\n          // 但是实际执行选择器却无法点击, 原因未知, 需要后续排查\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642909',\n            'https://i.gkd.li/i/12643316',\n          ],\n        },\n        {\n          key: 2,\n          matches: '[id=\"adchoiceWrap\"] + [id=\"mv_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12643032',\n        },\n        {\n          key: 3,\n          name: '右上角白色圆形背景黑色x关闭按钮',\n          matches:\n            'View[clickable=false][childCount=2] > TextView[clickable=true] + View[clickable=true][childCount=1] > Button[clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12643039',\n            'https://i.gkd.li/i/12643246',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-视频广告',\n      desc: '点击跳过视频-点击关闭按钮',\n      activityIds: ['com.google.android.gms.ads.AdActivity'],\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[id=null][text=\"跳过视频\"] < View +(2) @View > Button[clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12668269',\n            'https://i.gkd.li/i/12642913',\n            'https://i.gkd.li/i/12642932',\n          ],\n        },\n        {\n          key: 3,\n          matches: [\n            'Button[id=null][clickable=true] < @View - * < View - View >(n) View[desc=\"安装\"]', // 点中间的View才会关闭广告，最后两个 View 之间的距离不确定\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642952',\n            // https://github.com/gkd-kit/subscription/pull/136#issuecomment-1723186711\n            'https://i.gkd.li/i/12668298',\n          ],\n        },\n        {\n          key: 4,\n          actionCd: 2500,\n          matches: ['[desc=\"了解详情\"] - View > [text=\"关闭\"]'],\n          snapshotUrls: ['https://i.gkd.li/i/12642983'],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-页面底部广告',\n      activityIds: 'com.daysko.safp.MainActivity',\n      rules: [\n        {\n          matches:\n            '[!(id=\"why_this_ad_btn\")] -2 View[id=\"mys-wrapper\"] + View >2 Button[clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642993',\n            'https://i.gkd.li/i/12643229',\n          ],\n        },\n        {\n          matches: 'View[desc=\"Advertisement\"] + View >(2) Button',\n          snapshotUrls: ['https://i.gkd.li/i/12643001'],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ddsy.songyao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ddsy.songyao',\n  name: '叮当快药',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-优惠卷提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ddsy.songyao.activity.SplashActivity',\n          matches:\n            '[id=\"com.ddsy.songyao:id/iv_coupon_bottom\"] + [id=\"com.ddsy.songyao:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13048720',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ddyc.lotterytool.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ddyc.lotterytool',\n  name: '彩虹多多',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.ddyc.lotterytool.module.main.MainActivity',\n      rules: [\n        {\n          matches:\n            '@ImageButton[clickable=true][childCount=0] < LinearLayout < FrameLayout < [parent=null]',\n          snapshotUrls: 'https://i.gkd.li/i/13324555',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text^=\"开启推送通知\"] +2 LinearLayout [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13325888',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.deepseek.chat.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.deepseek.chat',\n  name: 'DeepSeek',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动折叠思考过程',\n      rules: [\n        {\n          activityIds: 'com.deepseek.chat.MainActivity',\n          matches:\n            '@[clickable=true] > [text=\"正在思考\" || text^=\"已思考\"] + View[desc=\"折叠\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23982641', // 正在思考 未折叠\n            'https://i.gkd.li/i/23982613', // 已思考 未折叠\n            'https://i.gkd.li/i/23982615', // 已思考 折叠\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dep.biguo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dep.biguo',\n  name: '自考笔果题库',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.dialog',\n          matches: '@[text=\"取消\"] +2 [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12708751',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dep.biguo.dialog',\n          matches:\n            '[id=\"com.dep.biguo:id/imageView\"] + [id=\"com.dep.biguo:id/closeView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12708756',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-定位权限',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dep.biguo.mvp.ui.activity.MainActivity',\n          matches: '[text*=\"定位权限\"] +2 [text=\"拒绝\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12708770',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dewmobile.kuaiya.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dewmobile.kuaiya',\n  name: '快牙',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'com.dewmobile.kuaiya.act.MainActivity',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][visibleToUser=true] <<n [id=\"com.dewmobile.kuaiya:id/sdk_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13477048',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dfsly.bbs.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dfsly.bbs',\n  name: 'AC匿名版',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '[id=\"android:id/content\"] >7 FrameLayout[childCount=7] > LinearLayout >3 ImageView[text=null][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13330351',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.ui.NavigationActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13335135',\n            'https://i.gkd.li/i/13335316',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.ui.NavigationActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/586a67a6-27d2-4cc2-9a00-be2fc63ed63f',\n          snapshotUrls: 'https://i.gkd.li/i/13343675',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dianping.v1.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dianping.v1',\n  name: '大众点评',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-主页推荐关注弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dianping.main.guide.SplashActivity',\n          matches:\n            'FrameLayout[id=\"android:id/content\"] >2 FrameLayout > ImageView + FrameLayout[id=null][desc=\"关闭\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12727011',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '[text=\"去开启\"][clickable=true] +2 @FrameLayout[clickable=true] > ImageView',\n          action: 'clickCenter', // clickNode无响应\n          snapshotUrls: 'https://i.gkd.li/i/12727070',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-关闭[签到开红包]',\n      desc: '点击右下角悬浮图片右上角的x图标',\n      activityIds: ['com.dianping.v1.NovaMainActivity'],\n      rules:\n        '[id=\"com.dianping.v1:id/float_image\"] + [id=\"com.dianping.v1:id/close\"][clickable=true]',\n      snapshotUrls: 'https://i.gkd.li/i/12727366',\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.dianping.v1.NovaMainActivity',\n          fastQuery: true,\n          matches: '[id=\"com.dianping.v1:id/operate_cross_icon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13538340',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '分段广告-推荐页卡片广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.dianping.v1.NovaMainActivity',\n          matches:\n            '@[desc=\"reculike_delete\"][clickable=true][visibleToUser=true] +3 [childCount=2]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13759369',\n            'https://i.gkd.li/i/14332054', // 限定 +3 [childCount=2] 防止误触\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          action: 'clickCenter',\n          activityIds: 'com.dianping.v1.NovaMainActivity',\n          matches: '@[clickable=true] > [text=\"重复出现\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14238381',\n            'https://i.gkd.li/i/14269115',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.dianping.v1.NovaMainActivity',\n          matches: '[text$=\"重复出现\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/010c0314-e89b-468f-8143-691925a308a6',\n          snapshotUrls: 'https://i.gkd.li/i/14393256',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-选择地图时自动点击[更多]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.dianping.nova.picasso.DPPicassoBoxActivity',\n          matches: [\n            '[text=\"请选择地图\"][visibleToUser=true]',\n            '@[clickable=true] > [text^=\"更多\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ce751918-dab2-4670-a608-9edbcb3bdc0e',\n          snapshotUrls: 'https://i.gkd.li/i/23289239',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dianxinai.mobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dianxinai.mobile',\n  name: '点心云',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[text$=\"s\"][text.length=2]',\n          snapshotUrls: 'https://i.gkd.li/i/16115075',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.didi.live.spring.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.didi.live.spring',\n  name: '小红帽',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.qennnsad.aknkaksd.presentation.ui.MainContainerActivity',\n          matches: '[vid=\"dialog_hall_iv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/0d0a2a0a-b9de-4f30-9e25-a0e3b3c111d6',\n          snapshotUrls: 'https://i.gkd.li/i/14341955',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.diershoubing.erbing.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.diershoubing.erbing',\n  name: '二柄',\n  groups: [\n    {\n      key: 6,\n      name: '分段广告',\n      fastQuery: true,\n      activityIds: '.activity.MainReActivity',\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/921d559f-6535-4d54-9bb2-8bbc82a6f2e1',\n          snapshotUrls: 'https://i.gkd.li/i/13868396',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '@LinearLayout > [text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/e6818e93-3fab-4afa-95b9-0ba38ea7f2db',\n          snapshotUrls: 'https://i.gkd.li/i/13868401',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dlmetro.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dlmetro.app',\n  name: '大连交通e出行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bwton.metro.tabindicator.business.MainTabActivity',\n          matches: '[vid=\"iv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/78f79ab0-c224-40b8-9cae-e4a3366660db',\n          snapshotUrls: 'https://i.gkd.li/i/15369247',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dmzj.manhua.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dmzj.manhua',\n  name: '动漫之家',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dmzj.manhua.ui.LaunchInterceptorActivity',\n          matches: '[id=\"com.dmzj.manhua:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13542503',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮广告',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dmzj.manhua.ui.home.HomeTabsActivitys',\n          matches: '[id=\"com.dmzj.manhua:id/ivAdClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13542506',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dmzjsq.manhua.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dmzjsq.manhua',\n  name: '动漫之家社区',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.dmzj.manhua.ui.home.HomeTabsActivitys',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12885087',\n            'https://i.gkd.li/i/12893731',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.doc360.client.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.doc360.client',\n  name: '个人图书馆',\n  groups: [\n    {\n      key: 5,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.doc360.client.activity.ReadRoomActivity',\n          matches:\n            '@View[clickable=true] < FrameLayout[desc^=\"dislike\"] -2 FrameLayout >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13485051',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dongao.kaoqian.phone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dongao.kaoqian.phone',\n  name: '会计云课堂',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"tv_welcome_guide\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14809185',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dongqiudi.news.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dongqiudi.news',\n  name: '懂球帝',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          // 点击方式为 clickNode 时会误触广告，更改点击方式为 clickCenter https://github.com/AIsouler/GKD_subscription/issues/905\n          key: 0,\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/74db13f0-d87d-41a3-bbbb-1b075d8ae7d6',\n          snapshotUrls: 'https://i.gkd.li/i/20218520',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@View[clickable=true] - [text=\"互动广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3b636c88-23de-4e2a-86fd-2846a0f0274b',\n          snapshotUrls: 'https://i.gkd.li/i/20262129',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/940ce4e2-da5f-4a43-b319-4131a22cb1e0',\n          snapshotUrls: 'https://i.gkd.li/i/20262130',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.DownloadActivity',\n          matches: 'TextView[text*=\"新版本\"] +3 TextView[text=\"下次提醒\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12620586',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '分段广告-首页信息流广告',\n      desc: '点击卡片广告x关闭按钮-关闭反馈理由弹窗',\n      activityIds: 'com.dongqiudi.news.MainActivity',\n      fastQuery: true,\n      rules: [\n        {\n          preKeys: [1, 2],\n          name: '首页信息流广告-反馈理由',\n          matches:\n            'TextView[text=\"诱导点击\"][id=\"com.dongqiudi.news:id/text_item\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12620656',\n        },\n        {\n          key: 1,\n          matches:\n            'TextView[id=\"com.dongqiudi.news:id/ads_label\"] +(n) ImageView[id=\"com.dongqiudi.news:id/feedback_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12620654',\n        },\n        {\n          key: 2,\n          matches:\n            'TextView[id=\"com.dongqiudi.news:id/ads_title\"] +(2) RelativeLayout > ImageView[id=\"com.dongqiudi.news:id/feedback_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12620788',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.dongqiudi.news.MainActivity',\n          matches: '[id=\"com.dongqiudi.news:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13260467',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',\n          exampleUrls: 'https://e.gkd.li/87e47cae-fa83-4d25-879c-728a1519ee55',\n          snapshotUrls: 'https://i.gkd.li/i/20403710',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '全屏广告-数据页弹窗广告',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.dongqiudi.news.MainActivity',\n      rules: [\n        {\n          key: 1,\n          name: '腾讯广告SDK',\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13626900',\n        },\n        {\n          key: 2,\n          name: '快手广告磁力智投SDK',\n          fastQuery: true,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627105',\n        },\n        {\n          key: 3,\n          name: '字节广告穿山甲SDK-1',\n          matches: 'View[text=\"反馈\"] -2 @View > Image',\n          snapshotUrls: 'https://i.gkd.li/i/13627106',\n        },\n        {\n          key: 4,\n          name: '字节广告穿山甲SDK-2', //合并key3\n          matches: 'FrameLayout[desc^=\"webview-close\"] > View[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12620588',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"notification_button_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/81cea4de-9288-4ec8-97ea-7c4a9b19fd08',\n          snapshotUrls: 'https://i.gkd.li/i/19666282',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.douban.frodo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.douban.frodo',\n  name: '豆瓣',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      // actionMaximum: 2,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/15981630',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.875',\n            top: 'width * 0.17', // height可能会变化，不建议使用\n          },\n          matches:\n            '[vid=\"ad_parent\"][visibleToUser=true][width>=1200 && width!=1224]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13601755',\n            'https://i.gkd.li/i/16054268',\n            'https://i.gkd.li/i/23324118',\n            'https://i.gkd.li/i/23324139',\n            'https://i.gkd.li/i/23652259',\n            'https://i.gkd.li/i/24191638',\n            'https://i.gkd.li/i/24362806',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/23283060',\n            'https://i.gkd.li/i/23382528',\n            'https://i.gkd.li/i/23982586',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.875',\n            top: 'width * 0.137', // height可能会变化，不建议使用\n          },\n          matches:\n            '[vid=\"ad_parent\"][visibleToUser=true][width<1200 || width=1224]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13575257',\n            'https://i.gkd.li/i/13575547',\n            'https://i.gkd.li/i/18423724',\n            'https://i.gkd.li/i/23982586',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          excludeMatches: '[text=\"去绑定邮箱\"][visibleToUser=true]',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17687115',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/23283375',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.868',\n            top: 'width * 0.09', // height可能会变化，不建议使用\n          },\n          matches: '[vid=\"ad_parent\"][visibleToUser=true][width=1216]',\n          snapshotUrls: 'https://i.gkd.li/i/23283060',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.875',\n            top: 'width * 0.125',\n          },\n          matches: '[vid=\"ad_parent\"][visibleToUser=true][width=1440]',\n          snapshotUrls: 'https://i.gkd.li/i/23382528',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-信息流广告',\n      desc: '点击关闭-点击不感兴趣',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          activityIds: [\n            '.activity.SplashActivity',\n            '.subject.structure.activity.MovieActivity',\n            '.group.activity.GroupTopicActivity',\n            '.fangorns.topic.TopicsActivity',\n            '.subject.struct2.MovieActivity2',\n          ],\n          matches:\n            '[vid=\"ad_header_new\"] > [vid=\"menu_item\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18424402',\n            'https://i.gkd.li/i/18424418',\n            'https://i.gkd.li/i/18424924',\n            'https://i.gkd.li/i/19615325',\n            'https://i.gkd.li/i/23982599',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: [\n            '.group.activity.GroupDetailActivity',\n            '.group.activity.GroupTopicActivity',\n          ],\n          matches:\n            '[vid=\"ad_not_interest\" || vid=\"ad_tag\" || vid=\"group_ad_not_interest\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18424568',\n            'https://i.gkd.li/i/18424574',\n            'https://i.gkd.li/i/18424681',\n            'https://i.gkd.li/i/18424818',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18422533',\n        },\n        {\n          key: 3,\n          actionMaximum: 1,\n          activityIds: '.group.activity.GroupTopicActivity',\n          matches:\n            '@Image[childCount=0][visibleToUser=true][text=\"\"] < View[childCount=1] -2 View >2 [childCount=0][text=\"广告\"] <<n [vid=\"structure_header_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/18424747',\n        },\n        {\n          key: 4,\n          activityIds: '.group.activity.GroupTopicActivity',\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] -2 FrameLayout >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/11d3ea75-c640-4b91-942e-3bf83b2e5f5e',\n          snapshotUrls: 'https://i.gkd.li/i/19621152',\n        },\n        {\n          preKeys: [1, 2, 3, 4],\n          activityIds: [\n            '.activity.SplashActivity',\n            '.subject.structure.activity.MovieActivity',\n            '.group.activity.GroupDetailActivity',\n            '.group.activity.GroupTopicActivity',\n            '.fangorns.topic.TopicsActivity',\n          ],\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18424404',\n            'https://i.gkd.li/i/18424419',\n            'https://i.gkd.li/i/18424568',\n            'https://i.gkd.li/i/18424674',\n            'https://i.gkd.li/i/18424711',\n            'https://i.gkd.li/i/19615333',\n            'https://i.gkd.li/i/19621163',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '评价提示-关闭评分反馈弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.SplashActivity',\n          matches: [\n            '[text^=\"喜欢豆瓣吗\"][visibleToUser=true]',\n            '[text=\"下次再说\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/18424257',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.group.activity.GroupTopicActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/18424415',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.group.activity.GroupTopicActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout +2 FrameLayout >2 [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"]',\n          exampleUrls: 'https://e.gkd.li/735decb0-7f08-4c7d-8199-a38faf213f77',\n          snapshotUrls: 'https://i.gkd.li/i/18424859',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.activity.SplashActivity',\n          matches: '[vid=\"venue_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/86f2589d-87eb-4b9a-83aa-4248b905f7b2',\n          snapshotUrls: 'https://i.gkd.li/i/18717693',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.douban.frodo.subject.structure.activity.MovieActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13195565',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13328126',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/f8b1e031-3ec1-422c-9214-8350195642cd',\n          snapshotUrls: 'https://i.gkd.li/i/13328126',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.subject.structure.activity.MovieActivity',\n          matches: [\n            '[text=\"广告\"][visibleToUser=true]',\n            '[vid=\"close\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/208939d0-9d7f-4a44-8e7d-5070478c15df',\n          snapshotUrls: 'https://i.gkd.li/i/18631520',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.subject.structure.activity.MovieActivity',\n          matches: [\n            '[text=\"你发现了一枚徽章\"][visibleToUser=true]',\n            '[vid=\"confirmLayout\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ca74a922-fb47-4fc8-8111-b6a66c2465ff',\n          snapshotUrls: 'https://i.gkd.li/i/18717771',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.activity.BetaApkDialogActivity',\n            '.activity.SplashActivity',\n          ],\n          matches: [\n            '[text=\"新版试用邀请\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13228832',\n            'https://i.gkd.li/i/13659160',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '其他-标记看过的影视弹窗',\n      desc: '点击[取消]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.subject.structure.activity.MovieActivity',\n          matches: [\n            '[text=\"标记看过的影视\"][visibleToUser=true]',\n            '[vid=\"cancelLayout\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/8067419c-a902-4750-9e1e-655bfc5c7342',\n          snapshotUrls: 'https://i.gkd.li/i/18717798',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.doudoubird.weather.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.doudoubird.weather',\n  name: '最准天气',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"ad_view\"] + [vid=\"delete_icon\"]',\n          exampleUrls: 'https://e.gkd.li/2a61d3de-6117-4d85-8f4d-565f6ee00a57',\n          snapshotUrls: 'https://i.gkd.li/i/17358146',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dragon.read.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dragon.read',\n  name: '番茄免费小说',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          actionDelay: 1000, // 过早点击可能导致应用闪退\n          matches:\n            '@[desc=\"跳过广告\"][clickable=true] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e36d701f-bcee-48d5-99da-1c5301101d9e',\n          snapshotUrls: 'https://i.gkd.li/i/23282793',\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '局部广告-阅读页面广告',\n      activityIds: [\n        'com.dragon.read.ad.banner.ui',\n        'com.dragon.read.reader.ReaderActivity',\n        'com.dragon.read.reader.ui.ReaderActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] - LinearLayout >(2,3) [text=\"广告\" || text=\"立享优惠\" || text*=\"查看\" || text^=\"立即\" || text$=\"参与\"][text.length<5]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12908734',\n            'https://i.gkd.li/i/14540281',\n            'https://i.gkd.li/i/18138903',\n            'https://i.gkd.li/i/21623147',\n            'https://i.gkd.li/i/25174203',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.reader.ui.ReaderActivity',\n          matches: '[id=\"com.dragon.read:id/close_button\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3de0d5d9-0c02-4fe7-b5e8-b9fdb6688f8e',\n          snapshotUrls: 'https://i.gkd.li/i/13520314',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matches: '[text=\"关闭此条广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/cf9d0574-dc89-4f03-ba01-eb9bcc97925f',\n          snapshotUrls: 'https://i.gkd.li/i/14540281',\n        },\n        {\n          key: 4,\n          matches:\n            'HorizontalAndVerticalScrollView > FrameLayout[childCount>=13] >(7,8,9) @FrameLayout[index=2][clickable=true] > ImageView',\n          exampleUrls:\n            'https://m.gkd.li/57941037/0129e5a7-ead1-4b92-a008-708632e5a927',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14548657',\n            'https://i.gkd.li/i/14622531',\n            'https://i.gkd.li/i/14810480',\n          ],\n        },\n        {\n          key: 5,\n          name: '原著改编广告-点击[x]',\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true] +n ViewGroup[visibleToUser=true] > [text=\"原著改编\"]',\n          exampleUrls: 'https://e.gkd.li/f838939f-d42d-4bf8-9a68-59f4d4ec0d9b',\n          snapshotUrls: 'https://i.gkd.li/i/24706223',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: ['.update', '.pages.main.MainFragmentActivity'],\n          matches: '@[text=\"以后再说\"] + [text=\"优先体验\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12716477',\n            'https://i.gkd.li/i/18175292',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-首页右侧悬浮广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.dragon.read.pages.main.MainFragmentActivity',\n            'com.dragon.read.ad.openingscreenad.OpeningScreenADActivity',\n          ],\n          matches:\n            '@ImageView[clickable=true][childCount=0][index=0][visibleToUser=true] < [childCount=3] < RelativeLayout < FrameLayout <2 [id=\"android:id/content\"][childCount=3]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12716506',\n            'https://i.gkd.li/i/13318796',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          name: '电商惊喜券',\n          activityIds: 'com.dragon.read.pages.main.MainFragmentActivity',\n          fastQuery: true,\n          matches:\n            '@LynxFlattenUI[id=null][text=\"\"][clickable=true] - [text=\"去逛商城\"] -4 [text$=\"电商惊喜券\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12910159',\n        },\n        {\n          key: 1,\n          name: '爆款好物一分购',\n          fastQuery: true,\n          activityIds: 'com.dragon.read.pages.main.MainFragmentActivity',\n          matches:\n            '@ImageView[clickable=true] <2 LinearLayout[childCount=2] < [id=\"android:id/content\"][childCount=1]',\n          snapshotUrls: 'https://i.gkd.li/i/12878266',\n        },\n        {\n          key: 2,\n          name: '抽奖赢好礼',\n          fastQuery: true,\n          activityIds: 'com.dragon.read.pages.main.MainFragmentActivity',\n          matches: '@LynxFlattenUI[clickable=true] - [text=\"前往抽奖\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/77c4098a-818f-4d0f-8492-e98818d0da27',\n          snapshotUrls: 'https://i.gkd.li/i/14292475',\n        },\n        {\n          key: 3,\n          name: '签到弹窗',\n          fastQuery: true,\n          activityIds: 'com.dragon.read.pages.main.MainFragmentActivity',\n          matches:\n            '@LynxFlattenUI[clickable=true][visibleToUser=true][text=\"\"] -27 FlattenUIText[text^=\"立即签到\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/96afbb4f-afd5-4f64-948d-15fc7bb14075',\n          snapshotUrls: 'https://i.gkd.li/i/15223416',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.reader.ui.ReaderActivity',\n          matches:\n            'AwemeLynxVideoUI +n FlattenUIText[text=\"关闭\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6d33c17b-85de-4977-aa7f-b45e2a917a12',\n          snapshotUrls: 'https://i.gkd.li/i/23549149',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: 'com.dragon.read.reader.ui.ReaderActivity',\n          matches:\n            'TextView[text=\"广告\"] +2 Button[id=\"com.dragon.read:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13191156',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: 'com.dragon.read.reader.ui.ReaderActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] +5 [text=\"领取限时福利\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14430326',\n            'https://i.gkd.li/i/14969861',\n          ],\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9123',\n            top: 'width * 0.067',\n          },\n          activityIds: '.reader.ui.ReaderActivity',\n          matches:\n            'View[id=null][text=null][desc=null][childCount=0] < [id=\"com.dragon.read.awemevideo:id/fullvideo_videoview\"][childCount=1][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c29c5647-e2ee-460f-87aa-8717779645ec',\n          snapshotUrls: 'https://i.gkd.li/i/23621776',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-阅读页面关注作者弹窗',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.dragon.read.reader.ui.ReaderActivity',\n          matches: '@ImageView +2 FrameLayout >3 [text=\"关注\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13399505',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '分段广告-阅读页面广告',\n      fastQuery: true,\n      activityIds: 'com.dragon.read.reader.ui.ReaderActivity',\n      rules: [\n        {\n          /*\n           ** 目前新广告中该规则基本已无法匹配，优化匹配规则\n           ** 同时现阶段该规则与“局部广告-阅读页面广告”中的“key=5\"规则相冲突，已在其中做删除\n           ** actionCd: 因同类型广告出现“当前可点击”与“3秒后可点击”两种状态，而在“3秒后可点击”状态下\n           **           按钮未被隐藏会被规则持续匹配，因此选择此属性降低“3秒后可点击”状态下的点击频率\n           */\n          key: 0,\n          name: '点击[反馈]按钮',\n          actionCd: 3500,\n          actionDelay: 200,\n          matches:\n            '[text=\"反馈\" || desc=\"反馈\"][visibleToUser=true][name$=\"UIText\" || name$=\"ViewGroup\"]',\n          exampleUrls: [\n            'https://e.gkd.li/3837a70f-30e3-42d1-9354-696dcda598b7',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13520160',\n            'https://i.gkd.li/i/13816453',\n            'https://i.gkd.li/i/24128141',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true] < FrameLayout - LinearLayout >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/c172db67-a489-488b-a5f5-35aa9657c444',\n          snapshotUrls: 'https://i.gkd.li/i/18724040',\n        },\n        //key: 2广告多发于夜间模式\n        {\n          key: 2,\n          name: '底部横幅广告-点击[x]',\n          matches:\n            'ViewGroup[childCount>4] > @ViewGroup[childCount=1][clickable=true][focusable=true][visibleToUser=true][width<50 && height<50] +n [desc!=null]',\n          exampleUrls: 'https://e.gkd.li/ab2021a9-8e5c-4d2a-8df1-8c6aff4e38f6',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24189866',\n            'https://i.gkd.li/i/24189900',\n            'https://i.gkd.li/i/24189911',\n            'https://i.gkd.li/i/24189915',\n            'https://i.gkd.li/i/24205796',\n            'https://i.gkd.li/i/24205810',\n          ],\n        },\n        {\n          preKeys: [0, 1, 2],\n          name: '点击[不感兴趣]/[关闭此广告]',\n          matches: '[text=\"不感兴趣\" || text=\"关闭此广告\"]',\n          exampleUrls: 'https://e.gkd.li/e04bcb90-ad61-43d9-97e9-b4f6e3873320',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13520219',\n            'https://i.gkd.li/i/13674550',\n            'https://i.gkd.li/i/13816454',\n            'https://i.gkd.li/i/14913207',\n            'https://i.gkd.li/i/18724041',\n            'https://i.gkd.li/i/24128392',\n            'https://i.gkd.li/i/24189605',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '评价提示-请求好评弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.pages.main.MainFragmentActivity',\n          matches: '@ImageView[clickable=true] +3 * > [text=\"五星好评\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14395093',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击\"取消\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.widget.ConfirmDialogBuilder',\n            '.pages.main.MainFragmentActivity',\n          ],\n          matches: [\n            '[text=\"开启推送提醒\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12716592',\n            'https://i.gkd.li/i/21589667',\n          ],\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '功能类-观看广告自动领取奖励',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          actionDelay: 10000,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            '@ImageView[width<40 && height<40] <n ViewGroup <(4,5) ViewGroup < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/c3e53a6c-cc60-413d-8464-2b4a1259c038',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24689154',\n            'https://i.gkd.li/i/24688948',\n            'https://i.gkd.li/i/24689141',\n            'https://i.gkd.li/i/24689202',\n          ],\n        },\n        {\n          preKeys: [0],\n          fastQuery: true,\n          actionDelay: 500,\n          position: {\n            left: 'width * 0.5',\n            bottom: 'width * 0.3182',\n          },\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[childCount=1][width>600 && height>600] <3 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/f2859af8-7ca7-40d3-9737-7be8b0200bae',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24689140',\n            'https://i.gkd.li/i/24689143',\n            'https://i.gkd.li/i/24689393',\n          ],\n        },\n        {\n          key: 99,\n          fastQuery: true,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            '@[clickable=true][width<120 && height<120] + LinearLayout > [text=\"当前无新视频\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24689246',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '评价提示-点评此书弹窗',\n      desc: '点击[取消]',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.reader.ui.ReaderActivity',\n          matches: ['[text=\"点评此书\"]', '[text=\"取消\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/21589381',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dtdream.publictransit.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dtdream.publictransit',\n  name: '杭州公共交通',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dtchuxing.main.MainActivity',\n          matches: '[id=\"com.dtdream.publictransit:id/ifv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12830113',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dubox.drive.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dubox.drive',\n  name: 'TeraBox',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: 'TextView[id=\"com.dubox.drive:id/tv_skip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13200574',\n        },\n        {\n          key: 1,\n          matches: '@[id=\"com.dubox.drive:id/ivClose\"] - * >2 [id=\"inmobi-ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13688384',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dubox.drive.ui.MainActivity',\n          matches: 'ImageView[id=\"com.dubox.drive:id/ivClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13200577',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.permission.view.PermissionDialogActivity',\n          matches:\n            '[text=\"Authorize\"] - [id=\"com.dubox.drive:id/dialog_button_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13688406',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.duitang.main.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.duitang.main',\n  name: '堆糖',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-信息流广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.duitang.main.business.',\n            'com.duitang.main.activity.',\n          ],\n          matches: '[vid=\"adOptionEntry\" || vid=\"adClose\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14232228',\n            'https://i.gkd.li/i/14232332',\n            'https://i.gkd.li/i/14232347',\n            'https://i.gkd.li/i/14232348',\n            'https://i.gkd.li/i/14232368',\n            'https://i.gkd.li/i/14232218',\n            'https://i.gkd.li/i/14232352',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示',\n      desc: '点击[下次再说]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.business.main.NAMainActivity',\n          matches: '[vid=\"scoreDuitangCancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14273094',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-图片页弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.duitang.main.business.display.ImageActivity',\n            'com.duitang.main.business.main.NAMainActivity',\n          ],\n          matches: '[id=\"com.duitang.main:id/popUpbtnClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13997011',\n            'https://i.gkd.li/i/14332109',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.business.main.NAMainActivity',\n          matches: '@[vid=\"dialogNegative\"] +2 [text=\"打开通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14273121',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.duoduo.child.story.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.duoduo.child.story',\n  name: '儿歌多多',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.duoduo.child.story.ui.activity.PlayActivity',\n          matches: '[vid=\"iv_close_banner\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/0a4febc1-9a34-41cb-bbca-63c6723fa228',\n          snapshotUrls: 'https://i.gkd.li/i/15531352',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.duoduo.cimoc.su.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.duoduo.cimoc.su',\n  name: '速映影院',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.duoduo.cimoc.su.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13999281',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-\"我的\"页面卡片广告',\n      desc: '点击X',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.duoduo.cimoc.su.MainActivity',\n          matches:\n            '@TextView[clickable=true] <2 View[childCount=2] -2 [visibleToUser=true][text=\"广告\"] <<n [vid=\"ksad_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13999283',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      desc: '关闭视频播放页、搜索页广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.duoduo.cimoc.su.MainActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13999284',\n            'https://i.gkd.li/i/13999376',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.duokan.phone.remotecontroller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.duokan.phone.remotecontroller',\n  name: '万能遥控',\n  groups: [\n    {\n      key: 4,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.xiaomi.mitv.phone.remotecontroller.HoriWidgetMainActivityV2',\n          matches:\n            '[id=\"com.duokan.phone.remotecontroller:id/ll_permission\"] >2 [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13642080',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.xiaomi.mitv.phone.remotecontroller.HoriWidgetMainActivityV2',\n          matches: '[vid=\"image_close_banner\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bf36812a-1bf9-43dc-aca5-f351c2f8d1f6',\n          snapshotUrls: 'https://i.gkd.li/i/22451785',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.duokan.reader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.duokan.reader',\n  name: '多看',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.duokan.reader.DkMainActivity',\n          matches: '[id=\"com.duokan.reader:id/store_feed_layer_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13248773',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-小说推荐弹窗',\n      rules: [\n        {\n          key: 1,\n          name: '退出阅读时的推荐弹窗',\n          fastQuery: true,\n          activityIds: 'com.duokan.reader.DkMainActivity',\n          matches:\n            '[id=\"com.duokan.reader:id/reading_stop_read_recommend_stop\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13413412',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-小说页广告',\n      desc: '小说页面下方出现的条形广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.duokan.reader.DkMainActivity',\n          matches:\n            '@ImageView < FrameLayout[id=\"com.duokan.reader:id/reading__app_ad_view__close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13497902',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '分段广告-小说页全屏卡片广告',\n      desc: '点击关闭-点击确定按钮',\n      fastQuery: true,\n      activityIds: 'com.duokan.reader.DkMainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@TextView[id=\"com.duokan.reader:id/reading__app_ad_view__close\"][text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13498048',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches:\n            '@TextView[id=\"com.duokan.reader:id/ad__feedback_close_dialog_button\"][text=\"知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13497990',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      desc: '点击以后再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.DkMainActivity',\n          matches:\n            '[id=\"com.duokan.reader:id/general__common_dialog_view__button_frame\"] >2 [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14007573',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.duowan.kiwi.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.duowan.kiwi',\n  name: '虎牙直播',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-直播间悬浮广告',\n      activityIds: 'com.duowan.kiwi.liveroom.ChannelPage',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '[id=\"com.duowan.kiwi:id/ad_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12901045',\n            'https://i.gkd.li/i/12901044',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[id=\"com.duowan.kiwi:id/game_header_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13395604',\n            'https://i.gkd.li/i/13395606',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '[id=\"com.duowan.kiwi:id/popup_banner\"] >2 [id=\"com.duowan.kiwi:id/ui_count_down\"]',\n          snapshotUrls: ['https://i.gkd.li/i/13417245'],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matches:\n            '@ViewGroup[clickable=true][visibleToUser=true] <2 ViewGroup < FrameLayout <2 FrameLayout < [id=\"com.duowan.kiwi:id/miniapp_content_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13401266',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.homepage.Homepage',\n          matches: '@ImageView[id=\"com.duowan.kiwi:id/upgrade_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13440833',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.homepage.Homepage',\n          matches:\n            '[id=\"com.duowan.kiwi:id/animation_view\"] + [id=\"com.duowan.kiwi:id/v_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13625453',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '其他-root提示',\n      desc: '点击确认',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.homepage.Homepage',\n          matches: '[text^=\"您的设备已经被ROOT\"] + LinearLayout [text=\"确认\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13536744',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dw.btime.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dw.btime',\n  name: '亲宝宝',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.dw.btime.MainHomeTabActivity',\n          matches: '[id=\"com.dw.btime:id/iv_overlay_close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12889448',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-横幅广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.dw.btime.MainHomeTabActivity',\n          matches: '[id=\"com.dw.btime:id/old_baby_close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12889450',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.base_library.dialog.DWBaseDialog',\n          matches: '[id=\"com.dw.btime:id/iv_upgrade_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12911011',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.dz.xmbnxj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.dz.xmbnxj',\n  name: '小卖部逆袭记',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-底部卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.lynx.boot.LynxActivity',\n          matches: '[id=\"com.dz.xmbnxj:id/mix_img_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/99116490/40d3c3c9-9443-4c71-9a98-69efa38f8bfd',\n          snapshotUrls: 'https://i.gkd.li/i/13399232',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.eastmoney.android.berlin.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.eastmoney.android.berlin',\n  name: '东方财富',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.eastmoney.android.module.launcher.internal.home.HomeActivity',\n          matches: '[id=\"com.eastmoney.android.berlin:id/tv_update_next_time\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706070',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.eastmoney.android.module.launcher.internal.home.HomeActivity',\n          matches: '[vid=\"iv_single_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/286da57c-7a7f-4668-aea8-7cbff63e8499',\n          snapshotUrls: 'https://i.gkd.li/i/23281792',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.eastmoney.android.module.launcher.internal.home.HomeActivity',\n          matches:\n            '[id=\"com.eastmoney.android.berlin:id/push_on_notify_delete\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706065',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.eastmoney.android.fund.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.eastmoney.android.fund',\n  name: '天天基金',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-自选页面广告',\n      rules: [\n        {\n          activityIds:\n            'com.eastmoney.android.fund.centralis.activity.FundRootActivity',\n          matches:\n            'FrameLayout > FrameLayout > ImageView + FrameLayout[childCount=1] > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12642387',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-自选页面缩写提示信息',\n      rules: [\n        {\n          activityIds:\n            'com.eastmoney.android.fund.centralis.activity.FundRootActivity',\n          matches:\n            '[desc=\"表示场内基金的最新价和折价率\"] -(2) FrameLayout < FrameLayout + ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12642387',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.centralis.activity.FundRootActivity',\n          matches:\n            '@FrameLayout[clickable=true] - * >2 [desc=\"立即升级\"] <<n [id=\"com.eastmoney.android.fund:id/container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13546927',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.eastmoney.android.fund.centralis.activity.FundRootActivity',\n            'com.eastmoney.android.fund.activity.FundSplashActivity',\n          ],\n          matches:\n            'ImageView[childCount=0] < @FrameLayout[clickable=true][childCount=1] <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < [vid=\"container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/21743bbb-010a-410c-8ce1-57710d37722d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14149452',\n            'https://i.gkd.li/i/14332091',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '评价提示-好评弹窗',\n      desc: '点击下次再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.centralis.activity.FundRootActivity',\n          matches: '@[desc=\"下次再说\"] <<n [vid=\"container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d791a2f9-ae86-4389-8ee7-36a87f11b60d',\n          snapshotUrls: 'https://i.gkd.li/i/14179508',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ecitic.bank.mobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ecitic.bank.mobile',\n  name: '中信银行',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.MainActivity',\n          matches: '@[text=\"暂不更新\"] + [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12701217',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.ecitic.bank.mobile.ui.MainActivity',\n            'com.ecitic.bank.mobile.ui.webview.CordovaWebViewActivity',\n          ],\n          matches: '[id=\"com.ecitic.bank.mobile:id/close_product_send\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12701230',\n            'https://i.gkd.li/i/13402746',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.MainActivity',\n          matches: '@[text=\"取消\"] + [text=\"立即开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13399102',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-理财产品悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.ecitic.bank.mobile.ui.MainActivity',\n          matches:\n            '@[clickable=true] +2 [visibleToUser=true][text=\"恭喜您关注到宝藏基金\"] <<n [vid=\"cordova_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14208637',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.eco.global.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.eco.global.app',\n  name: 'ECOVACS HOME',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: 'ImageView[id=\"com.eco.global.app:id/adview_jump\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13538616',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.eg.android.AlipayGphone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.eg.android.AlipayGphone',\n  name: '支付宝',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-关闭花呗升级弹窗',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          activityIds: [\n            'com.alipay.android.msp.ui.views.MspContainerActivity',\n            'com.alipay.android.msp.ui.views.MspUniRenderActivity',\n          ],\n          matches: [\n            '[text=\"根据相关法律法规要求，请尽快完成花呗升级\"]',\n            'FrameLayout > FrameLayout  > FrameLayout > [text=\"关闭\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13183946',\n            'https://i.gkd.li/i/12826077',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text*=\"花呗服务\"]',\n            '@[clickable=true] >2 [text=\"暂不升级，继续付款\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13631362',\n            'https://i.gkd.li/i/13857535',\n          ],\n        },\n        {\n          key: 3,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '@Image[width<90] - [text=\"花呗服务升级\"] <<3 Dialog <2 View < View[index=parent.childCount.minus(1)] <n WebView <<4 [id=\"com.alipay.multiplatform.phone.xriver_integration:id/h5_pc_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25000603',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.AlipayLogin',\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity$App',\n            'com.alipay.mobile.beehive.cityselect.ui.CeilingHomeCitySelectActivity',\n          ],\n          matches: '@[desc=\"取消\"] + [text*=\"位置权限\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/caa96cc4-9943-40d8-8cb6-8c89aa60b20f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18549931',\n            'https://i.gkd.li/i/23415365',\n            'https://i.gkd.li/i/23415366',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.AlipayLogin',\n          matches:\n            '@[desc=\"关闭\"] - LinearLayout >(2,4) [text^=\"定位到\" || text^=\"开启定位权限\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c153cd53-16a1-4d77-bf99-9cac8821ccf8',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18551258',\n            'https://i.gkd.li/i/19267032',\n            'https://i.gkd.li/i/25041632',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '底部悬浮提示',\n          activityIds: [\n            'com.alipay.android.phone.messageboxapp.ui.MsgBoxTabActivity',\n            'com.eg.android.AlipayGphone.AlipayLogin',\n          ],\n          matches: [\n            '[text^=\"开启通知权限\" || text^=\"开通推送通知\"][visibleToUser=true]',\n            '[id=\"com.alipay.mobile.antui:id/closeButton\"][desc=\"关闭\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13194955',\n            'https://i.gkd.li/i/16494085',\n          ],\n        },\n        {\n          key: 1,\n          name: '消息页弹窗提示',\n          activityIds:\n            'com.alipay.mobile.rome.pushservice.integration.PushOpenGuideActivity',\n          matches: '[text=\"选择通知接收范围\"] +3 * > [text=\"暂时不用\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13669620',\n            'https://i.gkd.li/i/14944514',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示-版本更新弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.alipay.mobile.alipassapp.alkb.kb.ALPMainPage',\n            '.AlipayLogin',\n          ],\n          matches: [\n            '[text=\"立即更新\" || text=\"马上体验\"]',\n            '[text^=\"稍后\"][text.length=4]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13327095',\n            'https://i.gkd.li/i/15010554',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: [\n            'com.alipay.mobile.about.ui.AboutAlipayActivity',\n            '.AlipayLogin',\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaTransActivity$Main',\n          ],\n          matches: [\n            '[text=\"版本更新\" || text^=\"Version\"]',\n            '[id=\"com.alipay.mobile.antui:id/btn_close\" || id=\"com.alipay.mobile.accountauthbiz:id/close_dialog_button\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13490805',\n            'https://i.gkd.li/i/13580594',\n            'https://i.gkd.li/i/23236828',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: '.AlipayLogin',\n          matches:\n            '[text=\"立即升级最新版支付宝客户端\"] < LinearLayout + [id=\"com.alipay.mobile.advertisement:id/announcementview_righticon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13490797',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-小组件弹窗',\n      desc: '点击[近期不再提醒我]',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text=\"设置支付宝小组件\"]',\n            '@[clickable=true] > [text=\"关闭\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13327349',\n        },\n        {\n          key: 1,\n          activityIds: [\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          ],\n          matches: '[text^=\"去\"][text.length>2] + [text=\"近期不再提醒我\"]',\n          exampleUrls: 'https://e.gkd.li/de3df4c8-6ab4-45a0-aec5-0fbdfa75e823',\n          snapshotUrls: [\n            // 弹窗中的文字和图片每隔几秒切换\n            'https://i.gkd.li/i/16427922',\n            'https://i.gkd.li/i/22984695',\n            'https://i.gkd.li/i/22984696',\n            'https://i.gkd.li/i/24981728',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告-借呗消费信贷协议',\n      desc: '点击X',\n      rules: [\n        {\n          activityIds:\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',\n          matches:\n            '[text=\"同意协议并刷脸验证\"] < * -4 * >2 Image[visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13915022',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-支付后自动点击完成',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            'com.alipay.android.msp.ui.views.MspContainerActivity',\n            'com.alipay.android.phone.businesscommon.ucdp.nfc.activity.NResPageActivity',\n          ],\n          matches: [\n            '[text=\"支付成功\" || text=\"充值成功\" || text=\"提交成功\"]',\n            '[text=\"完成\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14008852',\n            'https://i.gkd.li/i/16328809',\n            'https://i.gkd.li/i/17503266',\n            'https://i.gkd.li/i/17686972',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.eg.android.AlipayGphone.AlipayLogin',\n          matches:\n            'RelativeLayout[childCount=2][desc=\"全屏广告\"] ImageView[desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14034152',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',\n          matches:\n            'WebView > View > View > View > View > @TextView[clickable=true][visibleToUser=true][text=\"\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',\n          exampleUrls: 'https://e.gkd.li/ebbd606a-0e21-4fc5-b0c3-49e4d87d065c',\n          snapshotUrls: 'https://i.gkd.li/i/16812751',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '@[text*=\"跳过\"] + [visibleToUser=true][text^=\"账单分期还\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',\n          exampleUrls: 'https://e.gkd.li/cc064c84-75a9-4447-b01b-9d5597515093',\n          snapshotUrls: 'https://i.gkd.li/i/18409779',\n        },\n        {\n          key: 3,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches: 'Image[text=\"关闭弹屏\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22531246',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.AlipayLogin',\n          matches:\n            '@[text=\"我知道了\"][clickable=true] -n [text^=\"用碰一下支付\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24563264',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '全屏广告-支付后的推荐弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text$=\"推荐你\"][visibleToUser=true]',\n            '@[clickable=true] > [text=\"关闭\"]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/8daecaeb-35f0-4f3a-8d5a-a19098a992d5',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14060628',\n            'https://i.gkd.li/i/14893122',\n            'https://i.gkd.li/i/15050300',\n            'https://i.gkd.li/i/20684144',\n          ],\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '分段广告-扫码乘车后出现的广告',\n      desc: '点击[展开更多]-点击[对该内容不感兴趣]',\n      fastQuery: true,\n      activityIds:\n        'com.alipay.android.phone.wallet.aptrip.ui.activity.result.ResultPageActivityV2',\n      rules: [\n        {\n          key: 0,\n          name: '点击[展开更多]',\n          matches: '@[desc=\"展开更多选项\"] - * >2 [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d7c12df8-a92e-45be-a462-bef23ca9b5fc',\n          snapshotUrls: 'https://i.gkd.li/i/14546044',\n        },\n        {\n          key: 1,\n          preKeys: [0],\n          name: '点击[对该内容不感兴趣]',\n          matches: '@RelativeLayout[clickable=true] >2 [text$=\"内容不感兴趣\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7008e1da-738c-4790-9f12-6a5155d42c47',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14546047',\n            'https://i.gkd.li/i/15209602',\n          ],\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '全屏广告-关闭免密支付广告',\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches:\n            '@[checked=true] < FrameLayout - [text*=\"免密\"][text$=\"支付\"]',\n          exampleUrls: 'https://e.gkd.li/7c789099-9b6f-40a2-bc3b-c73b30891cf0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14630824', // 关闭前\n            'https://i.gkd.li/i/14630825', // 关闭后\n            'https://i.gkd.li/i/17107841',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text^=\"开通\"][text$=\"免密支付\"][visibleToUser=true]',\n            '@[clickable=true] > [text=\"关闭\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/c8388cd5-a97f-4683-9ef1-2caa0a24de91',\n          snapshotUrls: 'https://i.gkd.li/i/19449399',\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '分段广告-服务消息页面卡片广告',\n      desc: '点击关闭-不感兴趣',\n      fastQuery: true,\n      activityIds: [\n        'com.alipay.android.phone.messageboxapp.ui.MsgBoxTabActivity',\n        'com.alipay.android.phone.msgboxapp.ui.activity.MBoxTabPageActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '@[clickable=true] > [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c3e08729-6d97-4a87-bfc3-1e38dd95c384',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14787644',\n            'https://i.gkd.li/i/23935865',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@[clickable=true] >2 [text=\"不感兴趣\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/64c8c27d-23de-43b1-a87b-e2107b644eb1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14787585',\n            'https://i.gkd.li/i/23935930',\n          ],\n        },\n      ],\n    },\n    {\n      key: 21,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matchRoot: true,\n          forcedTime: 10000,\n          activityIds: [\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          ],\n          matches:\n            'WebView[text=\"基金\"] >(2,3) View[childCount=3] > @TextView[clickable=true][visibleToUser=true][text=\"\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/5df9b6fb-7455-492c-a726-fb6a42266a02',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14907533',\n            'https://i.gkd.li/i/15144834',\n            'https://i.gkd.li/i/15220394',\n            'https://i.gkd.li/i/15231403', // 避免误触\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            'View[childCount=3] >4 View[childCount=6] > @TextView[index=2][clickable=true][visibleToUser=true] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2d714755-efe9-4c63-8187-7f9b7a5a199c',\n          snapshotUrls: 'https://i.gkd.li/i/15144844',\n        },\n        {\n          key: 2,\n          name: '余额宝广告',\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches: '@TextView[width<50 && height<50] -n [text=\"去看看\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23054580',\n        },\n        {\n          key: 3,\n          name: '余额宝转出-询问转出原因',\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '@TextView[text=\"15天内不再询问\"][clickable=true] -n [text$=\"转出原因\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24229300',\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '其他-蚂蚁理财社区-[加入同路人]弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverTransActivity$Main',\n          matches:\n            '@TextView[clickable=true][text=\"\"] < * > [visibleToUser=true][text=\"立即加入\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_trans_web_content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e6332999-1c2b-49f0-84e1-780424a5cf2a',\n          snapshotUrls: 'https://i.gkd.li/i/15289022',\n        },\n      ],\n    },\n    {\n      key: 23,\n      name: '全屏广告-[银行卡还款服务升级]弹窗',\n      desc: '点击[放弃升级，直接付款]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches: '@[clickable=true] >2 [text=\"放弃升级，直接付款\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1b788a34-68f6-43c0-8be4-e13cb8221852',\n          snapshotUrls: 'https://i.gkd.li/i/16106615',\n        },\n      ],\n    },\n    {\n      key: 24,\n      name: '开屏广告-小程序开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity$XRiverLite1',\n          matches:\n            '@View[id=null][text=null][childCount=0][visibleToUser=true] < ViewGroup[id=null][text=null][childCount=1][index=parent.childCount.minus(1)] <7 ViewGroup <2 ViewGroup < ViewGroup < LinearLayout < RelativeLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/a243e31f-f1b5-4689-8d1a-c53250be651e',\n          snapshotUrls: 'https://i.gkd.li/i/17141999',\n        },\n      ],\n    },\n    {\n      key: 25,\n      name: '功能类-自动授权登录',\n      rules: [\n        {\n          fastQuery: true,\n          actionMaximum: 1,\n          action: 'clickCenter', // clickNode可能无效\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '[text=\"支付宝授权\"] >3 @[childCount=0][text=\"同意\"] <<n [id=\"com.alipay.mobile.nebula:id/h5_pc_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/17376764',\n        },\n      ],\n    },\n    {\n      key: 26,\n      name: '局部广告-直播悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.8893',\n            top: 'width * 0.1230',\n          },\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '@[id=\"com.alipay.mobile.beevideo:id/fl_bee_player_view_container\"][childCount=2] > [id=\"com.alipay.mobile.beevideo:id/rl_player_poster\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3698e238-f39b-47ce-b0df-e2e47c15b400',\n          snapshotUrls: 'https://i.gkd.li/i/21467483',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/23763580',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '@TextView[clickable=true][width<110 && height<110] +n [text=\"产品动态\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24548034',\n        },\n      ],\n    },\n    {\n      key: 27,\n      name: '功能类-余额宝转出自动勾选[短期不再提示]',\n      actionMaximum: 1,\n      resetMatch: 'activity',\n      rules: [\n        {\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches: [\n            '[text^=\"该笔为你快速转出\"]',\n            '@CheckBox + [text$=\"不再提示\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/22798330', // 勾选前\n            'https://i.gkd.li/i/22798432', // 勾选后\n            'https://i.gkd.li/i/24230171', // 本月\n          ],\n        },\n      ],\n    },\n    {\n      key: 28,\n      name: '功能类-自动领取会员积分',\n      desc: '点击[全部领取]',\n      rules: [\n        {\n          activityIds:\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n          matches:\n            '@[text*=\"领取\"] < [childCount=1] <n View <<2 * - * >2 [text=\"我的积分\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22951439',\n            'https://i.gkd.li/i/22960401',\n            'https://i.gkd.li/i/23455621',\n            'https://i.gkd.li/i/23577538',\n          ],\n        },\n      ],\n    },\n    {\n      key: 29,\n      name: '功能类-无法访问时点击[返回]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverActivity',\n            'com.alipay.mobile.nebulax.xriver.activity.XRiverTransActivity$Main',\n            '.AlipayLogin',\n            'com.alipay.android.phone.wallet.blessingcard_receive.biz.activity.ReceiveDialogActivity',\n          ],\n          matches: [\n            '[text=\"访问被拒绝\" || text=\"人气太旺啦，请稍后再试\"][visibleToUser=true]',\n            '[id=\"com.alipay.mobile.antui:id/back_button\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/c1ddb8bf-084b-4109-b777-96c02858d266',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23046994',\n            'https://i.gkd.li/i/23096790',\n            'https://i.gkd.li/i/23549719',\n            'https://i.gkd.li/i/24183318',\n            'https://i.gkd.li/i/25199767',\n          ],\n        },\n      ],\n    },\n    {\n      key: 30,\n      name: '其他-滑动验证时返回',\n      rules: [\n        {\n          fastQuery: true,\n          action: 'back',\n          activityIds:\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaTransActivity$Main',\n          matches:\n            '[childCount=0][text=\"为保障您的正常访问请进行验证\"] <<n [id=\"com.alipay.multiplatform.phone.xriver_integration:id/h5_trans_progress_rl\"]',\n          exampleUrls: 'https://e.gkd.li/f2571f51-3a8c-4e47-a7c5-3363375c1b78',\n          snapshotUrls: 'https://i.gkd.li/i/23158302',\n        },\n      ],\n    },\n    {\n      key: 31,\n      name: '其他-开通刷脸支付弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text=\"开通刷脸支付\"]',\n            '@[clickable=true] > [text=\"关闭\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23455533',\n        },\n      ],\n    },\n    {\n      key: 32,\n      name: '功能类-确认清理已选中的缓存',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',\n          matches: [\n            '[text=\"是否确认清理已选中的缓存\"][visibleToUser=true]',\n            '[text=\"确定\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/4dfc8429-e633-4cab-8f0e-7cf1f86f98ce',\n          snapshotUrls: 'https://i.gkd.li/i/23619464',\n        },\n      ],\n    },\n    {\n      key: 33,\n      name: '青少年模式',\n      rules: [\n        {\n          key: 0,\n          name: '底部悬浮卡片-启用未成年人保护模式\"',\n          fastQuery: true,\n          activityIds: '.AlipayLogin',\n          matches: [\n            '@[id=\"com.alipay.android.phone.wallet.manufacturebiz:id/teenager_cancel\"] - RelativeLayout[childCount=4] > [text=\"启用未成年人保护模式\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24992663',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.enflick.android.TextNow.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.enflick.android.TextNow',\n  name: 'TextNow',\n  groups: [\n    {\n      key: 1,\n      name: '其他-设为默认应用提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.activities.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[id=\"com.enflick.android.TextNow:id/btn_dismiss\"][text=\"Not Now\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13630460',\n        },\n        {\n          preKeys: [0],\n          matches: '[id=\"android:id/button2\"][text=\"SKIP\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13630463',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知/链接蓝牙附件设备',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.enflick.android.TextNow.activities.MainActivity',\n          matches:\n            '@ImageView[clickable=true] <2 [id=\"com.enflick.android.TextNow:id/calling_banner\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13657279',\n            'https://i.gkd.li/i/13657280',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.erksd.qdmk.yxml.sousou.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.erksd.qdmk.yxml.sousou',\n  name: '新大师兄影视',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'cn.haorui.sdk.activity.HRNativeInterstitialActivity',\n          matches:\n            '[vid=\"activity_sdk_interstitial_cacel\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8f712571-be10-4d59-afa4-6957492eb25d',\n          snapshotUrls: 'https://i.gkd.li/i/23435915',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',\n          matches: '[id=\"ad_area\"] > [id=\"close_btn\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/92bb7cc8-c5c2-4ccf-8f1d-35bcc0e30f9e',\n          snapshotUrls: 'https://i.gkd.li/i/23435936',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.estrongs.android.pop.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.estrongs.android.pop',\n  name: 'ES文件浏览器',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.fighter.loader.view.InteractTemplateAdDialog',\n          matches: '[id=\"com.estrongs.android.pop:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12509667',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.estrongs.android.pop.view.FileExplorerActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12509669',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            '.app.openscreenad.HomeBackSplashActivity',\n            '.app.PopVideoPlayer',\n            '.view.FileExplorerActivity',\n          ],\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3632e624-28bf-45fd-bb52-a7ee9a644b7a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18072076',\n            'https://i.gkd.li/i/18072078',\n            'https://i.gkd.li/i/24684475',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告',\n      fastQuery: true,\n      activityIds: 'com.estrongs.android.pop.view.FileExplorerActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'ImageView - LinearLayout >2 ImageView[id=\"com.estrongs.android.pop:id/close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12674919',\n        },\n        {\n          key: 1,\n          matches:\n            '@[id=\"com.estrongs.android.pop:id/close\"] + [id=\"com.estrongs.android.pop:id/ad_flag_source\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12818281',\n        },\n        {\n          key: 2,\n          matches: '[vid=\"close_b_t_a_i_b_no_compliance\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13842299',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.etalien.booster.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.etalien.booster',\n  name: '外星人加速器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          position: {\n            left: 'width * 0.9037',\n            top: 'width * 0.2976',\n          },\n          activityIds: 'com.etalien.booster.mobile.MainActivity',\n          matches:\n            'View[childCount=3] > @View[childCount=1] >2 FrameLayout[childCount=4]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/33c6f9e3-25d7-4a5c-868a-35726ea9554e',\n          snapshotUrls: 'https://i.gkd.li/i/15142013',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.eusoft.ting.en.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.eusoft.ting.en',\n  name: '每日英语听力',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-优惠券弹窗',\n      desc: '点击[暂不需要]',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.eusoft.ting.ui.v2.TabActivityV2',\n          matches: '[text=\"我的优惠券\"] +2 * > [text=\"暂不需要\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/87566d74-abe0-46b6-a376-d1231c6a025a',\n          snapshotUrls: 'https://i.gkd.li/i/14583029',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.administrator.searchpicturetool.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.administrator.searchpicturetool',\n  name: '搜图神器',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '@[text=\"取消\"] + [text=\"立即升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13989147',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.app',\n  name: 'JMComic3',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '关闭选择线路后的全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'clickCenter', // clickNode 无响应\n          activityIds: '.MainActivity',\n          matches: '@Button[clickable=true] - [text^=\"看完等待\"]',\n          exampleUrls: 'https://e.gkd.li/df4c585e-acd7-49b5-af76-e53175ffb42c',\n          snapshotUrls: 'https://i.gkd.li/i/21399047',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.maintenancemaster.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.maintenancemaster',\n  name: '维护大师',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '[id=\"com.example.maintenancemaster:id/advertisement_countdown_ccd\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12903877',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.ourom.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.ourom',\n  name: '多系统工具箱',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13625406',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.pptv.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.pptv',\n  name: '人人视频',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/13669401',\n        },\n        {\n          key: 1,\n          matches: '[id=\"com.example.pptv:id/view_count_shake\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761160',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.raylink_flutter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.raylink_flutter',\n  name: 'RayLink',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"立即升级\"] + [desc=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13659530',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-退出软件时点击\"退出程序\"',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.remote.cn.MainActivity',\n          matches: '[text=\"退出程序\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14047538',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.remote.cn.MainActivity',\n          matches:\n            '@Button[desc=\"退出程序\"] <4 View < View < View < View < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24852663',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-首页反诈骗提示',\n      rules: [\n        {\n          activityIds: 'com.remote.cn.MainActivity',\n          matches:\n            '[desc=\"允许远程本设备\"] +2 View[childCount=1][index=parent.childCount.minus(1)] > ImageView[clickable=true][width<80 && height<80]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24853050',\n            'https://i.gkd.li/i/24995320',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.robortx.clousx6F.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.robortx.clousx6F',\n  name: 'Clousx6',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '@[vid=\"iv_close\"] + * >2 [text=\"上一条\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a59e4c30-29e3-4d7e-9c05-f7e844ff6ac3',\n          snapshotUrls: 'https://i.gkd.li/i/14571096',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.servyouappzhuhai.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.servyouappzhuhai',\n  name: '广东税务',\n  groups: [\n    {\n      key: 0,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'cn.com.servyou.servyouzhuhai.activity.main.imps.MainActivity',\n          matches: '[id=\"com.example.servyouappzhuhai:id/btn_dialog_negtive\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13440721',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.youxyouy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.youxyouy',\n  name: '有鱼生活',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ddeb0c34-6a3d-407d-b600-96d21dd1f77b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20637763',\n            'https://i.gkd.li/i/20637764',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.example.yr.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.example.yr',\n  name: '剧兔',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/be778e3c-e2fd-4223-842d-9cbbc0fb0bbb',\n          snapshotUrls: 'https://i.gkd.li/i/16115831',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/3c5ff634-fe35-4ceb-8e67-565ab3367313',\n          snapshotUrls: 'https://i.gkd.li/i/16115830',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.excean.gspace.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.excean.gspace',\n  name: 'OurPlay',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      ignoreGlobalGroupMatch: true,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@View[clickable=true][childCount=0] +2 LinearLayout >3 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8bad82e1-d00c-4d39-978c-513980b94962',\n          snapshotUrls: 'https://i.gkd.li/i/24539921',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      forcedTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.excelliance.kxqp.splash.SplashActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13302890',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.excelliance.kxqp.splash.SplashActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13447122',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            'com.excelliance.kxqp.gs.main.MainActivity',\n            'com.smartdigimkt.sdk.basead.ui.ATPortraitTranslucentActivity',\n            'com.anythink.core.common.inner.ui.ATPortraitTranslucentActivity',\n          ],\n          matches:\n            '[vid=\"close_render_ad\" || vid=\"sdm_myoffer_btn_close_id\" || vid=\"anythink_myoffer_btn_close_id\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15284762',\n            'https://i.gkd.li/i/24611979',\n            'https://i.gkd.li/i/25187840',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.excelliance.kxqp.gs.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/bcba68e4-31a9-4693-b348-3f7b62fe8d3a',\n          snapshotUrls: 'https://i.gkd.li/i/14862348',\n        },\n        {\n          key: 4,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<60 && height<60] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/48247609-a895-494d-9e3a-4575e809fe55',\n          snapshotUrls: 'https://i.gkd.li/i/24464957',\n        },\n        {\n          key: 6,\n          activityIds:\n            'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',\n          matches:\n            '@TextView[text=\"\"][width<90 && height<90] < View[childCount=1] - View > [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25202925',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.excean.na.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.excean.na',\n  name: '99手游加速器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.excelliance.kxqp.ui.activity.GameLaunchActivity',\n          matches: '[id=\"com.excean.na:id/iv_close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13931051',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.excelliance.kxqp.ui.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13930990',\n            'https://i.gkd.li/i/14001254',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'Image < @View +5 * > [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14855686',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.facebook.katana.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.facebook.katana',\n  name: 'Facebook',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击[查看翻译]',\n      activityIds: [\n        '.immersiveactivity.ImmersiveActivity',\n        '.activity.FbMainTabActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '@ViewGroup[clickable=true] > [visibleToUser=true][text=\"查看翻译\"] <<n [id=\"android:id/list\"]',\n          exampleUrls: 'https://e.gkd.li/8801f1f5-ddcb-45b2-9f19-c82e9d1271f1',\n          snapshotUrls: 'https://i.gkd.li/i/21955231',\n        },\n        {\n          key: 1,\n          matchRoot: true,\n          actionCd: 300,\n          matches: '[text=\"查看翻译\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a111f9dc-8604-45f5-ba0c-22606890c338',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24712867',\n            'https://i.gkd.li/i/24717051',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.facetech.konking.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.facetech.konking',\n  name: '人民日报',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12841081',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fan.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fan.app',\n  name: '十六番旅行',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      activityIds: 'com.mvvm.view.LazyMapStrategyActivity_TengXun',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@View[clickable=true][childCount=0] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13258021',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@LinearLayout > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13258015',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击[以后再说]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.mvc.activity.HomepageActivity2',\n          matches: '[id=\"com.fan.app:id/tv_nj_later\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13601734',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fanli.android.apps.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fanli.android.apps',\n  name: '返利',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.fanli.android.module.webview.ui.activity.TransparentBrowserInnerActivity',\n          matches:\n            '@[desc=\"closewv\"][visibleToUser=true] <<n [id=\"com.fanli.android.apps:id/webviewContainer\"]',\n          exampleUrls: 'https://e.gkd.li/7e013a50-4f55-4f49-8024-7dd749e8d53d',\n          snapshotUrls: 'https://i.gkd.li/i/13245808',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fbank.mobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fbank.mobile',\n  name: '富民银行',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.fbank.mobile:id/iv_dumiao\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13797434',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fcbox.hivebox.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fcbox.hivebox',\n  name: '丰巢管家',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '首页弹窗广告',\n          fastQuery: true,\n          activityIds: 'com.fcbox.hivebox.business.main.MainActivity',\n          matches:\n            '[id=\"com.fcbox.hivebox:id/fl_content_container\"] + [id=\"com.fcbox.hivebox:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13459000',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fcbox.hiveconsumer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fcbox.hiveconsumer',\n  name: '丰巢',\n  groups: [\n    {\n      key: 7,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'kt.com.fcbox.hiveconsumer.app.business.main.MainActivity',\n          matches: '[text*=\"优惠券\"] + @[vid=\"img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22455763',\n        },\n        {\n          fastQuery: true,\n          activityIds: [\n            'kt.com.fcbox.hiveconsumer.app.business.main.MainActivity',\n            'kt.com.fcbox.hiveconsumer.app.business.membership.MemberCenterActivityV2',\n          ],\n          matches: '[vid=\"ivClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22724047',\n            'https://i.gkd.li/i/22724105',\n          ],\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'kt.com.fcbox.hiveconsumer.app.business.main.MainActivity',\n          matches: '[text*=\"会员已过期\"] + [vid=\"close_img\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24560868',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.feicui.vdhelper.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.feicui.vdhelper',\n  name: '翡翠视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.ys.resemble.ui.MainActivity',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12700749',\n        },\n        {\n          key: 1,\n          matches: [\n            'ImageView + [id=null][text=\"广告\"]',\n            'ImageView + [id=null][text=\"跳过\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/12700759',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12700800',\n        },\n        {\n          key: 3,\n          activityIds: 'com.sigmob.sdk.base.common.TransparentAdActivity',\n          matches: '[id=\"close_btn\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12700837',\n            'https://i.gkd.li/i/12700848', // 为了兼容此快照，仅使用 id=\"close_btn\" 进行匹配\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.feiyu.morin.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.feiyu.morin',\n  name: '魔音MORIN',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.feiyu.morin.view.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13521556',\n        },\n        {\n          key: 1,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: 'com.feiyu.morin.view.main.MainActivity',\n          matches: ['[text=\"广告\"]', '@ViewGroup > [text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13546184',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.feiyu.morin.view.main.MainActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=1] < ViewGroup +2 ViewGroup > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/52f8dddd-3604-4144-96ce-804c66e77a19',\n          snapshotUrls: 'https://i.gkd.li/i/16621747',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.view.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/a3929d91-2da9-423e-8733-7a933a611ca5',\n          snapshotUrls: 'https://i.gkd.li/i/16621748',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: [\n            'com.feiyu.morin.view.main.MainActivity',\n            'com.feiyu.morin.view.main.PlayerBottomControlActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13521680',\n            'https://i.gkd.li/i/13625476',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fenbi.android.leo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fenbi.android.leo',\n  name: '小猿口算',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.imgsearch.sdk.activity.NewCheckCameraActivity',\n          matches: '@[text=\"残忍拒绝\"] + [text*=\"好评\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/13226140',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fenbi.android.solar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fenbi.android.solar',\n  name: '小猿搜题',\n  groups: [\n    {\n      key: 2,\n      name: '评价提示',\n      desc: '点击\"返回\"',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          matches: '[id=\"com.fenbi.android.solar:id/tv_cancel\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7864769f-542c-4f76-8b90-4d030b53651b',\n          snapshotUrls: 'https://i.gkd.li/i/14136539',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-年卡广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          matches: '[id=\"com.fenbi.android.solar:id/v_firework_close\"]',\n          exampleUrls: 'https://e.gkd.li/874cdabf-8e49-4c6d-8fd0-48effd6e44e9',\n          snapshotUrls: 'https://i.gkd.li/i/16759322',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fengeek.f002.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fengeek.f002',\n  name: 'fiil+',\n  groups: [\n    {\n      key: 2,\n      name: '功能类-自动连接耳机',\n      desc: '点击连接耳机按钮,点击扫描到的第一个设备',\n      activityIds: 'com.fengeek.f002.MainActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击连接耳机按钮',\n          fastQuery: true,\n          action: 'clickCenter',\n          matches: '[id=\"com.fengeek.f002:id/av_elc\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13161277',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击扫描到的设备',\n          fastQuery: true,\n          matches: '[id=\"com.fengeek.f002:id/device_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13161365',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fewwind.flowmark.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fewwind.flowmark',\n  name: 'FlowMark',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: [\n            '[text^=\"发现新版本\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ab46d163-83f6-4c50-a6f4-e37186928fba',\n          snapshotUrls: 'https://i.gkd.li/i/20737817',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fileunzip.zxwknight.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fileunzip.zxwknight',\n  name: '解压专家',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          name: '字节广告',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'Image < @View[visibleToUser=true] +4 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13328194',\n        },\n        {\n          key: 2,\n          name: '腾讯广告',\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13391833',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-升级专业版弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.fileunzip.zxwknight.activity.MainActivity',\n            'com.fileunzip.zxwknight.activity.VideoPlayActivity',\n          ],\n          matches:\n            '@[vid=\"ziputil_dialog_imageview\"] < * > [text=\"升级到专业版\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13328212',\n            'https://i.gkd.li/i/14885336',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-软件推广',\n      desc: '全能保险箱',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"dialog_recommend_back\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/de127f4b-5de6-41ab-a1ea-5a98f7eeab58',\n          snapshotUrls: 'https://i.gkd.li/i/14472568',\n        },\n        {\n          key: 1,\n          activityIds: 'com.fileunzip.zxwknight.activity.MainActivity',\n          matches: '@[text=\"本次启动不再提示\"][checked=false]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/57e29faf-2806-4166-a21d-839f1479960d',\n          snapshotUrls: 'https://i.gkd.li/i/14885425',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          activityIds: 'com.fileunzip.zxwknight.activity.MainActivity',\n          matches: '[vid=\"promote_vault_full_screen_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/57e29faf-2806-4166-a21d-839f1479960d',\n          snapshotUrls: 'https://i.gkd.li/i/14885425',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '@[vid=\"ziputil_dialog_imageview\"] + [text=\"有新版本啦\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a428a59c-5cdd-47e9-bfc5-492b43ed169a',\n          snapshotUrls: 'https://i.gkd.li/i/14900121',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.finshell.wallet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.finshell.wallet',\n  name: '钱包',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.finshell.homepage.WalletNativeActionActivity',\n          matches: '[vid=\"ivClose\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b5a04cd0-2f5a-4161-838b-422552f1ba9e',\n          snapshotUrls: 'https://i.gkd.li/i/16451563',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.firebear.androil.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.firebear.androil',\n  name: '小熊油耗',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '来自第三方SDK\"穿山甲\"',\n      activityIds:\n        'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n      rules: [\n        {\n          key: 0,\n          name: '点击右上角x',\n          matches: '[text=\"反馈\"] +2 View > Image',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12754919',\n            'https://i.gkd.li/i/13324698',\n          ],\n        },\n        {\n          key: 1,\n          name: '点击右上角[数字s|跳过]',\n          matches: '[text=\"广告\"] + View >4 [text=\"| 跳过\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12864214'],\n        },\n        {\n          key: 2,\n          name: '点击右上角x (2)',\n          matches: '[id=\"com.byted.pangle.m:id/tt_reward_full_count_down\"]',\n          snapshotUrls: ['https://i.gkd.li/i/13175439'],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.home.MainActivity',\n          matches:\n            '@[id=\"com.firebear.androil:id/dismissNtfImgView\"] < RelativeLayout - [id=\"com.firebear.androil:id/contentLay\"] >3 TextView[text^=\"升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755032',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fiveplay.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fiveplay',\n  name: '5EPlay',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.sihp_homepage.module.main.Main2Activity',\n          matches: '@[vid=\"iv_close\"] - * > [text=\"打开消息推送\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/020e18ab-1bf1-4639-b32a-777719881dcb',\n          snapshotUrls: 'https://i.gkd.li/i/14680645',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-首页右下角浮窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.sihp_homepage.module.main.Main2Activity',\n          matches: '[id=\"com.fiveplay:id/iv_ad_float_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16825082',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.login.view.dialog.UpdateHintDialog',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[vid=\"cb_ignore_version\"][checked=false][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4833b753-6fcd-4caf-b57a-1a27fdfecd0a',\n          snapshotUrls: 'https://i.gkd.li/i/23833318',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/23833319',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"暂不更新\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23833318',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.flomo.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.flomo.app',\n  name: 'flomo浮墨笔记',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.activity.MainActivity',\n          matches: [\n            '[text=\"觉得 flomo 怎么样？\"]',\n            '[text=\"暂不提醒\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23935802',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.flttrade.flt1064trade.gong.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.flttrade.flt1064trade.gong',\n  name: '影视工场',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          activityIds: 'com.flttrade.flt1064trade.gong.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13759472',\n        },\n        {\n          key: 1,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/fc9d81bc-d215-4ebd-84a9-ed369d63f037',\n          snapshotUrls: 'https://i.gkd.li/i/13798323',\n        },\n        {\n          key: 2,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text^=\"打开或下载\" || text=\"了解更多\" || text^=\"下载或打开\"]',\n          exampleUrls: 'https://e.gkd.li/bd2a716e-691a-4c2c-91e2-da41e3bf2b9c',\n          snapshotUrls: 'https://i.gkd.li/i/13798327',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.flutter3.ctangxin.vf0egg.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.flutter3.ctangxin.vf0egg', // 注意 appId 有随机后缀, 每个版本都变，需修改为你自己的 appId\n  name: '糖心Vlog',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告', // 目前已叠加了三层广告\n      //matchDelay: 6500, // 待无法跳过的5s开屏广告过后，能够主动执行匹配\n      matchTime: 10000,\n      actionCd: 100,\n      resetMatch: 'app',\n      activityIds: 'com.example.flutter3_frame.MainActivity',\n      rules: [\n        {\n          action: 'back',\n          matches:\n            'FrameLayout > View > View > View[index=0] > View > ImageView[childCount=1] + View[clickable=true && desc=null]',\n          snapshotUrls: 'https://i.gkd.li/i/12836891',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-公告弹窗',\n      matchTime: 10000,\n      resetMatch: 'app',\n      activityIds: 'com.example.flutter3_frame.MainActivity',\n      rules: [\n        {\n          action: 'back',\n          matches: '[desc=\"公告\"] +2 [desc=\"取消\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12836854',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fongmi.android.tv.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fongmi.android.tv',\n  name: '影视',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.MainActivity',\n          matches:\n            '[id=\"com.fongmi.android.tv:id/buttonPanel\"] >2 [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14035154',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.futurefleet.dongguantongbus.ui.dg.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.futurefleet.dongguantongbus.ui.dg',\n  name: '东莞通',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.unionpay.smartDG.activity.UPMainActivity',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][width<60 && height<60] <<n [vid=\"flow_ad_fl_container_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fd24a381-82eb-4dc2-80f8-410783a1a680',\n          snapshotUrls: 'https://i.gkd.li/i/23290739',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.yd.saas.base.inner.interstitial.YdInterstitialActivity',\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d4e02a98-f4e7-492f-9317-717454d74fd5',\n          snapshotUrls: 'https://i.gkd.li/i/23357205',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.fzfengzheng.fzboyp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.fzfengzheng.fzboyp',\n  name: '风筝影评',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            'View[childCount=6] >2 View[childCount=8] > View[childCount=4] > [text=\"反馈\"] + View[index=3]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3cb59a01-f1ab-4244-b455-3824a5724811',\n          snapshotUrls: 'https://i.gkd.li/i/14228332',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.galaxy.qbyd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.galaxy.qbyd',\n  name: '春木漫画',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',\n            'com.aster.comic.app.view.MainActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13691104',\n            'https://i.gkd.li/i/13691103',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.gamersky.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.gamersky',\n  name: '游民星空',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16322789',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/16333782',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: '[vid=\"ms_skipView\"]', // vid=\"iv_notification_fragment_news\" 并非跳过节点，只是位置相同\n          exampleUrls: 'https://e.gkd.li/4b7fd3fe-8467-49e3-93af-64515416911c',\n          snapshotUrls: 'https://i.gkd.li/i/16860311',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16902939',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9041',\n            top: 'width * 0.1598',\n          },\n          matches: '[vid=\"animation_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6bca4f19-320d-42e4-affb-4667a8112653',\n          snapshotUrls: 'https://i.gkd.li/i/17565808',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.main.activity.LibMainActivity',\n            '.common.activity.LibDetailContentDetailActivity',\n          ],\n          matches: [\n            '[text=\"广告\" || vid=\"badge\"][visibleToUser=true]',\n            '[vid=\"delete\" || vid=\"close\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/18122883',\n            'https://i.gkd.li/i/18122884',\n            'https://i.gkd.li/i/20422031',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.gamersky.common.activity.LibDetailContentDetailActivity',\n          matches:\n            'WebView >2 View[childCount=2] > View[index=1] > @View[clickable=true][visibleToUser=true][childCount=0] <<n [vid=\"contentWebView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14622935',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14892583',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.gamersky.common.activity.LibDetailContentDetailActivity',\n          matches:\n            '@[clickable=true][visibleToUser=true][text=\"\"] - [childCount=0][text=\"广告\"] <<n [vid=\"nested_view_group\" || vid=\"contentWebView\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13635579',\n            'https://i.gkd.li/i/15477470',\n            'https://i.gkd.li/i/17356753',\n          ],\n        },\n        {\n          key: 4,\n          activityIds: 'com.gamersky.main.activity.LibMainActivity',\n          matches: '[vid=\"recommended_reviews_or_rating_close_img\"]',\n          exampleUrls: 'https://e.gkd.li/f214c099-c22a-4c20-abc0-4cdddc2fe614',\n          snapshotUrls: 'https://i.gkd.li/i/16556122',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-签到成功弹窗',\n      desc: '点击[确定]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.gamersky.main.activity.LibMainActivity',\n          matches: ['[text=\"签到成功！\"]', '[text=\"确定\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/696e417a-3100-43a2-a401-f4f80dfa9f47',\n          snapshotUrls: 'https://i.gkd.li/i/14761502',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.generalcomp.batian.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.generalcomp.batian',\n  name: '霸天安云',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.zasko.modulemain.mvpdisplay.activity.X35MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/5b7e260d-6896-4e9d-bbbf-062f5ec02b86',\n          snapshotUrls: 'https://i.gkd.li/i/17742964',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.zasko.modulemain.mvpdisplay.activity.X35CommonDisplayActivity',\n          matches:\n            '@ImageView[visibleToUser=true][id=null][width<100 && height<100] <2 FrameLayout[childCount=3] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/9b44f7b6-fe7e-4c9d-ac5f-6a41a7b507b3',\n          snapshotUrls: 'https://i.gkd.li/i/17735543',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.zasko.modulemain.mvpdisplay.activity.X35CommonDisplayActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] <2 ViewGroup[childCount=2] <2 ViewGroup[childCount=2] <2 ViewGroup[childCount=2] - ViewGroup[childCount=2] >3 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/8f24af69-0022-47c9-88a6-d5b949b377f8',\n          snapshotUrls: 'https://i.gkd.li/i/17735536',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.zasko.modulemain.mvpdisplay.activity.X35MainActivity',\n          matches:\n            '@Image[childCount=0][visibleToUser=true] < View[childCount=1] -3 View[childCount=2] >2 [visibleToUser=true][text=\"广告\"] <<n [vid=\"native_ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/42c397f9-4fc5-4a87-950d-cd6a86783c24',\n          snapshotUrls: 'https://i.gkd.li/i/17735537',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.gentle.ppcat.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.gentle.ppcat',\n  name: '皮皮喵',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '@FrameLayout - LinearLayout >2 [text$=\"惊喜奖励\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12777048',\n            'https://i.gkd.li/i/12858015',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[text=\"放弃奖励离开\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15008493',\n        },\n        {\n          key: 2,\n          matches: '@ImageView - WebView > [text=\"优量汇-插屏视频endcard\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12777051',\n        },\n        {\n          key: 3,\n          matches: '[desc=\"关闭喵\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13797494',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/68c0ad3a-0f25-43bb-a6d4-ab45d49e8db7',\n          snapshotUrls: 'https://i.gkd.li/i/20950433',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true][width<100 && height<100] < FrameLayout[childCount=1] <2 FrameLayout[childCount=3] < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/7002f432-f9cb-45c1-a120-5458b94782b3',\n          snapshotUrls: 'https://i.gkd.li/i/20950403',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][visibleToUser=true][width<80 && height<80] < View[childCount=1] < View[childCount=1] + View > [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/f3ad0b42-3c85-4742-9326-8a4b221fb433',\n          snapshotUrls: 'https://i.gkd.li/i/20960114',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.giraffe.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.giraffe',\n  name: '安易加速器',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.speed.shadowsocks.ui.main.MainActivity',\n          matches: '[id=\"com.giraffe:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14000409',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.github.eprendre.tingshu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.github.eprendre.tingshu',\n  name: '我的听书',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '搜索结果底部/播放页面卡片广告',\n          activityIds: '.ui.search.AggregateSearchActivity',\n          matches:\n            'FrameLayout > FrameLayout[childCount=1] > ImageView[width<80][height<80]',\n          snapshotUrls: 'https://i.gkd.li/i/12783466',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.ui.play.PlayerActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d3d33d4f-4c15-45a0-9e86-0c1ca2ecc7c9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13334850',\n            'https://i.gkd.li/i/13446735',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.ui.play.PlayerActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] < ViewGroup[childCount=1] <2 ViewGroup - ViewGroup >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/055cfec1-d022-4e46-83f3-bc4c2860f919',\n          snapshotUrls: 'https://i.gkd.li/i/23407169',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.ui.play.PlayerActivity',\n          matches:\n            '@[id=\"cj.mobile.wm.allmodules:id/wm_express_close_iv\"] - LinearLayout > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/0174efc4-5eb6-4224-a213-e5c46d421a16',\n          snapshotUrls: 'https://i.gkd.li/i/23475820',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: 'com.github.eprendre.tingshu.ui.SplashActivity',\n          matches: [\n            '[text=\"广告\"]',\n            '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13625303',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-播放页卡片广告',\n      desc: '点击关闭-点击不感兴趣',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.ui.play.PlayerActivity',\n          matches:\n            '@[desc=\"close\"][visibleToUser=true] + [desc=\"ad_logo\"] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/357bf940-7a93-4769-8c6d-480985b72901',\n          snapshotUrls: 'https://i.gkd.li/i/17892446',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.ui.play.PlayerActivity',\n          matches:\n            '@[text=\"反馈\"] <2 View + View >3 [visibleToUser=true][text=\"广告\"] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/664d87f3-9571-4f48-ae01-4cd2a2634bc4',\n          snapshotUrls: 'https://i.gkd.li/i/18057482',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.ui.play.PlayerActivity',\n          matches:\n            '@Image[childCount=0][visibleToUser=true][width<50 && height<50] < View[childCount=1] <n View >4 [visibleToUser=true][text=\"广告\"] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/a2408a2d-7d84-4658-b660-ce8a4c849190',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18058170',\n            'https://i.gkd.li/i/18095619',\n          ],\n        },\n        {\n          preKeys: [1, 2, 3],\n          fastQuery: true,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',\n            '.ui.play.PlayerActivity',\n          ],\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/7ce6d9c4-c77a-4655-91c2-97e1987f0914',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17892449',\n            'https://i.gkd.li/i/18057440',\n            'https://i.gkd.li/i/18058170',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.github.metacubex.clash.meta.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.github.metacubex.clash.meta',\n  name: 'Clash Meta for Android',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-代理页面自动点击延迟测试',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.github.kr328.clash.ProxyActivity',\n          matches: '[vid=\"url_test_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/490f4572-a1af-4345-8f6e-3b0081929628',\n          snapshotUrls: 'https://i.gkd.li/i/20926416',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20926355',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.gkid.crazyrope.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.gkid.crazyrope',\n  name: '天天跳绳',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-会员提示',\n      desc: '点击不需要',\n      fastQuery: true,\n      activityIds: 'com.gkid.crazyrope.ui.member.MemberDiscountsActivity',\n      rules: [\n        {\n          matches: '[id=\"com.gkid.crazyrope:id/btn_close\"][text=\"暂不需要\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12916419',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-浮窗广告',\n      desc: '点击关闭-点击关闭广告',\n      fastQuery: true,\n      activityIds: '.ui.drillcommon.DrillActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.gkid.crazyrope:id/iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/398c08eb-ebfb-4cf6-9349-0b0ad4b575c9',\n          snapshotUrls: 'https://i.gkd.li/i/13262845',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"关闭广告\"]',\n          exampleUrls: 'https://e.gkd.li/3d27d844-b552-4a0c-800b-3dc5790fb8c0',\n          snapshotUrls: 'https://i.gkd.li/i/13262844',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.apps.googlevoice.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.apps.googlevoice',\n  name: 'Voice',\n  groups: [\n    {\n      key: 10,\n      name: '功能类-跳过实体号码链接',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        'com.google.android.apps.voice.promo.PromoActivity',\n        'com.google.android.apps.voice.verification.procedure.VerificationActivity',\n      ],\n      rules: [\n        {\n          matches: [\n            '[id=\"com.google.android.apps.googlevoice:id/title_view\"][text=\"Link this device to Google Voice\" || text=\"将此设备与 Google Voice 关联\" || text=\"將這個裝置連結到 Google Voice\"]',\n            '[id=\"com.google.android.apps.googlevoice:id/skip_button\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13314255',\n            'https://i.gkd.li/i/13437190',\n            'https://i.gkd.li/i/23205177',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.apps.photos.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.apps.photos',\n  name: '谷歌相册',\n  groups: [\n    {\n      key: 0,\n      name: '更新提示',\n      desc: '点击[以后再说]',\n      matchRoot: true,\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: [\n            '.update.treatment.UpdateAppTreatmentPromoPageActivity',\n            '.home.HomeActivity',\n          ],\n          matches: '[text=\"以后再说\" || text=\"Not now\"][visibleToUser=true]', // https://github.com/AIsouler/GKD_subscription/issues/754\n          snapshotUrls: [\n            'https://i.gkd.li/i/13218940',\n            'https://i.gkd.li/i/18522070',\n            'https://i.gkd.li/i/18608917',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-会员广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.photos.cloudstorage.paidfeatures.PaidFeaturesActivity',\n          matches:\n            '@[desc=\"转到上一层级\"] < ViewGroup[id=\"com.google.android.apps.photos:id/toolbar\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13774247',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.home.HomeActivity',\n          matches:\n            '[vid=\"spark_container\"] > [vid=\"close_button\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/581cad00-a5fa-4f42-b31f-84a2d5c89afc',\n          snapshotUrls: 'https://i.gkd.li/i/22482732',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.apps.translate.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.apps.translate',\n  name: 'Google翻译',\n  groups: [\n    {\n      key: 4,\n      name: '功能类-关闭登录备份翻译记录弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.google.android.apps.translate.TranslateActivity',\n          matches: ['[text=\"备份您的翻译历史记录\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13495796',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.apps.youtube.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.apps.youtube.music',\n  name: 'YouTube Music',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-播放界面广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.music.activities.MusicActivity',\n          matches:\n            '[id=\"com.google.android.apps.youtube.music:id/skip_ad_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13196056',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-会员广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.activities.MusicActivity',\n          matches:\n            '@[desc=\"Close\" || desc=\"No thanks\"][visibleToUser=true] <<n [vid=\"custom\"]',\n          exampleUrls: 'https://e.gkd.li/42b2cb6d-b1e2-4cb1-84d8-399939263711',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18542111',\n            'https://i.gkd.li/i/18727504',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.activities.MusicActivity',\n          matches: '[text=\"No thanks\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/eb519d7d-8d6c-4196-bf23-ea8c0511cfa9',\n          snapshotUrls: 'https://i.gkd.li/i/19442247',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '通知提示-隐私提醒',\n      desc: '点击[OK]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activities.MusicActivity',\n          matches: [\n            '[text=\"Privacy check-up\"][visibleToUser=true]',\n            '[text=\"Ok\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/bffc2f66-8538-4970-9b7b-9da2e4a397ab',\n          snapshotUrls: 'https://i.gkd.li/i/18546896',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.documentsui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.documentsui',\n  name: 'Android 系统文件选择器',\n  groups: [\n    {\n      key: 10,\n      name: '功能类-授权第三方应用访问文件夹',\n      desc: '自动点击\"使用此文件夹\"->\"允许\"',\n      activityIds: 'com.android.documentsui.picker.PickActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"使用此文件夹\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12799610',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '[text=\"取消\"] + [text=\"允许\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12799603',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.gm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.gm',\n  name: 'Gmail',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[id=\"com.google.android.gm:id/basic_ad_teaser_info_icon\" || id=\"com.google.android.gm:id/button_chip_ad_teaser_info_icon\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13255698',\n            'https://i.gkd.li/i/13255698',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches:\n            'Button[visibleToUser=true][text=\"屏蔽此广告\" || text^=\"Block\" || desc=\"屏蔽\"] <<n [vid=\"my_ad_center_dialog\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13255700',\n            'https://i.gkd.li/i/13724271',\n            'https://i.gkd.li/i/20585351',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches:\n            'Button[visibleToUser=true][text=\"继续\" || text=\"Continue\"] <<n [id=\"com.google.android.gm:id/my_ad_center_dialog\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13255701',\n            'https://i.gkd.li/i/13724287',\n          ],\n        },\n        {\n          preKeys: [2],\n          key: 3,\n          matches: '[id=\"com.google.android.gm:id/my_ad_center_close_icon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13263279',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.gms.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.gms',\n  name: 'Google Play 服务',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-谷歌填充密码自动授权',\n      desc: '勾选[不再显示]-点击[使用]',\n      fastQuery: true,\n      activityIds: 'com.google.android.gms.autofill.ui.AutofillDialogActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"不再显示\"][checked=false]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/26d02bb7-efb2-4b8c-b27a-32a878ac89b1',\n          snapshotUrls: 'https://i.gkd.li/i/14479073',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '[text=\"使用\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b05ef245-7e2e-4516-80e5-12832296ec8f',\n          snapshotUrls: 'https://i.gkd.li/i/14479128',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.packageinstaller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.packageinstaller',\n  name: '软件包安装程序',\n  groups: [\n    {\n      // 由于该软件包安装程序存在更新、安装重叠的情况，且安装/更新后和重叠时activityid都不同，\n      // 尚不明确安装、更新、重叠三种情况混合时的activityid，故去掉activityIds字段\n      key: 1,\n      name: '功能类-自动安装/更新软件',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"安装\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14046939',\n        },\n        {\n          key: 2,\n          matches: '[text=\"更新\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14047571',\n            'https://i.gkd.li/i/14047854', // 重叠情况的快照\n          ],\n        },\n        {\n          key: 3,\n          matches: '[text=\"完成\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14047514',\n            'https://i.gkd.li/i/14047969',\n            'https://i.gkd.li/i/16435556',\n          ],\n        },\n        {\n          key: 4,\n          position: {\n            left: 'width * 1.4975',\n            top: 'height * 0.5',\n          },\n          excludeMatches: [\n            '[text=\"更新\"][clickable=true]',\n            '[text=\"安装\"][clickable=true]',\n          ],\n          matches: [\n            '[text=\"要更新此应用吗？\" || text=\"要安装此应用吗？\"]',\n            '[text=\"取消\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/16406316',\n            'https://i.gkd.li/i/16435642',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-安全警告弹窗',\n      desc: '点击[设置]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.android.packageinstaller.PackageInstallerActivity',\n          matches: ['[text^=\"出于安全考虑\"]', '[text=\"设置\"]'],\n          exampleUrls: 'https://e.gkd.li/e501f0cf-c531-40eb-a747-31377d35c971',\n          snapshotUrls: 'https://i.gkd.li/i/16406317',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.google.android.youtube.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.google.android.youtube',\n  name: 'youtube',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-视频播放-跳过广告',\n      rules: [\n        {\n          fastQuery: true,\n          key: 0,\n          activityIds: [\n            'com.google.android.apps.youtube.app.watchwhile.WatchWhileActivity',\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n            'com.google.android.youtube',\n          ],\n          matches:\n            '[vid=\"skip_ad_button\" || id=\"com.google.android.youtube:id/modern_skip_ad_text\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13797491',\n            'https://i.gkd.li/i/12565261',\n            'https://i.gkd.li/i/13705106',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-视频播放-赞助商广告',\n      fastQuery: true,\n      activityIds: [\n        'com.google.android.apps.youtube.app.watchwhile.WatchWhileActivity',\n        'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n      ],\n      rules: [\n        {\n          matches:\n            '@[desc=\"关闭广告面板\" || desc=\"Close ad panel\"] <<n [vid=\"panel_header\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13797491',\n            'https://i.gkd.li/i/13705106',\n            'https://i.gkd.li/i/14784199',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-会员广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches:\n            '[!(getChild(0).getChild(0).desc=\"Image attachment\")] + @[desc=\"不用了，谢谢\" || desc=\"关闭\" || desc=\"Close\" || desc=\"No thanks\"][visibleToUser=true] <<n [vid=\"bottom_ui_container\" || vid=\"custom\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13797512',\n            'https://i.gkd.li/i/18017075',\n            'https://i.gkd.li/i/18549944',\n            'https://i.gkd.li/i/19578085',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/21978683',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches: ['[text=\"开启通知\"]', '[text=\"不用了\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/14194155',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-自动翻译评论',\n      desc: '评论区自动点击[翻译成中文]',\n      rules: [\n        {\n          fastQuery: true,\n          actionCd: 500,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches:\n            '@Button[desc^=\"翻译成中文\"][clickable=true][visibleToUser=true] <<n [vid=\"results\" || vid=\"section_list\"]',\n          exampleUrls: 'https://e.gkd.li/e9d6eaa8-9fbf-4b16-8f0c-50239597c687',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17068544', // 翻译前\n            'https://i.gkd.li/i/17068647', // 翻译后\n            'https://i.gkd.li/i/17501400',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '其他-关闭播放器辅助功能弹窗',\n      desc: '点击[Dismiss]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches: '[text=\"Dismiss\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/aa8f2617-fd6d-43a8-951d-1bd6efc504d3',\n          snapshotUrls: 'https://i.gkd.li/i/19930694',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-关闭视频播放结束后的推荐视频',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          anyMatches: [\n            '@[vid=\"close_button\"] - LinearLayout >2 [text=\"Suggested video\" || text=\"推荐视频\"][visibleToUser=true]',\n            '[vid=\"engagement_close_button\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/22757392', // 英文界面\n            'https://i.gkd.li/i/22762876', // 中文界面\n            'https://i.gkd.li/i/22757397',\n          ],\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches:\n            '@ImageView[clickable=true][width<100 && height<100] <<n [vid=\"panel_header\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23787178',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '分段广告-播放页广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches:\n            '@[vid=\"overflow_button\"][clickable=true] <<n [vid=\"collapsible_ad_cta_overlay_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23790199',\n        },\n        {\n          key: 2,\n          preKeys: [1],\n          fastQuery: true,\n          activityIds:\n            'com.google.android.apps.youtube.app.watchwhile.MainActivity',\n          matches: '@[clickable=true] > [text=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23772979',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.gotokeep.keep.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.gotokeep.keep',\n  name: 'Keep',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.gotokeep.keep.refactor.business.main.activity.MainActivity',\n          matches: '[id=\"com.gotokeep.keep:id/imgCloseHomePageDialog\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761641',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-首页信息流广告',\n      activityIds:\n        'com.gotokeep.keep.refactor.business.main.activity.MainActivity',\n      rules:\n        '[id=\"com.gotokeep.keep:id/textAdTag\"] + [id=\"com.gotokeep.keep:id/imgClose\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12706115',\n    },\n    {\n      key: 4,\n      name: '全屏广告-运动购页面-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.gotokeep.keep.refactor.business.main.activity.MainActivity',\n          matches:\n            'ImageView + LinearLayout > ImageView[id=null][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12706111',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.gotokeep.keep.refactor.business.main.activity.MainActivity',\n          matches:\n            '[id=\"com.gotokeep.keep:id/contentContainer\"] + [id=\"com.gotokeep.keep:id/closeImageView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13766358',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-请求开启通知权限弹窗',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: '@[text=\"暂不开启\"] +2 [text=\"开启通知权限\"]',\n      snapshotUrls: 'https://i.gkd.li/i/13761671',\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      desc: '点击\"暂不升级\"',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[id=\"com.gotokeep.keep:id/text_secondary_action\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6b0091e9-1bf1-49bd-be5c-e6997bc9accb',\n          snapshotUrls: 'https://i.gkd.li/i/14126005',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.greenpoint.android.mc10086.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.greenpoint.android.mc10086.activity',\n  name: '中国移动',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 2,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter', // https://github.com/AIsouler/GKD_subscription/issues/1109\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16335136',\n        },\n        {\n          key: 1,\n          position: {\n            left: 'width * 0.8731',\n            top: 'width * 0.1352',\n          },\n          matches:\n            '@FrameLayout[childCount=2] > [vid=\"ll_top_right\"][childCount=0]',\n          exampleUrls: 'https://e.gkd.li/6fca95f1-d672-4d1d-bcf5-e71f1865dd52',\n          snapshotUrls: 'https://i.gkd.li/i/20903074',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16335136',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches: '[text=\"暂不更新\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/130e0c2e-f568-4a96-9c06-9876a21e0466',\n          snapshotUrls: 'https://i.gkd.li/i/18271745',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches:\n            '[id=\"com.greenpoint.android.mc10086.activity:id/ad_image\"] < RelativeLayout + [id=\"com.greenpoint.android.mc10086.activity:id/close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12662361',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '请求推送通知弹窗，点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.mc10086.cmcc.base.StartPageActivity',\n          matches: ['[text*=\"开启推送通知\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13327880',\n        },\n        {\n          key: 1,\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches: '[text=\"授权提醒\"] +3 [text=\"拒绝\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13775652',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '权限提示-请求获取剪贴板权限弹窗',\n      desc: '请求获取剪贴板权限弹窗，点击不允许',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        'com.mc10086.cmcc.view.tabs.AppTabFragment',\n        'com.mc10086.cmcc.base.StartPageActivity',\n      ],\n      rules: [\n        {\n          matches:\n            '[text*=\"获取您的\"] < LinearLayout +(2) LinearLayout >(2) [text=\"不允许\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12662251',\n            'https://i.gkd.li/i/13775651',\n            'https://i.gkd.li/i/15944173',\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '局部广告-右侧悬浮小图标',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches:\n            '[id=\"com.greenpoint.android.mc10086.activity:id/close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12662265',\n        },\n        {\n          key: 1,\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches: '[vid=\"close_btn_bottom\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/276c7811-52f7-4379-8782-f9fb0b6cec1c',\n          snapshotUrls: 'https://i.gkd.li/i/14570369',\n        },\n        {\n          key: 2,\n          activityIds: 'com.cmccit.webview.ac.CommonHtml5Activity',\n          matches:\n            '[text=\"余量查询\"] > View > View > @Image[clickable=true][text!=null] <<n [vid=\"patmentwebview\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/69c6bf73-d901-4816-a9da-e4bcb0f4b9c6',\n          snapshotUrls: 'https://i.gkd.li/i/14738550',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '评价提示-请求好评弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches:\n            '@[id=\"com.greenpoint.android.mc10086.activity:id/close_img\"][desc=\"关闭\"] - RelativeLayout >(2) [text$=\"好评\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12662345',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '权限提示-通讯录权限申请弹窗',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.cmccit.paycenter.PayCenterActivity',\n          matches: ['[text=\"通讯录权限申请\"]', '[text=\"取消\"]'],\n          exampleUrls: 'https://e.gkd.li/7d332325-497f-47a4-a322-729ffa5dd121',\n          snapshotUrls: 'https://i.gkd.li/i/16369235',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '权限提示-定位权限',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mc10086.cmcc.view.tabs.AppTabFragment',\n          matches: [\n            '[text^=\"位置权限\" || text$=\"定位权限\"]',\n            '[text=\"取消\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23445705',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.growing.topwidgets.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.growing.topwidgets',\n  name: '万能小组件 Top Widgets',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      activityIds: 'com.growing.topwidgets.home.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@ImageView < * - * > [text=\"立即打开\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14892835',\n        },\n        {\n          key: 1,\n          matches: '@ImageView < * - * > [text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14945536',\n        },\n        {\n          key: 2,\n          matches: '[vid=\"ms_item_pre_render_large_iamge_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15137361',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] <(2,3,4) * >(2,3,4) [text=\"反馈\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14945552',\n            'https://i.gkd.li/i/15286451',\n            'https://i.gkd.li/i/16703279',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14964868',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.gspace.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.gspace.android',\n  name: 'Gspace',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-主页面上方广告',\n      activityIds: ['com.gspace.android.ui.activity.main.MainActivity'],\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.gspace.android:id/hiad_banner_close_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12705339',\n        },\n        {\n          key: 1,\n          matches: '@Image < View -2 View > View > View TextView[text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12910419', //activityIds: 'com.gspace.android.ui.activity.main.MainActivity',\n            'https://i.gkd.li/i/12910935', //activityIds: 'com.huawei.android.launcher.unihome.UniHomeLauncher',\n          ],\n        },\n        {\n          preKeys: 1,\n          matches: '[id=\"com.byted.pangle:id/tt_item_tv\" && text= \"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12910420',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-Youtube播放视频跳过广告',\n      // activityIds: 'com.huawei.openalliance.ad.ppskit.activity.InnerPPSInterstitialAdActivity',\n      // 我不清楚，上面的activityIds是否与系统有关\n      rules: '[id=\"com.google.android.youtube:id/skip_ad_button\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12709006',\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.guodongbaohe.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.guodongbaohe.app',\n  name: '果冻宝盒',\n  groups: [\n    // key0-5作为开屏、更新、消息提醒等通用规则\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.guodongbaohe.app.activity.AdvertisementTwoActivity',\n          matches: 'LinearLayout[id=\"com.guodongbaohe.app:id/close_dialog_lv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13577877',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.guwendao.gwd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.guwendao.gwd',\n  name: '古文岛',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.guwendao.gwd.MainActivity',\n      rules: [\n        {\n          key: 2,\n          matches:\n            '[id=\"com.byted.pangle.m:id/tt_reward_full_count_down_after\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12781344',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: [\n            'com.guwendao.gwd.MainActivity',\n            'com.android.systemui.media.MediaProjectionPermissionActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12776607',\n            'https://i.gkd.li/i/12777151',\n            'https://i.gkd.li/i/12924728',\n          ],\n        },\n\n        // 字节广告\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          key: 10,\n          matches: '@Image[id=null] < View + View + TextView[text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12781327',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.gvsoft.gofun.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.gvsoft.gofun',\n  name: 'GoFun出行',\n  groups: [\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.gvsoft.gofun.module.home.activity.HomeActivity',\n          matches:\n            '[id=\"com.gvsoft.gofun:id/cardView\"] + [id=\"com.gvsoft.gofun:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13497777',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.haier.uhome.uplus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.haier.uhome.uplus',\n  name: '海尔智家',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.upgradeui.ui.UpgradeDialogActivity',\n          matches: '@[text=\"取消\"] + [text=\"立即更新\"||text=\"立即安装\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12726844',\n            'https://i.gkd.li/i/12726801',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.ui.widget.MPermissionCheckDialog',\n      rules: [\n        {\n          key: 0,\n          matches: '@[checked=false] + [text=\"禁止后不在询问\"]',\n          exampleUrls: 'https://e.gkd.li/e1c6f008-4eba-4370-b7a1-054d0279956a',\n          snapshotUrls: 'https://i.gkd.li/i/12726829',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"取消\"]',\n          exampleUrls: 'https://e.gkd.li/e1c6f008-4eba-4370-b7a1-054d0279956a',\n          snapshotUrls: 'https://i.gkd.li/i/12726829',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.haixing.phonelive.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.haixing.phonelive',\n  name: '海星体育',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-]权限授权]弹窗',\n      desc: '点击取消',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.longya.live.activity.MainActivity',\n          matches: ['[text*=\"权限授权\"]', '[text=\"取消\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/0524b810-b24f-4e5b-8a62-5b660b04255b',\n          snapshotUrls: 'https://i.gkd.li/i/15369230',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.handsgo.jiakao.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.handsgo.jiakao.android',\n  name: '驾考宝典',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.handsgo.jiakao.android.main.activity.MainActivity',\n          matches:\n            '[id=\"com.handsgo.jiakao.android:id/ivDelete\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13475994',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.main.activity.MainActivity',\n          matches:\n            '[id=\"com.handsgo.jiakao.android:id/adsdk__ids_component_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a3ff6d58-4902-4ff4-a1dd-dbdb4a9ae38a',\n          snapshotUrls: 'https://i.gkd.li/i/13475994',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@View[clickable=true][childCount=0] < FrameLayout[desc^=\"webview-close\"] +4 FrameLayout >3 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476039',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.handsgo.jiakao.android.main.activity.MainActivity',\n          matches: [\n            '[vid=\"adsdk__ids_cta_layout\"][visibleToUser=true]',\n            '[vid=\"close\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/20745398',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.main.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/5370968e-fded-4be0-8fa4-b7997f8a861a',\n          snapshotUrls: 'https://i.gkd.li/i/20745379',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.handsgo.jiakao.android.main.activity.MainActivity',\n          matches: '[text=\"开启专属学习资料推送\"] + [vid=\"closeIv\"]',\n          exampleUrls: 'https://e.gkd.li/9a9aad9b-052b-4e00-9926-d4a213f96372',\n          snapshotUrls: 'https://i.gkd.li/i/17001986',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hanweb.android.sdzwfw.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hanweb.android.sdzwfw.activity',\n  name: '爱山东',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[text*=\"关闭\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/13407227',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hanweb.android.zhejiang.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hanweb.android.zhejiang.activity',\n  name: '浙里办',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          actionMaximum: 1,\n          matches:\n            '@[id=\"com.hanweb.android.zhejiang.activity:id/iv_cancel\"] -2 * >2 [text=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13402048',\n        },\n        // key 1,2 共同发挥作用，先点击[立即升级]，然后返回，即可跳过更新弹窗\n        {\n          key: 1,\n          actionMaximumKey: 0,\n          matches:\n            'LinearLayout[childCount=2] > LinearLayout[childCount=2] > [text=\"立即升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13520598',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches:\n            '[text=\"版本更新\"] - [id=\"com.hanweb.android.zhejiang.activity:id/rl_back\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13521059',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hd.smartVillage.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hd.smartVillage',\n  name: '恒大智慧社区',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.modules.main.MainActivity',\n            '.modules.h5service.H5WebActivity',\n          ],\n          matches:\n            'View[id=\"com.hd.smartVillage:id/notificationSettingCloseBtn\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13223669',\n            'https://i.gkd.li/i/13293000',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.modules.main.MainActivity',\n          matches: 'TextView[id=\"com.hd.smartVillage:id/tv_upgrade_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13223642',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hello.pet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hello.pet',\n  name: '街猫',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text^=\"开启通知\"] +2 [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14622639',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hexin.plat.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hexin.plat.android',\n  name: '同花顺',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          position: {\n            left: 'width * 3.6279',\n            top: 'width * -6.5736',\n          },\n          matches:\n            '@[id=\"android:id/title\"][childCount=0][width<150] < LinearLayout < [parent=null]',\n          exampleUrls: 'https://e.gkd.li/2750d496-8889-4aed-88b7-70692df44e8f',\n          snapshotUrls: 'https://i.gkd.li/i/16505270',\n        },\n        {\n          key: 1,\n          position: {\n            left: 'width * 3.7',\n            top: 'width * -6.9281',\n          },\n          matches:\n            '@[id=\"android:id/title\"][childCount=0][width>=150] < LinearLayout < [parent=null]',\n          exampleUrls: 'https://e.gkd.li/f9c7621d-8b2b-4ca8-9904-fe0bca61c43f',\n          snapshotUrls: 'https://i.gkd.li/i/17726527',\n        },\n        {\n          key: 2,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24119631',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '信息流广告-点击x按钮-点击内容质量差',\n      activityIds: ['com.hexin.plat.android.Hexin'],\n      rules: [\n        {\n          key: 1,\n          matches:\n            '@[id=\"com.hexin.plat.android:id/iv_feed_bottom_bar_dislike\"] < LinearLayout -(2) LinearLayout >(2) [text=\"广告\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12662754'],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches:\n            '[id=\"com.hexin.plat.android:id/tv_negative_feedback_option\"][text=\"内容质量差\"] - ImageView < LinearLayout[clickable=true]',\n          snapshotUrls: ['https://i.gkd.li/i/12662781'],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-底部产品广告',\n      activityIds: ['com.hexin.plat.android'],\n      rules: [\n        {\n          matches:\n            '[id=\"com.hexin.plat.android:id/prod_ad\"] + [id=\"com.hexin.plat.android:id/prod_close_image\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12662656'],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.cloud.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.cloud',\n  name: '云服务',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.heytap.cloud.home.ui.CloudSettingsActivity2',\n          matches: ['[text=\"检测到新版本\"]', '[vid=\"cancel\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/16097208',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.headset.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.headset',\n  name: '欢律',\n  groups: [\n    {\n      key: 0,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.component.about.FindAppUpgradeActivity',\n          matches: [\n            '[text=\"发现新版本\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14971296',\n            'https://i.gkd.li/i/20601909',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示-耳机固件更新弹窗',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.component.detail.DeviceDetailActivity',\n          matches: [\n            '[text=\"耳机固件更新\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/2336ee00-71e3-4e5e-b6e1-d81ea412b67b',\n          snapshotUrls: 'https://i.gkd.li/i/20601911',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.health.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.health',\n  name: 'OPPO 健康',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击[以后再说]',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.heytap.health.settings.me.upgrade.UpgradeActivity',\n          matches: [\n            '[text=\"检测到新版本\"][visibleToUser=true]',\n            '[text=\"以后再说\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/22657352',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.heytap.health.main.MainActivity',\n          matches:\n            '[vid=\"adapter_act_root_view\"] > [vid=\"close\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22657359',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '通知提示-健康周报',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches: ['[text=\"您的健康周报已生成\"]', '[text=\"关闭\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/22724032',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches: '[vid=\"image_operation\"] + [vid=\"close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22724039',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '其他-忽略[开启微信运动同步]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.heytap.health.main.MainActivity',\n          matches: '[text^=\"开启微信运动同步\"] + [text=\"忽略\"]',\n          exampleUrls: 'https://e.gkd.li/867170d7-5c10-48fc-8bda-9139235ef718',\n          snapshotUrls: 'https://i.gkd.li/i/23087769',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-应用使用情况',\n      desc: '点击[暂不]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.sleep.SleepHistoryActivity',\n          matches: [\n            '[text^=\"授权“OPPO 健康”应用访问应用使用情况\"]',\n            '[text=\"暂不\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23146074',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.market',\n  name: 'OPPO软件商店',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '@[clickable=true] > [text=\"跳过\"]', // 全局规则无效，必须点击clickable=true的节点才能跳过\n          snapshotUrls: 'https://i.gkd.li/i/14668997',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: [\n            'com.heytap.upgrade.ui.UpgradeActivity',\n            'com.heytap.cdo.client.cards.page.main.maintab.MainTabActivity',\n          ],\n          matches: '[text=\"发现软件商店新版本\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13455965',\n            'https://i.gkd.li/i/23688317',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-右下角广告悬浮卡片',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.heytap.cdo.client.cards.page.main.maintab.MainTabActivity',\n          matches: '@[desc=\"关闭\"] <2 [vid=\"view_id_float_ad\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/51493144-2758-4bc7-b2b7-cc85c04c6cc1',\n          snapshotUrls: 'https://i.gkd.li/i/14469932',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.music',\n  name: '音乐',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.allsaints.music.MainActivity',\n          matches: '@ImageView[clickable=true] + [text=\"检测到新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14987173',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.allsaints.ad.sjy.reward.SRewardLoadingActivity',\n            'com.allsaints.music.MainActivity',\n          ],\n          matches: [\n            '[vid=\"btnFreeListening\"][visibleToUser=true]',\n            '[vid=\"close\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/16200623',\n            'https://i.gkd.li/i/21175600',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.reader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.reader',\n  name: '阅读',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n          matches:\n            '[id=\"com.zhangyue.commonplugin:id/dialog_welfare_card_close\"]',\n          exampleUrls: 'https://e.gkd.li/76f226bb-fcd4-439a-9eed-520a9c35a0c0',\n          snapshotUrls: 'https://i.gkd.li/i/19890575',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-首页浮窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n          matches: '[id=\"com.heytap.reader:id/float_delete\"]',\n          exampleUrls:\n            'https://m.gkd.li/6328439/860371ea-1f09-4f82-8ed6-1436eca4a50d',\n          snapshotUrls: 'https://i.gkd.li/i/13387138',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-今日推荐',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.zhangyue.iReader.bookshelf.ui.ActivityBookShelf',\n          matches: '[id=\"com.heytap.reader:id/iv_float_read_continue_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/6328439/3ee7210c-970e-4c9a-acb6-9254245c27a0',\n          snapshotUrls: 'https://i.gkd.li/i/13387159',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.heytap.themestore.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.heytap.themestore',\n  name: '主题商店',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.nearme.themespace.activities.ThemeMainActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0][width<120 && height<120] <2 RelativeLayout[childCount=2] < ViewGroup[childCount=1] < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/4e97c4fa-6d59-4073-8dd1-fc2deb531a41',\n          snapshotUrls: 'https://i.gkd.li/i/21327613',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hichip.campro.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hichip.campro',\n  name: 'CamHipro',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'main.MainActivity',\n          matches: '[vid=\"iv_close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15847732',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.android.thememanager.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.android.thememanager',\n  name: '主题',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f9821020-292c-454d-8e04-83ca73b38358',\n          snapshotUrls: 'https://i.gkd.li/i/16573695',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.HwThemeManagerActivity',\n          matches: '[vid=\"mtDialogClose\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7ceeb371-e7a5-4c94-8afd-d2c5b56744a6',\n          snapshotUrls: 'https://i.gkd.li/i/17158049',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.android.totemweather.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.android.totemweather',\n  name: '荣耀天气',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-底部卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.WeatherHome',\n          matches: '[vid=\"ad_cancel\" || vid=\"btn_close\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/764769ff-b571-498a-ac57-f4b1ae331056',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14193808',\n            'https://i.gkd.li/i/19659583',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      activityIds: ['.WeatherHome', '.secondpage.activity.SecondPageActivity'],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[vid=\"ads_tag\" || vid=\"ad_flag_close_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7f9ea2fc-bb89-4aeb-b569-9ddbbd95452b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20116008',\n            'https://i.gkd.li/i/23259843',\n          ],\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"不感兴趣\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/38517cb1-c930-40cb-8c95-a4e1ecd57323',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20116013',\n            'https://i.gkd.li/i/23253602',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.appmarket.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.appmarket',\n  name: '荣耀应用市场',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[vid=\"tv_operation_skip\"]',\n          exampleUrls: 'https://e.gkd.li/549d5fc1-20a2-42aa-b249-4cc8896807e6',\n          snapshotUrls: 'https://i.gkd.li/i/16406381',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.hihonor.android.launcher.unihome.UniHomeLauncher',\n            'com.hihonor.appmarket.module.main.MainActivity',\n          ],\n          matches: '[id=\"com.hihonor.appmarket:id/iv_dialog_operation_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13063815',\n            'https://i.gkd.li/i/13168440',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮窗小广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.module.main.MainActivity',\n          matches: '[id=\"com.hihonor.appmarket:id/iv_floating_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13063928',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: '.module.main.MainActivity',\n          matches:\n            'TextView[text=\"接收通知\"] < LinearLayout < LinearLayout +n [id=\"android:id/buttonPanel\"] Button[text=\"否\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13073319',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-个性化内容推荐提示',\n      desc: '点击取消',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.module.main.MainActivity',\n          matches: [\n            '[text*=\"个性化的内容推荐\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/12825cd1-cd11-40eb-80e3-45d93c9ad058',\n          snapshotUrls: 'https://i.gkd.li/i/21884571',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.cloudmusic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.cloudmusic',\n  name: '荣耀音乐',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-推荐页卡片广告',\n      desc: '点击[关闭]-点击[直接关闭]',\n      fastQuery: true,\n      activityIds: 'com.netease.cloudmusic.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"tag_ad_banner\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15835795',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"直接关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15835857',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: 'com.netease.cloudmusic.activity.MainActivity',\n          matches: '[vid=\"dsl_dialog_root\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15860430',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.health.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.health',\n  name: '荣耀运动健康',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.hihonor.health.main.MainActivity',\n          matches: '[id=\"com.hihonor.health:id/iv_close_filled\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13759407',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.hihonor.health.main.MainActivity',\n          matches: '[vid=\"btn_close\"][desc=\"关闭弹窗\"]',\n          exampleUrls: 'https://e.gkd.li/1ab101bd-59cb-46c0-bbb1-7a0a9dccf79a',\n          snapshotUrls: 'https://i.gkd.li/i/16454150',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.hiboard.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.hiboard',\n  name: '负一屏',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      activityIds:\n        'com.hihonor.feed.ui.weather.nested.NestedWeatherDetailActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"ll_ad_flag_layout\"] > [vid=\"iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/3ca8edb5-ba16-406c-8319-7bc5389f6e31',\n          snapshotUrls: 'https://i.gkd.li/i/19670830',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/eaea2f1e-741a-4171-9cc1-8a2c86848d93',\n          snapshotUrls: 'https://i.gkd.li/i/19670664',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.magichome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.magichome',\n  name: '荣耀智慧空间',\n  groups: [\n    {\n      key: 10,\n      name: '局部广告-首页顶部广告',\n      activityIds: 'com.hihonor.magichome.business.MainActivity',\n      rules: '[id=\"com.hihonor.magichome:id/item_close_image\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12843930',\n    },\n    {\n      key: 11,\n      name: '其他-推荐服务声明',\n      desc: '推荐服务声明弹窗。默认点击\"取消\"按钮',\n      activityIds: 'com.hihonor.magichome.business.MainActivity',\n      rules:\n        '[text$=\"推荐服务声明\"] < LinearLayout < LinearLayout + LinearLayout > [id=\"com.hihonor.magichome:id/negative_btn\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12843976',\n    },\n    {\n      key: 12,\n      name: '更新提示',\n      desc: '点击以后再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.business.MainActivity',\n          matches:\n            'TextView[text=\"立即更新\"] -2 [id=\"com.hihonor.magichome:id/negative_btn\"][text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12916700',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.phoneservice.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.phoneservice',\n  name: '我的荣耀',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.hihonor.phoneservice.main.MainActivity',\n          matches: '[vid=\"ads_cancel\"]',\n          exampleUrls: 'https://e.gkd.li/539acb69-5c9c-4c4b-9757-d189b6852f89',\n          snapshotUrls: 'https://i.gkd.li/i/16476928',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-定位权限',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.hihonor.phoneservice.main.MainActivity',\n          matches:\n            '[text^=\"开启定位权限\"] + [id=\"com.hihonor.phoneservice:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12783134',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.servicecenter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.servicecenter',\n  name: '荣耀快服务',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.hihonor.servicecardcenter.activity.LauncherActivity',\n          matches: '[vid=\"float_cancel\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b4c18338-c330-4deb-9689-3e7f2e2f32a8',\n          snapshotUrls: 'https://i.gkd.li/i/14887872',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hihonor.vmall.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hihonor.vmall',\n  name: '荣耀商城',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-应用内弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.vmall.client.base.fragment.VmallWapActivity',\n            'com.vmall.client.splash.fragment.SplashActivity',\n          ],\n          matches: '[id=\"com.hihonor.vmall:id/gift_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13060881',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.vmall.client.messageCenter.fragment.MessageCenterActivity',\n            'com.vmall.client.base.fragment.VmallWapActivity',\n          ],\n          matches: [\n            '[text=\"开启消息通知\"]',\n            '[vid=\"notification_close\" || vid=\"iv_close\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13959029',\n            'https://i.gkd.li/i/16776398',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hj119.sygjx.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hj119.sygjx',\n  name: '实用工具箱',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13226595',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hnjiajie.zhixiaole.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hnjiajie.zhixiaole',\n  name: '智校乐',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"tev_countdown\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0b7ec3a5-d601-489a-a50c-32c876f38edf',\n          snapshotUrls: 'https://i.gkd.li/i/20745490',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hose.ekuaibao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hose.ekuaibao',\n  name: '易快报',\n  groups: [\n    {\n      key: 1,\n      matchTime: 10000,\n      actionMaximum: 2,\n      resetMatch: 'app',\n      name: '局部广告-首页横幅广告',\n      rules: '[text=\"不感兴趣\"][visibleToUser=true]',\n      snapshotUrls: [\n        'https://i.gkd.li/i/12649616',\n        'https://i.gkd.li/i/18455642',\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hpbr.bosszhipin.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hpbr.bosszhipin',\n  name: 'BOSS直聘',\n  groups: [\n    {\n      key: 0,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.module.main.activity.MainActivity',\n            '.module.launcher.WelcomeActivity',\n          ],\n          matches: '@ImageView[id=\"com.hpbr.bosszhipin:id/iv_cancle\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13440781',\n            'https://i.gkd.li/i/13623476',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huachenjie.shandong_school.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huachenjie.shandong_school',\n  name: '闪动校园',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.zj.zjdsp.ad.AdActivity',\n          matches:\n            '@ImageView[clickable=true][width<80 && height<80] - [text=\"反馈\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/39f264fa-ea75-4259-b8ed-672e7ec0974d',\n          snapshotUrls: 'https://i.gkd.li/i/24258941',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.home.HomeActivity',\n          matches:\n            '@[id=\"com.zj.zk.wm.allmodules:id/wm_pop_pic_close\"] +2 LinearLayout > [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/328ebf29-ec1e-469a-84b0-c6b255a74b48',\n          snapshotUrls: 'https://i.gkd.li/i/24258935',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huatu.handheld_huatu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huatu.handheld_huatu',\n  name: '华图在线',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.huatu.handheld_huatu.view.MainPopDialog',\n            'com.huatu.handheld_huatu.business.main.MainTabActivity',\n          ],\n          matches:\n            '[id=\"com.huatu.handheld_huatu:id/main_img_adv_bg\"] + [id=\"com.huatu.handheld_huatu:id/main_img_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12715702',\n            'https://i.gkd.li/i/12744973',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.business.main.MainTabActivity',\n          matches: '[text*=\"开启通知提示\"] +2 LinearLayout > [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715719',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.android.thememanager.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.android.thememanager',\n  name: '华为主题',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          matches: '[text^=\"跳过\"][text.length<=10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12657379',\n            'https://i.gkd.li/i/13069736',\n            'https://i.gkd.li/i/13762181',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.huawei.android.thememanager.HwThemeManagerActivity',\n          matches: '[vid=\"iv_ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2ca3890a-ef46-4f10-92ec-bfb921582a6a',\n          snapshotUrls: 'https://i.gkd.li/i/16993275',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.huawei.android.thememanager.mvp.view.activity.onlinefont.OnlineFontPreviewActivity',\n          matches: '[vid=\"iv_vip_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5e5afbbf-b891-47f3-9543-48ceb3fd0104',\n          snapshotUrls: 'https://i.gkd.li/i/16993276',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.huawei.android.thememanager.HwThemeManagerActivity',\n          matches:\n            '[vid=\"pps_label_ll\" || vid=\"announce_ad_close_layout\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/04d831b8-0a98-4b3a-9ecc-f9026c1d7f2c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16992846',\n            'https://i.gkd.li/i/16993185',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.huawei.android.thememanager.mvp.view.activity.onlinetheme.OnlineThemePreviewActivity',\n          matches:\n            '@LinearLayout[clickable=true] < LinearLayout -2 LinearLayout >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/1f3cecca-2339-4271-873e-5ecb65263a8a',\n          snapshotUrls: 'https://i.gkd.li/i/16993229',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.huawei.android.thememanager.mvp.view.activity.onlinefont.OnlineFontPreviewActivity',\n          matches: '[vid=\"download_pps_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8bace857-9eb3-4b6a-83b7-34328a3f96eb',\n          snapshotUrls: 'https://i.gkd.li/i/16993406',\n        },\n        {\n          preKeys: [0, 1, 2],\n          activityIds: [\n            'com.huawei.openalliance.ad.activity.FeedbackActivity',\n            '.HwThemeManagerActivity',\n          ],\n          anyMatches: [\n            '[text=\"直接关闭\"]',\n            '@[clickable=true] >2 [text=\"不感兴趣\"]',\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/93458efb-d891-46b3-a2a0-8629a0399731',\n            'https://e.gkd.li/0e72693d-4ad3-4efd-b469-5aa635dd958b',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/16992845',\n            'https://i.gkd.li/i/16993186',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '全屏广告-首页活动弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.huawei.android.thememanager.HwThemeManagerActivity',\n            'com.huawei.android.launcher.unihome.UniHomeLauncher',\n          ],\n          matches:\n            '[id=\"com.huawei.android.thememanager:id/campaign_dialog_close_image\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12657939',\n            'https://i.gkd.li/i/12667815',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: '@[text=\"取消\"] < * - * >n [text=\"开启消息通知\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12918192',\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.android.totemweather.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.android.totemweather',\n  name: '华为天气',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter', // 根据 https://github.com/gkd-kit/subscription/pull/1180#issuecomment-1767735683 反馈，此处使用 clickCenter 事件。\n          matches: '[id=\"com.huawei.hms.ads.uiengine:id/hiad_skip_text\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12928975',\n            'https://i.gkd.li/i/13226636',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.huawei.android.totemweather.WeatherMainActivity',\n            'com.huawei.android.totemweather.WeatherHome',\n          ],\n          matches:\n            '[vid=\"rl_close_pps\" || vid=\"ad_cancel\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13521221',\n            'https://i.gkd.li/i/13787501',\n            'https://i.gkd.li/i/13800100',\n            'https://i.gkd.li/i/14278462', // 使用visibleToUser=true防止在此页面误触\n            'https://i.gkd.li/i/15831584',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.huawei.android.totemweather.composite.MarketCompositeActivity',\n          matches:\n            '[id=\"com.huawei.android.totemweather:id/promote_ad_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13218197',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.news.main.content.ModulesActivity',\n          matches:\n            '@[clickable=true][text=\"负反馈\"] <<n [vid=\"content_main_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24688832',\n        },\n        {\n          preKeys: [0, 1],\n          key: 99,\n          activityIds: [\n            'com.huawei.openalliance.ad.activity.FeedbackActivity',\n            '.news.main.content.ModulesActivity',\n          ],\n          anyMatches: [\n            '[text=\"直接关闭\"]',\n            '@[clickable=true][text=\"直接关闭\"] <<n [vid=\"content_main_view\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13259434',\n            'https://i.gkd.li/i/15831539',\n            'https://i.gkd.li/i/24688856',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.appmarket.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.appmarket',\n  name: '华为应用市场',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[vid=\"clock_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15523957',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MarketActivity',\n          matches: '@[text=\"以后再说\"] + [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13228520',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-应用更新页面-点击[查看更多]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.huawei.appmarket.service.appmgr.view.activity.AppUpdateActivity',\n          matches: '[text=\"查看更多\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e2283b1d-3041-49c5-aca2-7c165c83ce37',\n          snapshotUrls: 'https://i.gkd.li/i/14738587',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-热门应用推荐弹窗',\n      desc: '点击[直接进入]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.huawei.appgallery.upgraderecommendation.ui.',\n          matches: '[text=\"直接进入\" || text=\"进入主页\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/89e6f2eb-b543-4dd8-88ce-6e888d0d8c8a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14861810',\n            'https://i.gkd.li/i/21231632',\n            'https://i.gkd.li/i/24640204',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.huawei.appmarket.MarketActivity',\n          matches: '[vid=\"close_icon\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/13a31ae0-10c8-49bc-9154-363498237eff',\n          snapshotUrls: 'https://i.gkd.li/i/15523964',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-通知权限',\n      desc: '点击[以后再说]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.huawei.appgallery.jointmessage.jointmessage.impl.activity.NotificationSwitchDialogActivity',\n          matches: '[text=\"以后再说\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/1a0531ef-a18c-483d-8ac9-b50c96c6431d',\n          snapshotUrls: 'https://i.gkd.li/i/18328929',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-自动安装应用',\n      fastQuery: true,\n      activityIds:\n        'com.huawei.appgallery.systeminstalldistservice.riskcheck.ui.activity.InstallDistActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[vid=\"hidden_card_checkbox\"][checked=false][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2de4eb7c-964e-4b24-ab5f-1460c7993a0b',\n          snapshotUrls: 'https://i.gkd.li/i/18492709',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"继续安装\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6b79c349-8071-4598-a337-20a2f02df2f7',\n          snapshotUrls: 'https://i.gkd.li/i/18492712',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[text=\"完成\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/445fc7d4-8ee3-4f29-a79b-cd4c0d4fd11f',\n          snapshotUrls: 'https://i.gkd.li/i/18492760',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.browser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.browser',\n  name: '华为浏览器',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13403785',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '关闭资讯通知后，总是弹窗让打开',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[id=\"com.huawei.browser:id/close_push_guide_window\"]',\n          exampleUrls:\n            'https://m.gkd.li/87047583/3982b64a-15a7-4c0c-b179-2ed82d6ea18e',\n          snapshotUrls: 'https://i.gkd.li/i/13692404',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.huawei.browser.customtab.EmuiBrowserCustomTabActivity',\n          matches:\n            'View[id=\"root\"] > View[index=1] > @View[visibleToUser=true][id=\"logo-close-btn\"] <<n [vid=\"web_view_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13997759',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.download.DownloadRecordsActivity',\n          matches: '[vid=\"group_header_close_button\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f5b1576c-372d-4376-b122-129cd0249d85',\n          snapshotUrls: 'https://i.gkd.li/i/20852584',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.health.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.health',\n  name: '华为运动健康',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          matches: '[id=\"com.huawei.health:id/hiad_skip_text\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13215012',\n            'https://i.gkd.li/i/13228290',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.huawei.watchface.api.WebViewActivity',\n          matches:\n            'View[childCount=2] > View + View[childCount=1] > Image[childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/13546292',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '其他-个性化推荐弹窗',\n      rules: [\n        {\n          activityIds: 'com.huawei.watchface.api.WebViewActivity',\n          matches:\n            '[text=\"开启个性化推荐\"] +2 [text=\"开启\"] + Button[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13546292',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.huawei.health.MainActivity',\n          matches:\n            '[id=\"com.huawei.health:id/marketing_close_icon\" || vid=\"close_button_layout\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13587206',\n            'https://i.gkd.li/i/23763115',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '其他-请求开启[实时推送步数]弹窗',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.huawei.health.MainActivity',\n          matches: [\n            '[text*=\"实时推送步数\" || text*=\"通知栏实时显示步数\"][visibleToUser=true]',\n            '[text*=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/12af7c3a-3d53-43f0-880e-130135bad1a3',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14321121',\n            'https://i.gkd.li/i/16494762',\n          ],\n        },\n        {\n          key: 1,\n          matches: [\n            '[text*=\"是否开启计步功能\"][visibleToUser=true]',\n            '[text*=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ab4e3797-40e6-4d1e-96b2-c098e78cf848',\n          snapshotUrls: 'https://i.gkd.li/i/20499245',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds:\n            'com.huawei.hwversionmgr.activity.AppUpdateDialogActivity',\n          matches: '[text=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15521811',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.hidisk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.hidisk',\n  name: '云空间',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-[升级云空间]弹窗',\n      desc: '点击[放弃]/[以后再说]/[关闭]',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          activityIds:\n            'com.huawei.android.hicloud.ui.activity.BackupNotificationActivity',\n          matches: [\n            '[text=\"免费升级云空间\" || text=\"云空间不够了\"]',\n            '[text=\"放弃\" || text=\"以后再说\"]',\n          ],\n          exampleUrls: 'https://e.gkd.li/5a445ec2-e3bf-445a-be82-7c91036bd05a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14881774',\n            'https://i.gkd.li/i/14881775',\n          ],\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.huawei.android.hicloud.ui.activity.GuideWebViewActivity',\n          matches:\n            '@[clickable=true] + [visibleToUser=true][text^=\"equityDistri\"] <<n [vid=\"guid_webview_mian\"]',\n          exampleUrls: 'https://e.gkd.li/a541bce4-3fb3-412a-8c51-d93f4eb78848',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15523963',\n            'https://i.gkd.li/i/16511513',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.himovie.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.himovie',\n  name: '华为视频',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          matches: '[vid=\"hiad_skip_text\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15523945',\n        },\n        {\n          key: 1,\n          action: 'clickCenter',\n          matches:\n            '([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]) || ([visibleToUser=true][text*=\"跳过\"][text.length<10][width<500 && height<200])',\n          exampleUrls: 'https://e.gkd.li/ec00ceef-3930-4240-92f5-56816fc90be2',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20745477',\n            'https://i.gkd.li/i/20773665',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.huawei.video.content.impl.explore.main.activity.MainActivity',\n          matches: '[vid=\"advert_dialog_close_image_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c842b073-bbea-4a37-a45b-4d2a86cfa6c5',\n          snapshotUrls: 'https://i.gkd.li/i/20775878',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.hwid.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.hwid',\n  name: 'HMS Core',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.huawei.openalliance.ad.ppskit.activity.InnerPPSInterstitialAdActivity',\n            'com.huawei.openalliance.ad.ppskit.activity.InterstitialAdActivity',\n          ],\n          matches:\n            '@[id*=\"interstitial_close\"][clickable=true] +n * >n [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12709068',\n            'https://i.gkd.li/i/24675884', //平板?\n            'https://i.gkd.li/i/24979139',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.hwread.dz.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.hwread.dz',\n  name: '华为阅读',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter', // https://github.com/AIsouler/GKD_subscription/issues/246\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15862073',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.lives.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.lives',\n  name: '生活服务',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f693fb2b-92a6-4aa1-8b0a-9bc5d66c037e',\n          snapshotUrls: 'https://i.gkd.li/i/20788828',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击[取消]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.MainActivity',\n          matches: [\n            '[text*=\"消息通知\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/756362f5-7d43-4993-8ed9-962615a5a278',\n          snapshotUrls: 'https://i.gkd.li/i/20903425',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-信息共享权限',\n      desc: '点击[取消]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.MainActivity',\n          matches: [\n            '[text^=\"开启服务号三方商家服务推荐向您提供更感兴趣的内容\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/1fc31176-b989-4041-9b1d-759ee737133f',\n          snapshotUrls: 'https://i.gkd.li/i/20903428',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.music',\n  name: '华为音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/20773821',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-播放界面直播浮窗',\n      fastQuery: true,\n      activityIds: 'com.android.mediacenter.MainActivity',\n      rules: [\n        {\n          matches:\n            'TextView[id=\"com.huawei.music:id/live_info\"] < LinearLayout -2 [id=\"com.huawei.music:id/close_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13067649',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.android.mediacenter.PageActivity',\n            'com.android.mediacenter.MainActivity',\n          ],\n          matches:\n            'ImageView[vid=\"campaign_dialog_close_image_view\" || vid=\"iv_close\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/00c83449-9809-4de8-9c7c-c6ce1b9fa2c3',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14193738',\n            'https://i.gkd.li/i/15523958',\n            'https://i.gkd.li/i/24676040',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.android.mediacenter.MainActivity',\n          matches:\n            'RelativeLayout[childCount=2] + * [vid=\"close_radio_camp_button\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b205c209-07c9-49e1-b72d-f9b31d9bc2d9',\n          snapshotUrls: 'https://i.gkd.li/i/14193767',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.android.mediacenter.MainActivity',\n          matches: '[vid=\"ad_close\"]',\n          exampleUrls: 'https://e.gkd.li/586d860f-7f7c-41c7-af0f-bc17ac695a1a',\n          snapshotUrls: 'https://i.gkd.li/i/16812666',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '分段广告-首页横幅广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          activityIds: 'com.android.mediacenter.MainActivity',\n          matches: '[vid=\"ad_more_layout\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c64216a4-46bc-461d-9973-9ffcfab2fd51',\n          snapshotUrls: 'https://i.gkd.li/i/20745787',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          activityIds: 'com.huawei.openalliance.ad.activity.FeedbackActivity',\n          matches: '[text=\"直接关闭\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/9c4da3cf-897d-4b4a-bda0-e5e35af19b1d',\n          snapshotUrls: 'https://i.gkd.li/i/20745789',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.search.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.search',\n  name: '智慧搜索',\n  groups: [\n    {\n      key: 0,\n      name: '分段广告-下拉搜索横幅广告',\n      fastQuery: true,\n      activityIds: ['.HomeActivity', '.MainActivity'],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[id=\"com.huawei.search:id/iv_topic_close_in_image\" || id=\"com.huawei.search:id/iv_topic_left_close\" || id=\"com.huawei.search:id/iv_topic_close_in_pps\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12667938',\n            'https://i.gkd.li/i/12745008',\n            'https://i.gkd.li/i/12841076',\n            'https://i.gkd.li/i/13266095',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: 'TextView[text=\"直接关闭\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12745001'],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-搜索框下广告',\n      desc: '点击x掉',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.HomeActivity',\n          matches: '[vid=\"btn_full_mode_cancel\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24856481',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huawei.wallet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huawei.wallet',\n  name: '华为钱包',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-钱包扩展服务提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '[text=\"开启钱包扩展服务\"] +2 [id=\"com.huawei.wallet:id/linear_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13441814',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-小额免密支付弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.huawei.petalpay.userapp.function.withhold.view.activity.PetalPayGuideSmallFreePwdActivity',\n          matches: ['[text=\"开通小额免密支付\"]', '[vid=\"title_close_btn\"]'],\n          exampleUrls: 'https://e.gkd.li/7fcdf7d8-d9db-4b30-840d-3f656f645fe3',\n          snapshotUrls: 'https://i.gkd.li/i/16397908',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-首页卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: '.view.MainActivity',\n          matches: '[vid=\"ad_sign_text_and_feedback\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/11edaf9a-f54c-489c-99e0-78da25a5cc9b',\n          snapshotUrls: 'https://i.gkd.li/i/16833449',\n        },\n        {\n          preKeys: [0],\n          activityIds: 'com.huawei.openalliance.ad.activity.FeedbackActivity',\n          matches: '[text=\"直接关闭\"]',\n          exampleUrls: 'https://e.gkd.li/f0d67fb4-ccdb-443b-8e4e-9dff2242a84f',\n          snapshotUrls: 'https://i.gkd.li/i/16833452',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-支付成功后点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.huawei.nfc.carrera.ui.swipe.SwipeResultActivity',\n          matches: '[vid=\"btn_completed\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/984fd805-ad50-4ffc-adce-fffe42109e98',\n          snapshotUrls: 'https://i.gkd.li/i/18146717',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-NFC权限',\n      desc: '点击取消',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.huawei.nfc.carrera.ui.swipe.SetDefaultPayServiceActivity',\n          matches: [\n            '[text*=\"是否每次使用华为钱包都自动开启 NFC\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/87466a06-2169-4808-971e-d347cd40ac66',\n          snapshotUrls: 'https://i.gkd.li/i/20918311',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huaxiaozhu.rider.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huaxiaozhu.rider',\n  name: '花小猪打车',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击\"稍后更新\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.huaxiaozhu.sdk.app.MainActivity',\n          matches: '[text=\"稍后更新\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7b5e81bf-6c51-4222-b832-ba4176be2a4b',\n          snapshotUrls: 'https://i.gkd.li/i/14233480',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.huaxiaozhu.sdk.app.MainActivity',\n          matches: '[vid=\"popClose\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1555a2be-92cb-4360-b50f-019f30955a22',\n          snapshotUrls: 'https://i.gkd.li/i/14233488',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hunantv.imgo.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hunantv.imgo.activity',\n  name: '芒果TV',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页推荐广告',\n      activityIds: 'com.hunantv.imgo.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[id=\"com.hunantv.imgo.activity:id/layout_logo\"] > [id=\"com.hunantv.imgo.activity:id/tv_ad_logo\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12472616',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '[id=\"com.hunantv.imgo.activity:id/close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12472615',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.hunantv.imgo.activity.MainActivity',\n          matches:\n            '[id=\"com.hunantv.imgo.activity:id/imgPromotion\"] + [id=\"com.hunantv.imgo.activity:id/vClosePromotionView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12818464',\n        },\n        {\n          key: 1,\n          activityIds: 'com.hunantv.imgo.activity.MainActivity',\n          matches: '@TextView[id=null][text=\"\"] - View > Image[id=\"hotGif\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12818528',\n        },\n        {\n          key: 2,\n          activityIds: 'com.hunantv.imgo.activity.MainActivity',\n          fastQuery: true,\n          matches:\n            '[id=\"com.hunantv.imgo.activity:id/ivPromotion\"] + [id=\"com.hunantv.imgo.activity:id/btnClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761169',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-右侧悬浮广告',\n      activityIds: 'com.hunantv.imgo.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[id=\"com.hunantv.imgo.activity:id/apperience_close\"] + [id=\"com.hunantv.imgo.activity:id/apperience_enter\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12818430',\n        },\n        {\n          key: 1,\n          matches:\n            '@[id=\"com.hunantv.imgo.activity:id/iv_float_close\"] + [id=\"com.hunantv.imgo.activity:id/iv_float_content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12818481',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-视频播放时的广告',\n      desc: '点击[关闭广告]',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.mgtv.ui.videoplay.MGVideoPlayActivity',\n          matches: '[text=\"关闭广告\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/386d0906-f81f-43d2-af7f-adc3ab0ea5a6',\n          snapshotUrls: 'https://i.gkd.li/i/14322017',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.huodao.hdphone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.huodao.hdphone',\n  name: '找靓机',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-超级补贴日弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[vid=\"iv_adv\"] + [vid=\"dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13927567',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.huodao.hdphone.mvp.view.main.NewMainActivity',\n          matches: '[vid=\"iv_recycle_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/dc1534ca-9ab1-4d7b-8da4-6c7992882c94',\n          snapshotUrls: 'https://i.gkd.li/i/15052025',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hupu.games.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hupu.games',\n  name: '虎扑',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '点击卡片右上角广告文字,出现广告反馈,点击屏蔽该广告',\n      fastQuery: true,\n      activityIds: [\n        'com.hupu.games.main.MainActivity',\n        'com.hupu.android.bbs.detail.PostDetailActivity',\n        'com.hupu.topic.TopicActivity',\n        'com.hupu.android.bbs.page.rating.ratingDetail.RatingDetailActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"shield_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12511005',\n            'https://i.gkd.li/i/13258026',\n            'https://i.gkd.li/i/13259692',\n            'https://i.gkd.li/i/15360331',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@[clickable=true] > [text=\"屏蔽该广告\" || text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12511010',\n            'https://i.gkd.li/i/12534848',\n            'https://i.gkd.li/i/13259699',\n            'https://i.gkd.li/i/15360360',\n            'https://i.gkd.li/i/17869227',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hupu.shihuo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hupu.shihuo',\n  name: '识货',\n  groups: [\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text=\"去开启\"] + [id=\"com.hupu.shihuo:id/ivClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13704887',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds:\n            'com.shizhuang.duapp.modules.rn.mini.MiniReactActivity$MiniUITranslucentReactActivity',\n          matches:\n            '[id=\"com.hupu.shihuo:id/fragment_container\"] >11 @ViewGroup[clickable=true] > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/13115664',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      desc: '点击[以后再说]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.shizhi.shihuoapp.module.main.ui.main.MainActivity',\n          matches: '[text=\"发现新版本\"] +2 ViewGroup > [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14052208',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hxzd.wcf.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hxzd.wcf',\n  name: '五寸方',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: ['com.hxzd.wcf.ui.MainActivity', '.ui.SplashActivity'],\n          matches: '[vid=\"btn_close\"]',\n          exampleUrls: 'https://e.gkd.li/be986139-cdbd-4dc7-a52f-6cb1e1a8061c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14155547',\n            'https://i.gkd.li/i/16828682',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.hyww.wisdomtree.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.hyww.wisdomtree',\n  name: '智慧树',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '百度广告',\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] + RelativeLayout >(1,2) [text=\"反馈\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13799876',\n            'https://i.gkd.li/i/13852024',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          name: '信息流广告',\n          fastQuery: true,\n          matches: '@[vid=\"rl_down\"] <<n [vid=\"tt_ad_content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13852023',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.icbc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.icbc',\n  name: '中国工商银行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.main.MainActivity',\n          matches: '[id=\"com.icbc:id/tv_time\"][text*=\"跳过\"][text.length<=6]',\n          snapshotUrls: 'https://i.gkd.li/i/13330431',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '评价提示',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: [\n            '[text^=\"觉得“中国工商银行”好用吗\"]',\n            '[text=\"下次再说\"][clickable=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/85e48265-4269-4122-a70f-5361698954c0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18296892',\n            'https://i.gkd.li/i/24981859',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-右下角浮标广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.activity.web.ICBCWebView',\n            '.activity.main.MainActivity',\n          ],\n          matches: '[vid=\"iv_close_task_center\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22616307',\n            'https://i.gkd.li/i/23227312',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-未登录时自动点击登录',\n      desc: '仅限老年版和英文版可用',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.main.MainActivity',\n          matches:\n            '[vid=\"rl_remit_login_button_background\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23227516',\n            'https://i.gkd.li/i/23227551',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ideal.flyerteacafes.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ideal.flyerteacafes',\n  name: '飞客',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ideal.flyerteacafes.ui.HomeActivity',\n          matches:\n            '@[id=\"com.ideal.flyerteacafes:id/close\"] - FrameLayout > [id=\"com.ideal.flyerteacafes:id/iv_adv_tip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13466119',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ifeng.news2.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ifeng.news2',\n  name: '凤凰新闻',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      activityIds: [\n        '.activity.IfengTabMainActivity',\n        '.activity.DocDetailActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches:\n            '@[vid=\"img_feedback_left_of_image\"] < LinearLayout -2 LinearLayout >2 [vid=\"adv_label\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/63216ca1-4f7c-4a95-9b9e-7ac4c894f0c0',\n          snapshotUrls: 'https://i.gkd.li/i/19752573',\n        },\n        {\n          key: 2,\n          matches:\n            '[vid=\"iv_item_del\" || vid=\"doc_detail_titleimg_ad_delete\" || vid=\"del_click\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0a199f54-70f9-45ae-8025-896b688dc8e6',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19752570',\n            'https://i.gkd.li/i/19752567',\n            'https://i.gkd.li/i/19752561',\n          ],\n        },\n        {\n          preKeys: [1, 2],\n          matches: '@[clickable=true] > [text=\"不感兴趣\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e182591a-492d-49ec-8820-20bea10495d9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19752582',\n            'https://i.gkd.li/i/19752559',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-定位权限',\n      desc: '点击取消',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ifeng.news2.activity.IfengTabMainActivity',\n          matches:\n            '[text*=\"请求您的位置\"] + [id=\"com.ifeng.news2:id/permission_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12705531',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.iflytek.womusicclient.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.iflytek.womusicclient',\n  name: '联通视频彩铃',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'android.womusic.com.songcomponent.MainActivity',\n          matches: '[vid=\"iv_img\"] + [vid=\"btn_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/64eb594e-f764-4080-a3e6-620e7174602f',\n          snapshotUrls: 'https://i.gkd.li/i/14680681',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.igpsport.igpsportandroid.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.igpsport.igpsportandroid',\n  name: 'iGPSPORT',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.igpsport.globalapp.main.MainActivity',\n          matches:\n            '@[visibleToUser=true][text=\"忽略本次\"] <<n [vid=\"updateComposeView\"]',\n          exampleUrls: 'https://e.gkd.li/57341233-2547-4469-869c-e05fdebb20fc',\n          snapshotUrls: 'https://i.gkd.li/i/13797203',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.instagram.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.instagram.android',\n  name: 'Instagram',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '但是步骤较多, 影响app使用',\n      fastQuery: true,\n      activityIds: 'com.instagram.mainactivity.InstagramMainActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击\"更多\"按钮',\n          actionCd: 4000,\n          matches:\n            '[text=\"赞助内容\"] + [id=\"com.instagram.android:id/feed_more_button_stub\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12798562',\n        },\n        {\n          key: 1,\n          name: '点击\"隐藏广告\"按钮',\n          matches: '@ViewGroup >n [text=\"隐藏广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12798571',\n            'https://i.gkd.li/i/12829448',\n          ],\n        },\n        {\n          key: 2,\n          name: '点击\"广告不相关\"按钮',\n          matches: '@ViewGroup > [text=\"广告不相关\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12798590',\n            'https://i.gkd.li/i/12829464',\n          ],\n        },\n        {\n          key: 3,\n          name: '关闭[你不会再看到这条广告]',\n          action: 'back',\n          matches: '[text=\"你不会再看到这条广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12829492',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-自动点击[查看翻译]',\n      fastQuery: true,\n      activityIds: 'com.instagram.mainactivity.InstagramMainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"查看翻译\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e92702d8-8349-4718-aa4d-664bf3d2f6e5',\n          snapshotUrls: 'https://i.gkd.li/i/14093211',\n        },\n        {\n          key: 1,\n          excludeMatches: '[text=\"查看翻译\"][clickable=true]',\n          matches:\n            '[text$=\"查看翻译\"][clickable=false][desc!=null][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7d6da15b-1c3f-4160-a2d3-d8223bc55132',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14784095',\n            'https://i.gkd.li/i/16776676', // 避免误触\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.intsig.camscanner.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.intsig.camscanner',\n  name: '扫描全能王',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-主页面上方广告',\n      activityIds: 'com.intsig.camscanner.mainmenu.mainactivity.MainActivity',\n      rules:\n        '[id=\"com.intsig.camscanner:id/card_ad_tag\"] + [id=\"com.intsig.camscanner:id/card_close\"]',\n      exampleUrls: 'https://e.gkd.li/772a24be-ca12-459f-8abf-e9573cde3f56',\n      snapshotUrls: 'https://i.gkd.li/i/12668813',\n    },\n    {\n      key: 2,\n      name: '全屏广告-开通会员', // 该广告在开屏完成后立即弹出\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0, // 无`activityId`\n          matches: '[vid=\"iv_cancel\"]',\n          fastQuery: true,\n          exampleUrls: 'https://e.gkd.li/5f628895-e214-4a0b-8344-14f3d8c20807',\n          snapshotUrls: 'https://i.gkd.li/i/16761285',\n        },\n        {\n          key: 1,\n          activityIds: '.guide.CancelAdShowCnGuidePurchaseActivity',\n          matches: '[vid=\"iv_drop_cnl_close\"]',\n          fastQuery: true,\n          exampleUrls: 'https://e.gkd.li/e9a6775a-be51-4aca-b3cd-0b496efe2f0c',\n          snapshotUrls: 'https://i.gkd.li/i/17002087',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '其他-关闭[发现新截图]提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.mainmenu.mainactivity.MainActivity',\n          matches:\n            'RelativeLayout[vid=\"rl_screenshot\"] + ImageView[vid=\"iv_esc\"]',\n          exampleUrls: 'https://e.gkd.li/c66080aa-1758-4a69-9752-aa1373d7f2b5',\n          snapshotUrls: 'https://i.gkd.li/i/16975714',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ixyzh.question.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ixyzh.question',\n  name: '小包搜题',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.ixyzh.question.HomeActivity',\n          matches:\n            '@ImageView[clickable=true][desc^=\"close\"] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/eced433b-0fd5-4999-90de-45aab80c0b51',\n          snapshotUrls: 'https://i.gkd.li/i/16661116',\n        },\n        {\n          key: 1,\n          activityIds: 'com.ixyzh.question.ui.fragments.my.MyDownloadActivity',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][visibleToUser=true][text=null] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/ab77a0a8-14df-4d73-99e7-a1428965f2dd',\n          snapshotUrls: 'https://i.gkd.li/i/16661119',\n        },\n        {\n          key: 2,\n          activityIds: 'com.ixyzh.question.ui.exercise.ExerciseActivity',\n          matches:\n            '@View[clickable=true] < FrameLayout[desc^=\"close\"] + FrameLayout >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/3dc83ae2-72f0-4660-b175-0610765fc6ec',\n          snapshotUrls: 'https://i.gkd.li/i/16661120',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jarworld.bleach.bvn.sjm.cyc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jarworld.bleach.bvn.sjm.cyc',\n  name: '次元城动漫',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.jarworld.bleach.bvn.sjm.cyc.MainActivity',\n          matches: '[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/13626949',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.jarworld.bleach.bvn.sjm.cyc.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13626950',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.kwad.sdk.api.proxy.app.KsRewardVideoActivity',\n          matches:\n            'ViewGroup[childCount=2] > ViewGroup[childCount=2] > @ViewGroup[clickable=true][childCount=1][visibleToUser=true] > ImageView[childCount=0] <<n [id=\"com.jarworld.bleach.bvn.sjm.cyc:id/ksad_js_reward_card\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13635410',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jc.avatar.mm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jc.avatar.mm',\n  name: '萌妹',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.jc.avatar.mm.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13188475',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jd.app.reader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jd.app.reader',\n  name: '京东读书',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/6f4561e5-b998-43f9-8848-b6b43d045a3d',\n          snapshotUrls: 'https://i.gkd.li/i/14189228',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[vid=\"mJumpBtn\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/28a83ffc-ba28-4d0e-8f28-b48a4a542f23',\n          snapshotUrls: 'https://i.gkd.li/i/16486457',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9007',\n            top: 'width * 0.1603',\n          },\n          matches: '[id=\"com.jd.app.reader:id/animation_view\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ab677b66-4681-4672-a1d6-3b5938e7f374',\n          snapshotUrls: 'https://i.gkd.li/i/13264389',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jingdong.app.reader.main.ui.JdMainActivity',\n          matches: '[vid=\"mCloseBtn\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ac85ef54-5180-4740-b12d-608b37ad5502',\n          snapshotUrls: 'https://i.gkd.li/i/16486458',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-阅读页面弹窗广告',\n      rules: [\n        {\n          activityIds: 'com.jd.read.engine.activity.EngineReaderActivity',\n          matches: '[id$=\"ad_read_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12881810',\n            'https://i.gkd.li/i/12893631',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jd.jdlite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jd.jdlite',\n  name: '京喜特价',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.jd.jdlite.MainFrameActivity',\n          matches: '@[desc=\"关闭页面\"] - FrameLayout >n [text=\"极速版弹窗\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12727396',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainFrameActivity',\n          matches:\n            '@ImageView[clickable=true] - LinearLayout > [text=\"开启消息通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13062969',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jd.jrapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jd.jrapp',\n  name: '京东金融',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.bm.mainbox.main.MainActivity',\n          matches:\n            'TextView[text^=\"打开通知\"] +2 [id=\"com.jd.jrapp:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13249998',\n        },\n        {\n          key: 1,\n          activityIds: '.bm.common.web.ui.WebActivity',\n          matches:\n            '@View - * > [visibleToUser=true][text=\"开启并订阅通知\"] <<n [id=\"com.jd.jrapp:id/webview\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13255656',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.bm.mainbox.main.MainActivity',\n          matches:\n            '@ImageButton[id=\"com.jd.jrapp:id/ib_close\"] + RelativeLayout [text^=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13628364',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示-满意度打分弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.dy.api.JRDynamicPickerActivity',\n          matches: '@ImageView[clickable=true] - [text$=\"满意度打几分？\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13804561',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jd.jxj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jd.jxj',\n  name: '京粉',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jd.jxj.modules.main.SlidingTabActivity',\n          matches: '[vid=\"popup_close_imgid\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ac5a04ef-3199-4ae5-8863-ea365b5efbab',\n          snapshotUrls: 'https://i.gkd.li/i/15369226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jd.pingou.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jd.pingou',\n  name: '京喜',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jd.jdlite.MainFrameActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] -2 [text^=\"开启定位授权\"]',\n          exampleUrls: 'https://e.gkd.li/311e64ee-e775-41fb-b981-ceead0280ac7',\n          snapshotUrls: 'https://i.gkd.li/i/13804515',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jdcar.jch.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jdcar.jch',\n  name: '京东养车',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@[vid^=\"tv_jump\"][visibleToUser=true] - [vid=\"splash_ad_layout\"]',\n          exampleUrls: 'https://e.gkd.li/123daf14-31ac-4b5f-93cf-8b05efa26d03',\n          snapshotUrls: 'https://i.gkd.li/i/18308609',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jingdong.app.mall.MainFrameActivity',\n          matches:\n            '[id=\"com.jd.jdjch.lib.aurahome.feature:id/img_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/70efe1ea-0456-4438-b046-3494393191d7',\n          snapshotUrls: 'https://i.gkd.li/i/18287988',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jdcloud.mt.smartrouter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jdcloud.mt.smartrouter',\n  name: '京东云无线宝',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"iv_close\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/26521f31-ee9b-4bab-8275-fab75a76c96e',\n          snapshotUrls: 'https://i.gkd.li/i/14432168',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jdd.motorfans.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jdd.motorfans',\n  name: '摩托范',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.MTMainActivity',\n            '.modules.detail.DetailActivity2',\n            '.search.SearchMainActivity',\n            '.modules.base.FragmentContainerActivity',\n            '.message.ChatDetailActivity',\n          ],\n          matches:\n            '[id=\"com.jdd.motorfans:id/ad_content\"] >n [id=\"com.jdd.motorfans:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12733646',\n            'https://i.gkd.li/i/12798654',\n            'https://i.gkd.li/i/12878843',\n            'https://i.gkd.li/i/12913956',\n            'https://i.gkd.li/i/13188861',\n            'https://i.gkd.li/i/14546613',\n          ],\n        },\n        {\n          key: 1,\n          matches: '@ImageView - RelativeLayout > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12826288',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            'com.jdd.motorfans.MTMainActivity',\n            '.modules.detail.DetailActivity2',\n          ],\n          matches:\n            '[vid=\"iv_right_top_close\" || vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0f4b8d7d-fda4-43ee-b892-3a85d6dae278',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17002101',\n            'https://i.gkd.li/i/17078108',\n            'https://i.gkd.li/i/20918047',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-信息流广告',\n      activityIds: 'com.jdd.motorfans.MTMainActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点关闭按钮',\n          matches:\n            '[id=\"com.jdd.motorfans:id/recyclerView\"] > FrameLayout[id=\"com.jdd.motorfans:id/container\"] > FrameLayout[childCount=3] > ImageView[clickable=true][id=null] + ImageView[clickable=true][id=null]', //虽然在审查页面能匹配上，但是在“执行选择器”功能下一直处于搜索中，先添加后到真机测试\n          snapshotUrls: 'https://i.gkd.li/i/12826382',\n        },\n        {\n          preKeys: [0],\n          name: '点击不感兴趣',\n          matches:\n            'TextView[id=\"com.jdd.motorfans:id/beizi_dislike_item_multi_one_title\"][text*=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12829069',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-文章内容页面弹窗广告',\n      activityIds:\n        'com.jdd.motorfans.modules.zone.search.ZoneInsideSearchActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点x按钮',\n          matches: '[id=\"com.jdd.motorfans:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12888087',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.MTMainActivity',\n            '.modules.detail.DetailActivity2',\n            '.cars.MotorDetailActivity2',\n            '.modules.carbarn.brand.detail.MBrandDetailActivity',\n          ],\n          matches: '[vid=\"close_b_t_a_i_b_no_compliance\"]',\n          exampleUrls: 'https://e.gkd.li/daf8ea52-a935-4e58-9e27-c5cb28fa9cf0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16685033',\n            'https://i.gkd.li/i/16859608',\n            'https://i.gkd.li/i/17162753',\n            'https://i.gkd.li/i/17533553',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jdd.newjdd.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jdd.newjdd.app',\n  name: '匠多多师傅版',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      // matchTime: 10000, // 可能出现多次 https://github.com/AIsouler/GKD_subscription/issues/1376\n      // actionMaximum: 1,\n      // resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"jump\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/10dd2d8b-e48a-4554-a748-c9e156b003d9',\n          snapshotUrls: 'https://i.gkd.li/i/23294048',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/557eefdd-fd75-4a93-8f68-6ae8f042270a',\n          snapshotUrls: 'https://i.gkd.li/i/23294049',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '通知提示-公告弹窗',\n      desc: '点击[查看详情]-返回关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: [\n            '[text=\"系统公告\"][visibleToUser=true]',\n            '[text=\"点击查看详情\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/146c27dc-9e92-4074-930f-d099c65c44f2',\n          snapshotUrls: 'https://i.gkd.li/i/23295736',\n        },\n        {\n          preKeys: [0],\n          matches:\n            '@View[clickable=true] >2 [childCount=0][text=\"\"][visibleToUser=true] <<n [vid=\"webviewschool\"]',\n          exampleUrls: 'https://e.gkd.li/dff1e373-76eb-43d7-9bec-229eebae511d',\n          snapshotUrls: 'https://i.gkd.li/i/23295738',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jf.my.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jf.my',\n  name: '蜜源',\n  groups: [\n    {\n      key: 0,\n      name: '更新提示-版本升级弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.MainActivity',\n            'com.lbe.security.ui.CountdownDialogActivity',\n          ],\n          matches:\n            '[id=\"com.jf.my:id/btn_ok\"][text=\"更新\"] - [id=\"com.jf.my:id/btn_cancel\"][text=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12838034',\n            'https://i.gkd.li/i/12840591',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '[id=\"com.jf.my:id/toUpgradeTv\"] - [id=\"com.jf.my:id/cancelTv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13786867',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.jf.my.main.ui.dialog.HomeRedPackageDialog',\n          matches: '[id=\"com.jf.my:id/iv_back\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12840619',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jianshu.haruki.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jianshu.haruki',\n  name: '简书',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-VIP弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baiji.jianshu.ui.splash.SplashScreenActivity',\n          matches: '[id=\"com.jianshu.haruki:id/dialog_lucky_prize_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13327286',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.jianshu.wireless.articleV2.X5ArticleDetailActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@[checked=false] + [text=\"忽略此版本\"]',\n          exampleUrls: 'https://e.gkd.li/23662d6a-1858-4d97-9bc7-ef03ede9f316',\n          snapshotUrls: 'https://i.gkd.li/i/15989275',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"取消\"]',\n          exampleUrls: 'https://e.gkd.li/23662d6a-1858-4d97-9bc7-ef03ede9f316',\n          snapshotUrls: 'https://i.gkd.li/i/15989275',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-首页信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.baiji.jianshu.MainActivity',\n          matches: 'ImageView[vid=\"nativeAdClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16201541',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jiaohua_browser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jiaohua_browser',\n  name: 'JMComic2',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '关闭选择路线后的全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            'ViewGroup[childCount=2] > @ViewGroup[clickable=true][visibleToUser=true] > [text=\"\"]',\n          exampleUrls: 'https://e.gkd.li/447bea41-2771-4a57-8436-82da37d0b3b2',\n          snapshotUrls: 'https://i.gkd.li/i/20709992',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20718812',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-底部横幅广告',\n      desc: '关闭底部横幅广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            'ViewGroup[getChild(0).getChild(0).getChild(0).getChild(0).getChild(1).text=\"AD\"] + @ViewGroup[clickable=false] > [text=\"\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/002589d0-660e-4658-8e20-42c1ac8710fc',\n          snapshotUrls: 'https://i.gkd.li/i/20713583',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20709992',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-路线选择',\n      desc: '选择路线，优先顺畅>普通>缓慢',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          anyMatches: [\n            '@ViewGroup[clickable=true][visibleToUser=true] > [text=\"顺畅\" || text=\"順暢\"]',\n            '@ViewGroup[clickable=true][visibleToUser=true] > [text=\"普通\"]',\n            '@ViewGroup[clickable=true][visibleToUser=true] > [text=\"缓慢\"]',\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/68004e70-6b78-41f2-b329-ff600038db94',\n            'https://e.gkd.li/66403e39-475b-447d-a708-db10be74eba8',\n            'https://e.gkd.li/930e1df4-5f1d-4a4d-bf78-6f1d8c5715de',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/20711163',\n            'https://i.gkd.li/i/20713674',\n            'https://i.gkd.li/i/20713715',\n            'https://i.gkd.li/i/20718557',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-点击[我保证我已满18岁]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ViewGroup[childCount=1][clickable=true][visibleToUser=true] > [text^=\"我保证我已满18岁\" || text^=\"我保證我已滿18歲\"]',\n          exampleUrls: 'https://e.gkd.li/f890ac7e-8626-4fc3-85c1-83d6776cb3f4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20711995',\n            'https://i.gkd.li/i/20718577',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20713533',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jim.qrcode.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jim.qrcode',\n  name: '随便扫',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告-顶部卡片广告',\n      desc: '点击卡片右上角关闭按钮',\n      activityIds: [\n        'com.jim.qrcode.MainActivity',\n        'com.miui.home.launcher.Launcher',\n      ],\n      rules: 'TextView[text.length>0] < FrameLayout + FrameLayout > ImageView',\n      snapshotUrls: [\n        'https://i.gkd.li/i/12606861',\n        'https://i.gkd.li/i/12606862',\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jin10.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jin10',\n  name: '金十数据',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.lgd.update.UpdateActivity',\n          matches:\n            '@[id=\"com.jin10:id/update_cancel\"] + [id=\"com.jin10:id/iv_pic\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706043',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.jin10.lgd.biz.MainActivity',\n          matches: '[id=\"com.jin10:id/iv_body\"] + [id=\"com.jin10:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706045',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-快讯页面弹窗广告',\n      rules: [\n        {\n          activityIds: 'com.jin10.lgd.biz.MainActivity',\n          matches: '@[id=\"com.jin10:id/iv_close\"] + [id=\"com.jin10:id/iv_pic\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706047',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-会员页面顶部广告',\n      rules: [\n        {\n          activityIds: 'com.jin10.lgd.biz.MainActivity',\n          matches:\n            '[id=\"com.jin10:id/iv_header\"] + [id=\"com.jin10:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706051',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jincheng.supercaculator.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jincheng.supercaculator',\n  name: '全能计算器',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '字节广告',\n          activityIds: [\n            'com.jincheng.supercaculator.activity.MainActivity',\n            'com.jincheng.supercaculator.activity.basic.CalculatorActivity',\n          ],\n          matches: '@Image < View < View TextView[text = \"反馈\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12859523',\n            'https://i.gkd.li/i/12859545',\n            'https://i.gkd.li/i/13670598',\n          ],\n        },\n        {\n          key: 1,\n          name: '腾讯广告-1',\n          fastQuery: true,\n          activityIds: 'com.jincheng.supercaculator.activity.SplashActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13261870',\n        },\n        {\n          key: 2,\n          name: '腾讯广告-2',\n          fastQuery: true,\n          activityIds:\n            'com.jincheng.supercaculator.activity.basic.CalculatorActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13378847',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jingdong.app.mall.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jingdong.app.mall',\n  name: '京东',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          excludeActivityIds: 'com.jd.lib.search.view.Activity.SearchActivity',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16323111',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16323115',\n        },\n        {\n          key: 1,\n          excludeActivityIds: 'com.jd.lib.search.view.Activity.SearchActivity',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17602356', // \"跳过\" 节点不支持fastQuery\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16323115',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-购物车页面砸金蛋',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jingdong.app.mall.MainFrameActivity',\n          matches: '[id=\"com.jd.lib.cart.feature:id/iv_egg_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14731003',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮广告',\n      activityIds: 'com.jingdong.app.mall.MainFrameActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'FrameLayout + RelativeLayout > RelativeLayout > ImageView + ImageView[desc=null][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642270',\n            'https://i.gkd.li/i/12774910',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/15110548',\n        },\n        {\n          key: 1,\n          matches:\n            '@ImageView[id!=null] + FrameLayout[childCount=3] > ImageView + LinearLayout + TextView',\n          snapshotUrls: 'https://i.gkd.li/i/13242002',\n        },\n        {\n          key: 2,\n          matches: '[desc=\"关闭浮层icon\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13165659',\n            'https://i.gkd.li/i/12837870',\n            'https://i.gkd.li/i/13072091',\n            'https://i.gkd.li/i/12837870',\n            'https://i.gkd.li/i/15077913', // 防止误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.MainFrameActivity',\n            'com.jd.lib.message.messagecenter',\n          ],\n          matches:\n            '@ImageView[index=parent.childCount.minus(1)][clickable=true][visibleToUser=true] -n [text=\"开启消息通知\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13917163',\n            'https://i.gkd.li/i/13463618',\n            'https://i.gkd.li/i/14692570',\n            'https://i.gkd.li/i/18060234',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: 'com.jd.lib.message.messagecenter',\n          matches: '@[clickable=true] + [text^=\"打开系统通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12839865',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.jingdong.app.mall.MainFrameActivity',\n          matches: '@FrameLayout[clickable=true] > [desc=\"关闭\"]',\n          excludeMatches:\n            '[text=\"确定\" || text=\"加入购物车\" || text*=\"购买\" || text*=\"下单\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13165721',\n            'https://i.gkd.li/i/15364514',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18455760', //避免在activityIds为null时误触\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'com.jd.lib.cashier.complete.view.CashierCompleteActivity',\n            'com.jd.lib.jshop.jshop.JshopMainShopActivity',\n          ],\n          matches: '[vid=\"close\"][desc=\"关闭页面\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13218034',\n            'https://i.gkd.li/i/14927060',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            'com.jingdong.app.mall.MainFrameActivity',\n            'com.jd.lib.jshop.jshop.JshopMainShopActivity',\n          ],\n          excludeMatches: [\n            'ImageView[desc=\"关闭页面\"] - [text=\"优惠券\"]',\n            'TextView[text=\"退换/售后\"][id=null]',\n            '[text=\"立即购买\"][visibleToUser=true]',\n          ],\n          matches:\n            '[desc=\"关闭页面\" || desc=\"关闭按钮\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13241883',\n            'https://i.gkd.li/i/13258996',\n            'https://i.gkd.li/i/13336847', // 增加excludeMatches: 'ImageView[desc=\"关闭页面\"] - [text=\"优惠券\"]', 避免在该快照误触\n            'https://i.gkd.li/i/15416926',\n            'https://i.gkd.li/i/15862131',\n            'https://i.gkd.li/i/16818580', // 增加excludeMatches: 'TextView[text=\"退换/售后\"]', 避免在刚刚打开该快照页面时误触（此时activityId并未改变）\n            'https://i.gkd.li/i/24170046', // 增加excludeMatches: '[text=\"立即购买\"][visibleToUser=true]', 避免在该快照误触\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          action: 'back',\n          activityIds: '.MainFrameActivity',\n          matches: '[text^=\"惊喜福利来袭\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/580d3cb5-503e-47a9-ba88-056e91c2f084',\n          snapshotUrls: 'https://i.gkd.li/i/17974166',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告-横幅广告',\n      activityIds: 'com.jingdong.app.mall.MainFrameActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'ImageView < FrameLayout - FrameLayout > ImageView[desc=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13258973',\n            'https://i.gkd.li/i/13258980',\n            'https://i.gkd.li/i/13258981',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '@ViewGroup[clickable=true] - * > [text=\"去续费\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15047238',\n        },\n        {\n          key: 2,\n          matches:\n            '[desc=\"吸顶楼层\"] > [desc=\"关闭按钮\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15112953',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matches: '[id=\"com.jd.lib.cart.feature:id/plus_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15229577',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-京东账号登录授权',\n      desc: '自动点击\"确认登录\"',\n      activityIds: 'com.jingdong.app.mall.WebActivity',\n      rules: '[text=\"京东登录\"] > [desc=\"确认登录\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12901734',\n    },\n    {\n      key: 11,\n      name: '局部广告-支付页面产品推荐',\n      desc: '自动点击右上角\"x\"',\n      activityIds:\n        'com.jd.lib.settlement.fillorder.activity.NewFillOrderActivity',\n      rules: 'ImageView[clickable=true && desc=\"关闭\"]',\n      snapshotUrls: 'https://i.gkd.li/i/13191146',\n    },\n    {\n      key: 12,\n      name: '全屏广告-购物车页面支付成功弹窗广告',\n      desc: '自动点击正下方的\"x\"',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.jd.lib.cart.ShoppingCartNewActivity',\n          matches: '@ImageView - ViewGroup >2 TextView[text=\"查看订单\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13446362',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-加入购物车后出现的弹窗',\n      desc: '点击[继续逛]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jd.lib.productdetail.ProductDetailActivity',\n          matches: '[text=\"继续逛\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15047243',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-支付订单后点击[完成]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            '.bundle.cashierfinish.view.CashierUserContentCompleteActivity',\n          matches: '[vid=\"lib_cashier_finish_back_page_text\"]',\n          exampleUrls: 'https://e.gkd.li/ab886df0-2b34-4804-be7d-742a06fadda9',\n          snapshotUrls: 'https://i.gkd.li/i/17358003',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '功能类-支付订单后跳过开通[刷脸支付]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'activity',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.wangyin.payment.jdpaysdk.counter.ui.pay.CounterActivity',\n          action: 'back',\n          matches: '[text=\"开启刷脸支付\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bad5489e-0ec6-4039-8e4e-52b4b444f019',\n          snapshotUrls: 'https://i.gkd.li/i/20709175',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '功能类-展开全部订单信息',\n      desc: '订单已完成-点击全部订单信息',\n      rules: [\n        {\n          actionMaximum: 1,\n          resetMatch: 'match',\n          fastQuery: true,\n          // activityIds: [],\n          matches: '[text=\"全部订单信息\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e1a3b6f7-b6cb-4379-90b5-cb4b927dacc4',\n          snapshotUrls: 'https://i.gkd.li/i/24372039',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jingdong.pdj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jingdong.pdj',\n  name: '京东到家',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'pdj.main.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'WebView[text=\"京东到家\"] >5 @View[clickable=true][childCount=1][visibleToUser=true] > View[childCount=1] > TextView[childCount=0] <<n [id=\"com.jingdong.pdj:id/mWebView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13217796',\n        },\n        {\n          key: 1,\n          matches: '[id=\"com.jingdong.pdj:id/ivClose\"][desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13223282',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.plunginupdate.update.UpdateDialogActivity',\n          matches: 'Button[text=\"暂不安装\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13217634',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jingyao.easybike.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jingyao.easybike',\n  name: '哈啰',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.hellobike.atlas.business.portal.PortalActivity',\n          matches: '@ImageView + [vid=\"contentContainer\"] >2 [text*=\"新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16108173',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.yanzhenjie.permission.PermissionActivity',\n            'com.hellobike.atlas.business.portal.PortalActivity',\n          ],\n          matches: ['[text*=\"开启通知\"]', '[text=\"取消\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13228735',\n            'https://i.gkd.li/i/13402675',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.hellobike.atlas.business.portal.PortalActivity',\n          matches: ['[text=\"系统定位服务已关闭\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13228677',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.hellobike.ads.widget.insert.dialog.HBAdvertDialog',\n            'com.hellobike.atlas.business.portal.PortalActivity',\n            'com.hellobike.hitch.business.homenew.HitchHomeActivity',\n          ],\n          matches: '[vid=\"actionDialogClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12650090',\n            'https://i.gkd.li/i/16503613',\n            'https://i.gkd.li/i/23407810',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'com.hellobike.evehicle.business.main.EVehicleHomeManagerActivity',\n          matches:\n            '[id=\"com.jingyao.easybike:id/lottie_view\"] < ViewGroup + [id=\"com.jingyao.easybike:id/btn_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12650163',\n        },\n        {\n          key: 2,\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches:\n            '[text=\"订单完成\"] >(2) View[childCount=2] > Image[id=null][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12684673',\n        },\n        {\n          key: 3,\n          activityIds: 'com.hellobike.atlas.business.portal.PortalActivity',\n          matches: '[desc=\"去使用\"] + Button[text=null][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12739316',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds:\n            'com.hellobike.moped.platform.offline.web.OhoRealmWebActivity',\n          matches:\n            '@Image[childCount=0][text!=null] - View[childCount=1] > Image[childCount=0][text!=null] <<n [vid=\"webContainer\"]',\n          exampleUrls: 'https://e.gkd.li/c6364646-6d3c-4b2e-80b9-0b356d4cd8b7',\n          snapshotUrls: 'https://i.gkd.li/i/23415363',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '局部广告-右侧悬浮广告',\n      fastQuery: true,\n      activityIds: 'com.hellobike.atlas.business.portal.PortalActivity',\n      rules:\n        '@[id=\"com.jingyao.easybike:id/closeFloatArea\"] + [id=\"com.jingyao.easybike:id/floatADContainer\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12650071',\n    },\n    {\n      key: 15,\n      name: '其他-新人教学弹窗',\n      desc: '点击跳过',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.alipay.mobile.nebulacore.ui.H5Activity',\n          matches:\n            '@View[text=\"跳过\"] <2 View <2 View <<n FrameLayout[id=\"com.jingyao.easybike:id/h5_pc_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13837543',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jiongji.andriod.card.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jiongji.andriod.card',\n  name: '百词斩',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          excludeActivityIds:\n            'com.baicizhan.client.business.webview.ui.BczWebActivity',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8612bbae-7a50-4730-8071-1c47e35c27ca',\n          snapshotUrls: 'https://i.gkd.li/i/21705324',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/21705338',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-活动弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baicizhan.main.activity.MainTabActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] -2 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13415075',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baicizhan.main.activity.MainTabActivity',\n          matches: '[text=\"抢先体验\"] - [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13488652',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-关闭顶栏提醒',\n      rules: [\n        {\n          activityIds: 'com.baicizhan.main.activity.MainTabActivity',\n          matches:\n            '[desc=\"word_plan_tab\"] > FrameLayout[index=2] >2 TextView[text!=null] + ImageView[clickable=true][childCount=0][index=parent.childCount.minus(1)]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24887224',\n            'https://i.gkd.li/i/24983406',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jisu.manhua.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jisu.manhua',\n  name: '漫画人极速版',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ilike.cartoon.activities.HomeActivity',\n          matches:\n            '[id=\"com.jisu.manhua:id/iv_promotion\"] + [id=\"com.jisu.manhua:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13688186',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jiutian.jiutianapp.sss.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jiutian.jiutianapp.sss',\n  name: '速搜视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/93c98c6f-56f9-4c57-a8b4-ff8a74900c1e',\n          snapshotUrls: 'https://i.gkd.li/i/14318888',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.job.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.job.android',\n  name: '前程无忧51Job',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.pages.apphome.AppHomeActivity',\n          matches: '[vid=\"ivBack\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5c1e281a-f5cc-45ff-9799-828f510c78c6',\n          snapshotUrls: 'https://i.gkd.li/i/19798235',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jovetech.CloudSee.temp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jovetech.CloudSee.temp',\n  name: '云视通',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jovision.saas.multiplay.ui.JVMultiPlayActivity',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][text=null] <<n [vid=\"mAdContainer\"]',\n          exampleUrls: 'https://e.gkd.li/1118299d-d74c-4f64-b5c8-fa1d8d2a48db',\n          snapshotUrls: 'https://i.gkd.li/i/16537379',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jovision.saas.ui.activity.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/92d3c1a3-3990-4f2c-b564-6f79f69f9b14',\n          snapshotUrls: 'https://i.gkd.li/i/16567977',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jsguohua.youquanmall.tt.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jsguohua.youquanmall.tt',\n  name: '图图影视',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zero.flutter_qq_ads.page.AdSplashActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13163314',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jsmcc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jsmcc',\n  name: '中国移动江苏',\n  groups: [\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: '.ui.MainActivityGroupNew',\n          matches: 'ImageView[vid=\"notice_dia\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16215987',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.juduoduo.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.juduoduo.app',\n  name: '剧多多',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13705650',\n        },\n        {\n          key: 1,\n          matches:\n            '[id=\"com.juduoduo.app:id/ksad_tk_view\"] @ViewGroup[clickable=true] > [text=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13705662',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.julanling.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.julanling.app',\n  name: '安心记加班',\n  groups: [\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.julanling.dgq.main.view.MainFragmentActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13523567',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jv.samsungeshop.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jv.samsungeshop',\n  name: '三星商城',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[desc=\"跳过\"][desc.length<10][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/65cbe48e-843e-4dba-a53b-5f6598a2b409',\n          snapshotUrls: 'https://i.gkd.li/i/23288756',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jxedt.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jxedt',\n  name: '驾校一点通',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.jxedt.ui.activitys.exercise.OrderExerciseActivity',\n          matches: '[id=\"com.jxedt:id/img_question_banner_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13195641',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.jxedt.ui.activitys.NewHomeActivity',\n          matches: '[id=\"com.jxedt:id/img_dialog_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476741',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jxhy.kuwan.gga.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jxhy.kuwan.gga',\n  name: 'ギリギリ愛',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击[我知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"我知道了\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/95caf815-b2bc-48cc-a245-0341e58f0e39',\n          snapshotUrls: 'https://i.gkd.li/i/19749364',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.jz.xydj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.jz.xydj',\n  name: '星芽免费短剧',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '底部卡片广告',\n          fastQuery: true,\n          activityIds: 'com.jz.jzdj.ui.activity.shortvideo.ShortVideoActivity2',\n          matches: '[vid=\"ad_close\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c6e1dfa9-388e-417f-9ab2-d3ea63d3eb8a',\n          snapshotUrls: 'https://i.gkd.li/i/14391204',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kaoshibaodian.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kaoshibaodian.app',\n  name: '考试宝',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'ksbd.quiz.QuizActivity',\n            'ksbd.app.practice.QuizActivity',\n          ],\n          matches:\n            'FrameLayout[childCount=5] > @FrameLayout[childCount=1][text=null] > ImageView[childCount=0][text=null] <<n [vid=\"ad_layout\"]',\n          exampleUrls: 'https://e.gkd.li/c55cd473-21fa-4843-9778-89a3f5c8e073',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16492043',\n            'https://i.gkd.li/i/21617553',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'ksbd.quiz.QuizActivity',\n            'ksbd.app.practice.QuizActivity',\n          ],\n          matches: '[vid=\"close_iv\"]',\n          exampleUrls: 'https://e.gkd.li/c55cd473-21fa-4843-9778-89a3f5c8e073',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16492043',\n            'https://i.gkd.li/i/21617553',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'ksbd.app.home.HomeActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/92252573-11c8-4ce8-a0df-4c7e94b7c101',\n          snapshotUrls: 'https://i.gkd.li/i/16492018',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'ksbd.app.lib.libOrExam.ExerciseAct',\n          matches: '[vid=\"img_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bc0fdaa3-a33e-48ba-83aa-28a28da60d3a',\n          snapshotUrls: 'https://i.gkd.li/i/21617539',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.keke.ysh1.tz08051h.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.keke.ysh1.tz08051h',\n  name: '可可影视',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.salmon.film.main.ui.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"朕知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13548412',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kk.ysk3.tz12063k.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kk.ysk3.tz12063k',\n  name: '可可影视',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击[朕知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.salmon.film.main.ui.MainActivity',\n          matches: '[text=\"朕知道了\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c93d9be8-559a-46aa-8416-f52a7c99df4b',\n          snapshotUrls: 'https://i.gkd.li/i/14321907',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kkeji.news.client.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kkeji.news.client',\n  name: '快科技',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.kkeji.news.client:id/tv_counter\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13197536',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.klcxkj.zqxy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.klcxkj.zqxy',\n  name: '趣智校园',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.klcxkj.zqxy.ui.main.MainActivity',\n            'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n          ],\n          matches: '[id=\"com.klcxkj.zqxy:id/anythink_myoffer_btn_close_id\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13195649',\n            'https://i.gkd.li/i/12781415',\n          ],\n        },\n        {\n          key: 1,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'com.klcxkj.zqxy.ui.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text^=\"打开或下载\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text^=\"下载或打开\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12781461',\n            'https://i.gkd.li/i/13488673',\n            'https://i.gkd.li/i/13546464',\n            'https://i.gkd.li/i/13071301',\n            'https://i.gkd.li/i/13707849',\n          ],\n        },\n        {\n          key: 5,\n          name: '吉欣广告',\n          fastQuery: true,\n          activityIds: 'com.klcxkj.zqxy.ui.splash.SplashActivity',\n          matches:\n            '@ViewGroup[clickable=true] < ViewGroup +2 ViewGroup > [text$=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13274838',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: '.ui.device.apartment.ble.BathingBleActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/d31ed6be-1211-4d34-855c-3f454f8f4b3f',\n          snapshotUrls: 'https://i.gkd.li/i/13274836',\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          activityIds: '.ui.main.MainActivity',\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/9c8af961-db98-4ef7-ad96-eff44f908481',\n          snapshotUrls: 'https://i.gkd.li/i/18108931',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-横幅广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.klcxkj.zqxy.ui.device.drink.ble.DrinkingBleActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13488870',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kmb.app1933.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kmb.app1933',\n  name: 'KMB . LWB',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches: '[desc=\"Interstitial close button\"]',\n          exampleUrls: 'https://e.gkd.li/3b5d7bcd-4629-44af-8ee9-5c8a1001ebad',\n          snapshotUrls: 'https://i.gkd.li/i/16620586',\n        },\n        {\n          key: 1,\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches: '[desc=\"打开\"] - View > [text=\"关闭\"]',\n          exampleUrls: 'https://e.gkd.li/14158b1c-88f3-4e5c-bbc1-193186e77b07',\n          snapshotUrls: 'https://i.gkd.li/i/16620123',\n        },\n        {\n          key: 2,\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches:\n            'WebView >2 View[childCount=3] >2 View[childCount=2] > View[childCount=2] > View[childCount=1] > Button[clickable=true]',\n          exampleUrls: 'https://e.gkd.li/0be64275-23d1-4b13-b444-6e0c67fdd8fc',\n          snapshotUrls: 'https://i.gkd.li/i/16621030',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kmxs.reader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kmxs.reader',\n  name: '七猫免费小说',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-阅读页面广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'org.geometerplus.android.fbreader.FBReader',\n          matches: '[vid=\"ad_direct_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17355000',\n        },\n        {\n          preKeys: [0],\n          activityIds: 'org.geometerplus.android.fbreader.FBReader',\n          matches: '[text=\"直接关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/17354753',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-阅读结束后显示的广告',\n      fastQuery: true,\n      activityIds: 'org.geometerplus.android.fbreader.FBReader',\n      rules: [\n        {\n          matches: '[id=\"com.kmxs.reader:id/ad_direct_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12640303',\n            'https://i.gkd.li/i/13362269',\n            'https://i.gkd.li/i/13362272',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-签到弹窗',\n      activityIds: 'org.geometerplus.android.fbreader.FBReader',\n      rules:\n        '@TextView[id=null] < View +(2) TextView[text^=\"已连签\"&&text*=\"天\"]',\n      snapshotUrls: ['https://i.gkd.li/i/12640320'],\n    },\n    {\n      key: 99,\n      name: '局部广告-右侧悬浮红包',\n      activityIds: 'com.kmxs.reader.home.ui.HomeActivity',\n      rules: {\n        matches:\n          '[id=\"com.kmxs.reader:id/red_packet_img\"] + [id=\"com.kmxs.reader:id/close_red_packet\"]',\n        action: 'clickCenter',\n      },\n      snapshotUrls: ['https://i.gkd.li/i/12640287'],\n    },\n    {\n      key: 5,\n      name: '全屏广告-字节视频广告',\n      desc: '点击关闭',\n      actionDelay: 300,\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13459157',\n            'https://i.gkd.li/i/13459172',\n            'https://i.gkd.li/i/13459174',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          fastQuery: true,\n          matches:\n            '[id=\"com.byted.pangle:id/tt_reward_full_count_down_after_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13459182',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 RelativeLayout[childCount=4] < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13472957',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.qq.e.ads.PortraitADActivity',\n          matches:\n            '@ImageView[visibleToUser=true][childCount=0] < FrameLayout[childCount=1] < FrameLayout[childCount=1] + FrameLayout >3 [text^=\"摇动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13472955',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.kmxs.reader.home.ui.HomeActivity',\n          matches: '[id=\"com.kmxs.reader:id/bookshelf_book_item_direct_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13489942',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'org.geometerplus.android.fbreader.FBReader',\n          matches: '[vid=\"iv_ad_direct_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/9217fd14-1ca6-49b8-8f8b-bff7a98745dd',\n          snapshotUrls: 'https://i.gkd.li/i/17574170',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '全屏广告-今日专属推荐弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[id=\"com.kmxs.reader:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13941276',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.koudai.weidian.buyer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.koudai.weidian.buyer',\n  name: '微店',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告-首页红包弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.vdian.android.wdb.main.ui.activity.MainTabsActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] <2 RelativeLayout[childCount=2] < FrameLayout <2 [parent=null]',\n          snapshotUrls: 'https://i.gkd.li/i/13646151',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ksf.yyx.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ksf.yyx',\n  name: 'OMOFUN',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.ksf.yyx:id/ksad_splash_circle_skip_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775918',\n        },\n        {\n          key: 1,\n          matches:\n            '[id=\"com.ksf.yyx:id/ksad_splash_root_container\"] [childCount=3] > @ImageView[clickable=true] - [text=\"|\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775919',\n        },\n        {\n          key: 2,\n          matches: '[text^=\"跳过 \"][text.length<=4][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12775926',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[desc=\"了解更多\"] - [desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775920',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-插屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[id=\"com.ksf.yyx:id/ksad_container\"] [text=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775922',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775923',\n        },\n        {\n          key: 3,\n          activityIds: 'com.sigmob.sdk.base.common.TransparentAdActivity',\n          matches: '[id=\"ad_area\"] [id=\"close_btn\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775925',\n            'https://i.gkd.li/i/12775924',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775921',\n            'https://i.gkd.li/i/12776903',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kuaikan.comic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kuaikan.comic',\n  name: '快看漫画',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-漫画界面底部弹窗广告',\n      activityIds: 'com.kuaikan.comic.infinitecomic.view.ComicInfiniteActivity',\n      rules: '[id=\"com.kuaikan.comic:id/adBannerClose\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12910268',\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kuaishou.nebula.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kuaishou.nebula',\n  name: '快手极速版',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"splash_skip_text\"]',\n          exampleUrls: 'https://e.gkd.li/5d393b9b-c327-4429-9759-8c18a097453a',\n          snapshotUrls: 'https://i.gkd.li/i/17631261',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-朋友推荐弹窗',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.yxcorp.gifshow.HomeActivity',\n          matches:\n            '[vid=\"popup_view\" || vid=\"content_wrapper\"] > [vid=\"close_btn\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14310639',\n            'https://i.gkd.li/i/15061832',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-红包弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.yxcorp.gifshow.HomeActivity',\n          matches:\n            '@ImageView[clickable=true] -(1,2) ViewGroup > [text=\"点击立得奖励\" || text^=\"邀请\"]',\n          exampleUrls:\n            'https://m.gkd.li/101449500/f7bbd1db-f519-4ff9-96cb-4cb5b2f483a2',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14879912',\n            'https://i.gkd.li/i/15061662', //邀请4个新用户\n            'https://i.gkd.li/i/25200787', //邀请新用户\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.yxcorp.gifshow.HomeActivity',\n          matches: '[vid=\"close_icon\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/12059549-21c2-47b7-9acf-ec221cc14f25',\n          snapshotUrls: 'https://i.gkd.li/i/15747381',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '分段广告-悬浮广告',\n      fastQuery: true,\n      activityIds: 'com.yxcorp.gifshow.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"close_pendant\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8f56e57f-b2d7-457c-8376-6351568ec14a',\n          snapshotUrls: 'https://i.gkd.li/i/23431963',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"确定\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/89294dbb-4398-4561-91b7-4943ec7c98c7',\n          snapshotUrls: 'https://i.gkd.li/i/23431964',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '评价提示',\n      desc: 'x掉',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.yxcorp.gifshow.HomeActivity',\n          matches: '@[vid=\"close\"][clickable=true] +2 * > [text*=\"给个好评吧\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22851896',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kuangxiangciweimao.novel.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kuangxiangciweimao.novel',\n  name: '刺猬猫阅读',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fda4f30d-877f-4131-ba56-b6a69e3b7e0c',\n          snapshotUrls: 'https://i.gkd.li/i/16893223',\n        },\n        {\n          key: 1,\n          matches: '[id=\"com.kuangxiangciweimao.novel:id/mTasksView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13056248',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/8359b29b-b99e-4b6e-b748-a10a9f17005c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16901867',\n            'https://i.gkd.li/i/16899125',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-自动签到',\n      desc: '点击[签到]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.frame.MainFrameActivity',\n          matches: 'Button[text=\"签到\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16897712',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kugou.android.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kugou.android.lite',\n  name: '酷狗概念版',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/94c7fc27-891f-4206-b933-f26661041b99',\n          snapshotUrls: 'https://i.gkd.li/i/21451911',\n        },\n        {\n          key: 1,\n          matches: '[desc*=\"跳过\"][desc.length<10][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7aa8bc5b-e14c-4cef-9eae-b89aac8ef459',\n          snapshotUrls: 'https://i.gkd.li/i/21750055',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-VIP弹窗',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.kugou.android.app.setting.YoungModeTipsActivity',\n          matches: '[text^=\"新人限时开通\"] +3 [text=\"放弃优惠\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14321698',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'com.kugou.android.app.setting.YoungModeTipsActivity',\n            'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',\n          ],\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] <3 ViewGroup[childCount=3] < [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14321700',\n            'https://i.gkd.li/i/25018524',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',\n          matches: [\n            '[text*=\"已过期\"][visibleToUser=true]',\n            '[text=\"狠心拒绝\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/25020137',\n        },\n        {\n          key: 3,\n          activityIds:\n            'com.kugou.framework.musicfees.ui.feeintercept.FeeInterceptWebActivity',\n          matches:\n            'WebView > [id=\"body\"] > [id=\"root\"] >2 View > Image[index=0][clickable=true][visibleToUser=true][width<70 && width<70]',\n          snapshotUrls: 'https://i.gkd.li/i/25022292',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-我的页面-右侧悬浮反馈图标',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches:\n            'FrameLayout > RelativeLayout > @ImageView[vid!=null][clickable=true][visibleToUser=true] +(2,3) ImageView[vid!=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14321713',\n            'https://i.gkd.li/i/14321718',\n          ],\n        },\n        {\n          key: 1,\n          preKeys: 0,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          fastQuery: true,\n          matches: '[text=\"是否取消？\"] +4 * > [text=\"确认\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14321724',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches: '@ImageView - * > [text=\"立即升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14622566',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches: '@[text*=\"跳过\"] + [text*=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/64dd159b-bff5-4dff-a4b9-d63f5b34acb7',\n          snapshotUrls: 'https://i.gkd.li/i/16407631',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true][width<160 && height<160] <2 ViewGroup[childCount=3] < FrameLayout < LinearLayout < LinearLayout <2 LinearLayout < FrameLayout < FrameLayout <2 FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/0776da1e-3ff6-4fba-a7e9-de8fa1fe5344',\n          snapshotUrls: 'https://i.gkd.li/i/23619626',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-播放页听歌领VIP',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches: '@LinearLayout[clickable=true] > TextView[text=\"听歌领VIP\"]',\n          exampleUrls: 'https://e.gkd.li/df927124-4e7a-43bd-8d42-3eb428eecf78',\n          snapshotUrls: 'https://i.gkd.li/i/16554695',\n        },\n        {\n          key: 1,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches:\n            '@ImageView[clickable=true] - FrameLayout >2 [text=\"立即领取福利\"]',\n          exampleUrls: 'https://e.gkd.li/51fbe6aa-d0da-4f08-aae0-2eed4e6c0ad1',\n          snapshotUrls: 'https://i.gkd.li/i/16594001',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '评价提示',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] - LinearLayout > [text*=\"求五星鼓励\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25002911',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '分段广告-评论区广告',\n      fastQuery: true,\n      activityIds: 'com.kugou.android.app.MediaActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@[clickable=true] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25020531',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"关闭这条广告\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25020623',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',\n          matches: '@[text*=\"跳过\"] + [text*=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25021020',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.kugou.common.useraccount.app.KgUserLoginAndRegActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][parent.childCount<4][index=parent.childCount.minus(1)][width<60 && height<60] - [!(text=null)]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/25021318',\n            'https://i.gkd.li/i/25021659',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kugou.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kugou.android',\n  name: '酷狗音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '[desc=\"跳过\"||desc=\"GdtCountDownView\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775410',\n            'https://i.gkd.li/i/13426030',\n            'https://i.gkd.li/i/13468987',\n          ],\n        },\n        {\n          key: 1,\n          position: {\n            left: 'width * 0.6858',\n            top: 'width * 0.3906',\n          },\n          matches: '[desc=\"createSkipView\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/fc4a38c9-20aa-4cfc-9a92-c20e9194418b',\n          snapshotUrls: 'https://i.gkd.li/i/14609953',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      matchRoot: true,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          forcedTime: 10000,\n          activityIds: '.app.MediaActivity',\n          matches:\n            'ViewGroup[childCount=2] > ImageView + @FrameLayout[clickable=true] > LinearLayout > ImageView <<n [id=\"android:id/list\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16434752',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.app.MediaActivity',\n          matches:\n            '@ImageView[desc=\"关闭\"][visibleToUser=true][clickable=true] <n ViewGroup < LinearLayout <3 [id=\"android:id/list\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14964889',\n            'https://i.gkd.li/i/15024041',\n            'https://i.gkd.li/i/15468481',\n            'https://i.gkd.li/i/16200618',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: '.app.MediaActivity',\n          matches: '[desc=\"关闭广告\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15024812',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.app.MediaActivity',\n          matches: '@ImageView[clickable=true] - [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15520336',\n        },\n        {\n          key: 4,\n          forcedTime: 10000,\n          activityIds: '.app.MediaActivity',\n          matches:\n            'RelativeLayout > @RelativeLayout[clickable=true] > [desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16114590',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.app.MediaActivity',\n          matches:\n            '@ImageButton[clickable=true][childCount=0][visibleToUser=true] - LinearLayout > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/fcb3e4d2-73bf-49b5-9157-08cac0c11584',\n          snapshotUrls: 'https://i.gkd.li/i/18207953',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: '.app.MediaActivity',\n          matches:\n            '@ImageButton[childCount=0][clickable=true] < RelativeLayout - LinearLayout > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/13b95c9a-1e6c-4d63-8372-1cff2261253c',\n          snapshotUrls: 'https://i.gkd.li/i/23687213',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-VIP弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] + RelativeLayout >2 [text*=\"豪华VIP已过期\"]',\n          exampleUrls: 'https://e.gkd.li/cab683ac-801d-4089-8b5d-548954761c08',\n          snapshotUrls: 'https://i.gkd.li/i/13548005',\n        },\n        {\n          key: 1,\n          activityIds: '.app.MediaActivity',\n          matches:\n            'WebView[text=\"开通会员\"] >7 @TextView[clickable=true][childCount=0] +2 [text=\"当前歌曲支持蝰蛇全景声\"]',\n          exampleUrls: 'https://e.gkd.li/86e4a797-5366-4579-81ee-bc5354e95568',\n          snapshotUrls: 'https://i.gkd.li/i/17177377',\n        },\n        {\n          key: 2,\n          activityIds: '.app.MediaActivity',\n          matches:\n            '@[clickable=true][childCount=0] < View <(1,2) View <(1,2) View < WebView < WebView < FrameLayout < FrameLayout < RelativeLayout < RelativeLayout < FrameLayout[!(id=\"android:id/content\")] < FrameLayout < [parent=null]',\n          exampleUrls: 'https://e.gkd.li/f32ed6b7-e396-45a5-9849-f8a8ae99cb99',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18070974',\n            'https://i.gkd.li/i/22310624',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-[看广告免费听歌]弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches: '[desc=\"看广告，免费听会员歌\"] +2 [desc=\"关闭\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/dfd70c7c-3200-493e-9afa-404de5fcd2ff',\n          snapshotUrls: 'https://i.gkd.li/i/14722104',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-[开启音乐DJ]弹窗',\n      desc: '勾选[今日不再提醒]-点击[关闭]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches: '@[checked=false] + [text=\"今日不再提醒\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/69f564e9-464a-488b-a181-f1085176b49f',\n          snapshotUrls: 'https://i.gkd.li/i/14722457',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@ImageView - * > [text=\"今日不再提醒\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/69f564e9-464a-488b-a181-f1085176b49f',\n          snapshotUrls: 'https://i.gkd.li/i/14722457',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.kugou.android.app.MediaActivity',\n          matches:\n            'ViewGroup > FrameLayout >2 FrameLayout[childCount=2] > FrameLayout > FrameLayout[childCount=2] > ImageView[index=1][clickable=true][childCount=0][width<80&&height<80]',\n          exampleUrls: 'https://e.gkd.li/2b240676-4dac-4375-b238-2d570962efd1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17004903',\n            'https://i.gkd.li/i/18057265',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-签到弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          position: {\n            left: 'width * 0.9287',\n            top: 'width * 0.8935',\n          },\n          activityIds: '.app.flexowebview.uploadvideo.ContributeWebActivity',\n          matches:\n            '@FrameLayout > WebView > WebView[text=\"金币中心\"] > View[id=\"body\"] > TextView[id=\"root\"][childCount=0]',\n          exampleUrls: 'https://e.gkd.li/f2a44161-d0a2-421d-a5e7-26fcf005daf2',\n          snapshotUrls: 'https://i.gkd.li/i/18071067',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-自动关闭速听模式',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.app.MediaActivity',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@[desc=\"关闭\"][visibleToUser=true] < RelativeLayout < RelativeLayout + FrameLayout >3 ViewGroup[desc=\"速听卡片\"] >2 [text=\"喜欢\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e24dda6a-c5fa-4c93-9026-cda7a4d9e205',\n          snapshotUrls: 'https://i.gkd.li/i/18164732',\n        },\n        {\n          preKeys: [1],\n          matches:\n            '@FrameLayout[clickable=true][visibleToUser=true] < RelativeLayout - [desc=\"暂停\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ffb25ec5-35b0-47ff-9387-54c757c90f29',\n          snapshotUrls: 'https://i.gkd.li/i/18165065',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.kurogame.kjq.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.kurogame.kjq',\n  name: '库街区',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.kurogame.kjq.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"sign_click\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15521224',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[vid=\"bt_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15521225',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.kurogame.kjq.MainActivity',\n          matches: '[vid=\"close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d9c598fc-5bd4-4773-8db1-316b8f7155c3',\n          snapshotUrls: 'https://i.gkd.li/i/15629864',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-鸣潮自动签到',\n      activityIds: 'com.kurogame.kjq.profile.ui.activity.WebViewShareActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[text=\"《鸣潮》每日签到工具\"] >6 ListView[childCount=12] > @View[childCount=3][visibleToUser=true] > TextView[width<150] <3 * + View[childCount=2]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15632005',\n            'https://i.gkd.li/i/15632902', // 避免误触\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@TextView - * > [text=\"签到成功！\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15632138',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          action: 'back',\n          matches: 'View[text=\"《鸣潮》每日签到工具\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15632250',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ky.medical.reference.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ky.medical.reference',\n  name: '用药参考',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: '[id=\"com.ky.medical.reference:id/btn_go\"][text^=\"关闭\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12918049',\n    },\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ky.medical.reference.promotion.AdDialogActivity',\n          matches: '[id=\"com.ky.medical.reference:id/icClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12840924',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lanjinger.choiassociatedpress.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lanjinger.choiassociatedpress',\n  name: '财联社',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.lanjinger.choiassociatedpress.main.OperateActivity',\n          matches: '@ImageView[id$=\"iv_back\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13749206',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lanlanys.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lanlanys.app',\n  name: '懒懒视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.view.BaseActivity',\n          matches:\n            '@ImageView[index=3][childCount=0][clickable=true][visibleToUser=true][text=null][id=null] <4 RelativeLayout[childCount>7] < RelativeLayout[childCount=1] < [parent=null]',\n          exampleUrls: 'https://e.gkd.li/42ac7c76-362c-4f47-b4d8-ab9677246165',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17632595',\n            'https://i.gkd.li/i/18699720',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lbe.security.miui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lbe.security.miui',\n  name: '权限管理服务',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-权限授予弹窗',\n      desc: '自动点击\"仅在使用中允许\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.android.packageinstaller.permission.ui.GrantPermissionsActivity',\n          matches: '[text=\"仅在使用中允许\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761264',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击拒绝',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: ['[text$=\"发送通知\"]', '[text=\"拒绝\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/0487a113-5b57-402e-96ca-1f351e121d82',\n          snapshotUrls: 'https://i.gkd.li/i/14321882',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lcworld.haiwainet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lcworld.haiwainet',\n  name: '人民日报海外版',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.ui.main.MainActivity',\n          matches: '[vid=\"iv_paper_close\"]',\n          exampleUrls: 'https://e.gkd.li/021a457e-6c55-4ec6-b2f2-85b33a93c5b6',\n          snapshotUrls: 'https://i.gkd.li/i/17089256',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.le123.ysdq.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.le123.ysdq',\n  name: '影视大全',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.elinkway.infinitemovies.ui.activity.NewMainActivity',\n          matches: '[id=\"com.le123.ysdq:id/ad_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13635244',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.leduoworks.gpstoolbox.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.leduoworks.gpstoolbox',\n  name: 'GPS工具箱',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页占位广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.leduoworks.gpstoolbox.frmt.MainFrmtActivity',\n          matches: '[id=\"com.leduoworks.gpstoolbox:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13062612',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lemon.lv.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lemon.lv',\n  name: '剪映',\n  groups: [\n    {\n      key: 0,\n      name: '分段广告-导出界面底部广告',\n      desc: '点击[关闭]-点击[不感兴趣]',\n      fastQuery: true,\n      activityIds: 'com.vega.export.edit.view.ExportActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击[关闭]',\n          matches:\n            'LynxAdComponentView < * > @FlattenUIImage <<n [vid=\"exportAdContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14648627',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击[不感兴趣]',\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14648626',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-选择素材界面上方广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.vega.libcutsame.select.view.CutSameSelectMediaActivity',\n          matches:\n            '@LynxFlattenUI[clickable=true][visibleToUser=true] +6 [text=\"立即下载\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14122865',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-恢复创作',\n      desc: '自动点击[立即恢复]按钮',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.vega.main.MainActivity',\n          matches: '[vid=\"tv_title_resume_design\"] +2 [vid=\"tvResumeNow\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14292755',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lenovo.browser.hd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lenovo.browser.hd',\n  name: '联想浏览器HD',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.zui.launcher.drawer.NormalLauncher',\n          matches:\n            '[text=\"发现新版本\"] - * > [id=\"com.lenovo.browser.hd:id/fl_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13401982',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.zui.launcher.drawer.NormalLauncher',\n          matches:\n            '[text=\"开启消息通知\"] +n * > [id=\"com.lenovo.browser.hd:id/tv_cancle\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13401980',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lenovo.leos.appstore.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lenovo.leos.appstore',\n  name: '联想应用中心',\n  groups: [\n    {\n      key: 0,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.zui.launcher.drawer.NormalLauncher',\n          matches:\n            '@[id=\"com.lenovo.leos.appstore:id/dialog_cancel\"] + [text$=\"版本更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13401992',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activities.NotificationGuideActivity',\n          matches: ['[text$=\"打开应用中心通知\"]', '[text=\"知道了\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13401991',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lieju.lws.escanu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lieju.lws.escanu',\n  name: '易视看',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.jooan.qiaoanzhilian.ali.view.main_page.NewMainDeviceListActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][visibleToUser=true][childCount=1] <2 ViewGroup <2 ViewGroup - ViewGroup >3 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/47781f68-64d1-4bf6-8d09-85318ff5b78a',\n          snapshotUrls: 'https://i.gkd.li/i/17931020',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.jooan.qiaoanzhilian.ali.view.main_page.NewMainDeviceListActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/4bd02512-bc63-4242-b3c5-c68d97b89f2d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17930503',\n            'https://i.gkd.li/i/17931003',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.jooan.qiaoanzhilian.ui.activity.gun_ball.GunBallCameraPlayerNewActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/96f6fb24-37c6-4b3e-89e3-91c4279c7221',\n          snapshotUrls: 'https://i.gkd.li/i/17930496',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-首页下方广告',\n      desc: '点击关闭-点击不感兴趣',\n      fastQuery: true,\n      activityIds:\n        'com.jooan.qiaoanzhilian.ali.view.main_page.NewMainDeviceListActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'ViewGroup[desc=\"root\"] > ViewGroup[childCount=2] > ViewGroup[childCount=2][desc!=null] > @ImageView[clickable=true][visibleToUser=true][desc!=null][index=parent.childCount.minus(1)] <<n [vid=\"native_express_container\"]',\n          exampleUrls: 'https://e.gkd.li/6ff2f8fe-2269-4f52-b49f-3f997b405a8f',\n          snapshotUrls: 'https://i.gkd.li/i/17930498',\n        },\n        {\n          preKeys: [0],\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/a8a4aeb9-ee6a-4fde-80be-0e78e346f673',\n          snapshotUrls: 'https://i.gkd.li/i/17930497',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lingan.seeyou.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lingan.seeyou',\n  name: '美柚',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-评论区上方卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.lingan.seeyou.ui.activity.community.topicdetail.TopicDetailActivity',\n          matches: '[id=\"com.lingan.seeyou:id/v_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14034770',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lion.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lion.market',\n  name: '虫虫助手',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.app.MainActivity',\n          matches: '[vid=\"dlg_main_ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6e29aaa4-1a01-4422-8379-24140a4ffed5',\n          snapshotUrls: 'https://i.gkd.li/i/23784776',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.liuzh.deviceinfo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.liuzh.deviceinfo',\n  name: '设备信息',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.liuzh.deviceinfo.MainActivity',\n          matches:\n            'FrameLayout[childCount=3 || childCount=4] > ImageView[text=null] +(2,3) @FrameLayout[childCount=1] > ImageView[childCount=0] <<n [vid=\"ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/250d3229-a933-410b-8a4a-daccb366558c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16322794',\n            'https://i.gkd.li/i/16322793',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          activityIds: 'com.qq.e.ads.ADActivity',\n          matches:\n            'FrameLayout[childCount=3] > TextView[text!=null] + ImageView[clickable=true][text=null][childCount=0]',\n          exampleUrls: 'https://e.gkd.li/ce0348d0-f864-4e52-b235-2e83ec7c20ac',\n          snapshotUrls: 'https://i.gkd.li/i/16322792',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.llmm.huiyuanuxiang.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.llmm.huiyuanuxiang',\n  name: '囧次元',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[text!=null][childCount=0][visibleToUser=true] - View >2 [text=\"恭喜获得优惠券\"]',\n          exampleUrls: 'https://e.gkd.li/12d1cfdb-9aa0-4688-8997-733611c0faaf',\n          snapshotUrls: 'https://i.gkd.li/i/18129413',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lofter.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lofter.android',\n  name: 'LOFTER',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.lofter.android.global.home.TabHomeActivity',\n          matches:\n            '[vid=\"global_ad_layout\"] > [vid=\"close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0559eada-7899-4c8a-8634-ef3f55227492',\n          snapshotUrls: 'https://i.gkd.li/i/16494241',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lolaage.tbulu.tools.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lolaage.tbulu.tools',\n  name: '两步路户外助手',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.upgrade',\n          matches:\n            '[id=\"com.lolaage.tbulu.tools:id/tvFullUpgrade\"] + [id=\"com.lolaage.tbulu.tools:id/tvCancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12882550',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          forcedTime: 10000,\n          activityIds: [\n            'com.lolaage.tbulu.tools.ui.activity.WelcomeActivity',\n            'com.lolaage.tbulu.tools.ui.activity.main.MainActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13627861',\n            'https://i.gkd.li/i/13650732',\n            'https://i.gkd.li/i/14866147',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.lolaage.tbulu.tools.ui.activity.main.MainActivity',\n          matches: '[vid=\"ivClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14952807',\n        },\n        {\n          key: 2,\n          forcedTime: 10000,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] -4 View[childCount=1] > Image[childCount=0][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0ed488e1-f0d8-4c5f-a507-af9c2cedd2a1',\n          snapshotUrls: 'https://i.gkd.li/i/16812345',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      desc: '点击[取消]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.main.MainActivity',\n          matches: '[text=\"发送通知\"] + * >3 [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14952803',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.longshine.nanwang.electric.charge.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.longshine.nanwang.electric.charge',\n  name: '顺易充',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.android.app.station.NewMainAct',\n          matches:\n            '[id=\"com.longshine.nanwang.electric.charge:id/bodyFL\"] + [id=\"com.longshine.nanwang.electric.charge:id/ivClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12700011',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.loyea.adnmb.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.loyea.adnmb',\n  name: '蓝岛',\n  groups: [\n    {\n      key: 5,\n      name: '通知提示-通知弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"不再显示该条通知\"][checked=false]',\n          exampleUrls: 'https://e.gkd.li/81cc5b1b-d0a6-44e9-be99-7897cceb491a',\n          snapshotUrls: 'https://i.gkd.li/i/13623450',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"确定\"]',\n          exampleUrls: 'https://e.gkd.li/81cc5b1b-d0a6-44e9-be99-7897cceb491a',\n          snapshotUrls: 'https://i.gkd.li/i/13623450',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lphtsccft.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lphtsccft',\n  name: '涨乐财富通',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.lphtsccft.zhangle.startup.SplashScreenActivity',\n            'com.lphtsccft.zhangle.main.MainActivity',\n          ],\n          matches: '[id=\"com.lphtsccft:id/tv_never\"][text=\"不再提醒\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12646899',\n            'https://i.gkd.li/i/12646925',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.zhangle.main.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text*=\"升级体验\"] +2 LinearLayout > [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12699308',\n        },\n        {\n          key: 1,\n          matches: '[vid=\"iv_update_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16760030',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-右侧悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.lphtsccft.zhangle.main.MainActivity',\n          matches: '[id=\"com.lphtsccft:id/home_float_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12892821',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lptiyu.tanke.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lptiyu.tanke',\n  name: '步道乐跑',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告-1',\n          activityIds: 'com.lptiyu.tanke.activities.main.MainActivity',\n          matches:\n            '[id=\"com.lptiyu.tanke:id/interact_ad_root\"] >n [id=\"com.lptiyu.tanke:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12829816',\n            'https://i.gkd.li/i/12869344',\n            'https://i.gkd.li/i/13378925',\n          ],\n        },\n        {\n          key: 1,\n          name: '腾讯广告-2',\n          fastQuery: true,\n          activityIds: 'com.lptiyu.tanke.activities.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13070801',\n        },\n        {\n          key: 2,\n          name: '快手广告-1',\n          fastQuery: true,\n          activityIds: [\n            'com.lptiyu.tanke.activities.splash.SplashActivity',\n            'com.lptiyu.tanke.activities.school_run_record_detail.RunRecordDetailActivity',\n          ],\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13218232',\n            'https://i.gkd.li/i/13536714',\n          ],\n        },\n        {\n          key: 3,\n          name: '快手广告-2',\n          fastQuery: true,\n          activityIds: 'com.lptiyu.tanke.activities.splash.SplashActivity',\n          matches:\n            '[text=\"广告\"] <2 ViewGroup - ViewGroup > ViewGroup > [text=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476172',\n        },\n        {\n          key: 4,\n          name: '快手广告-3',\n          fastQuery: true,\n          activityIds: 'com.lptiyu.tanke.activities.splash.SplashActivity',\n          matches:\n            '[id=\"com.lptiyu.tanke:id/ksad_splash_circle_skip_left_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13625386',\n        },\n        {\n          key: 5,\n          name: '其他广告',\n          activityIds: 'com.lptiyu.tanke.activities.splash.SplashActivity',\n          matches:\n            '@LinearLayout > [id=\"com.lptiyu.tanke:id/skip_parent_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13166361',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: [\n            '.activities.school_run_record_detail.RunRecordDetailActivity',\n            '.activities.main.MainActivity',\n          ],\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5eff1f56-ea35-43f0-9789-644bd4213eed',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22863742',\n            'https://i.gkd.li/i/23549297',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lucky.luckyclient.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lucky.luckyclient',\n  name: '瑞幸咖啡',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.luckin.client.main.FirstActivity',\n          matches:\n            '@ImageView[id=\"com.lucky.luckyclient:id/dismiss_btn\"] - LinearLayout > ImageView[id=\"com.lucky.luckyclient:id/update_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12846499',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-超值换购弹窗',\n      desc: '关闭超值换购弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.lucky.luckyclient.preview2.OrderPreviewActivity2',\n          matches:\n            '[id=\"com.lucky.luckyclient:id/close_iv\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12922834',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-优惠卷领取提示',\n      desc: '按下返回键关闭优惠卷领取提示',\n      rules: [\n        {\n          activityIds: 'com.luckin.client.main.FirstActivity',\n          action: 'back',\n          matches: '[id=\"com.lucky.luckyclient:id/webcontent\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13164114',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.luna.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.luna.music',\n  name: '汽水音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/14232395',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[text^=\"跳过\"][text.length<10][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15087528',\n            'https://i.gkd.li/i/15148298', // 避免误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.luna.biz.ad.AdActivity',\n            'com.luna.biz.main.main.MainActivity',\n          ],\n          matches: '@[text=\"稍后再说\"] + [text=\"立即升级\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14790279',\n            'https://i.gkd.li/i/21427972',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-VIP弹窗',\n      desc: '直接关闭所有底部半屏弹窗',\n      fastQuery: true,\n      activityIds: [\n        'com.luna.biz.main.main.MainActivity',\n        'com.luna.biz.ad.AdActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '底部半屏弹窗',\n          action: 'back', // 使用点击方式有概率无效\n          excludeMatches:\n            'FlattenUIText[text=\"立得全天畅听\" || text=\"立即解锁 今日畅听\"][visibleToUser=true]',\n          matches:\n            'FlattenUIText[text=\"开会员听整月\" || text=\"购买汽水会员\" || text*=\"免费听\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/43099439-a0ab-4da0-a686-5c960df92607',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13533795',\n            'https://i.gkd.li/i/13660652',\n            'https://i.gkd.li/i/13533797',\n            'https://i.gkd.li/i/14767233',\n            'https://i.gkd.li/i/16280954',\n            'https://i.gkd.li/i/16342691',\n            'https://i.gkd.li/i/17580823',\n            'https://i.gkd.li/i/18183749',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/13613296',\n            'https://i.gkd.li/i/14237527',\n            'https://i.gkd.li/i/18242457',\n          ],\n        },\n        {\n          key: 2,\n          name: '全屏弹窗',\n          matches:\n            '@LynxFlattenUI[clickable=true] -2 FlattenUIText[text=\"立即抢购\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16278152',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '功能类-全自动看广告获取听歌时长',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          actionDelay: 12000,\n          position: {\n            left: 'width * 7.45',\n            top: 'height * 0.5',\n          },\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            '@FlattenUIText[text=\"广告\"] + [text$=\"声音\"] + [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24521423',\n            'https://i.gkd.li/i/24521440',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTRewardVideoActivity',\n          matches: '[visibleToUser=true][text=\"奖励已领取\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24522627',\n        },\n        {\n          preKeys: [0, 1],\n          fastQuery: true,\n          actionDelay: 500,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTRewardVideoActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n            'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          ],\n          matches:\n            '[text=\"领取奖励\" || text^=\"再看一个\" || text=\"继续观看\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15140816',\n            'https://i.gkd.li/i/24521416',\n            'https://i.gkd.li/i/24521446',\n            'https://i.gkd.li/i/24521516',\n          ],\n        },\n        {\n          key: 99,\n          fastQuery: true,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            '@[clickable=true][width<120 && height<120] + LinearLayout > [text=\"当前无新视频\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24522244',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-关闭广告的声音',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches: '[text=\"开启声音\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24522999',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24521440',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '评价提示-评分弹窗',\n      desc: '使用返回关闭弹窗',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          action: 'back',\n          matches: '[text=\"为汽水音乐评分\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a7e53af0-8b84-4619-b369-69b949ab2ce4',\n          snapshotUrls: 'https://i.gkd.li/i/14720841',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-悬浮窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.luna.biz.main.main.MainActivity',\n          matches:\n            '[id=\"com.luna.music:id/fl_pendant_container\"] > [id=\"com.luna.music:id/view_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8a427d5f-680b-4562-9cf3-90b1db82df0f',\n          snapshotUrls: 'https://i.gkd.li/i/13674376',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '其他-关闭[更多直播]推荐',\n      desc: '直播间出现[更多直播]时点击右上角关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.luna.biz.live.plugin.LunaDefaultLivePlayerActivity',\n          matches:\n            '@[desc=\"关闭\"][clickable=true] <n RelativeLayout + FrameLayout >4 [text=\"更多直播\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/148466b5-9769-4b79-b648-f2cf7719e3e7',\n          snapshotUrls: 'https://i.gkd.li/i/22922565',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lxkj.dmhw.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lxkj.dmhw',\n  name: '呆萌价',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          position: {\n            left: 'width * 0.8981',\n            top: 'width * 0.1629',\n          },\n          matches: '[id=\"com.lxkj.dmhw:id/animation_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13246178',\n        },\n        {\n          key: 1,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15454142',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.lxt.cfmoto.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.lxt.cfmoto',\n  name: 'CFMOTO',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          name: '首页弹窗广告',\n          fastQuery: true,\n          activityIds: 'com.cfmoto.oilmoto.ui.MainCfActivity',\n          matches: '[id=\"com.lxt.cfmoto:id/closeClick\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13401967',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.m.mfood.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.m.mfood',\n  name: 'mFood',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-浮窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zdyl.mfood.ui.home.MainActivity',\n          matches: '[id=\"com.m.mfood:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13350787',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.m17qcc.mm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.m17qcc.mm',\n  name: '青创网',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'miuix.appcompat.app.m',\n          matches: '[text*=\"新版本\"] +(n) LinearLayout > TextView[text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12642297',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.m4399.gamecenter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.m4399.gamecenter',\n  name: '4399游戏盒',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          name: '首页右侧悬浮广告',\n          fastQuery: true,\n          activityIds:\n            'com.m4399.gamecenter.plugin.main.controllers.ApplicationActivity',\n          matches:\n            '@[id=\"com.m4399.gamecenter:id/close\"] + [id=\"com.m4399.gamecenter:id/image\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13297466',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '[id=\"com.m4399.gamecenter:id/image\"] + [id=\"com.m4399.gamecenter:id/close\"]',\n          exampleUrls: 'https://e.gkd.li/28dafb84-2474-4a09-9885-9810089bad00',\n          snapshotUrls: 'https://i.gkd.li/i/13297551',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.maertsno.m.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.maertsno.m',\n  name: 'OnStream',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'co.notix.interstitial.InterstitialActivity',\n          matches: '[vid=\"tv_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13842558',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.magicalstory.AppStore.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.magicalstory.AppStore',\n  name: '奇妙应用',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '软件详情页',\n          fastQuery: true,\n          actionDelay: 300, // 没有此字段会导致误触\n          activityIds: [\n            'com.magicalstory.AppStore.appDetails.AppDetailsActivity',\n            'com.magicalstory.AppStore.main.fragments.square.section.forumDetailsActivity',\n          ],\n          matches: [\n            '[vid=\"itemUser\"][visibleToUser=true]',\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[childCount=0][visibleToUser=true] <<n [vid=\"bannerLayout\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14771070',\n            'https://i.gkd.li/i/14771175',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/14771110', // 限定 visibleToUser, 防止误触\n            'https://i.gkd.li/i/17879219', // 限定 visibleToUser, 防止误触\n          ],\n        },\n        {\n          key: 1,\n          name: '搜索页面',\n          activityIds: 'com.magicalstory.AppStore.search.searchActivity',\n          matches:\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView < FrameLayout +2 *[visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14771429',\n        },\n        {\n          key: 2,\n          name: '首页',\n          fastQuery: true,\n          activityIds: 'com.magicalstory.AppStore.main.MainActivity',\n          matches: '[vid=\"button_close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14668408',\n        },\n        {\n          key: 3,\n          name: '评论区顶部',\n          fastQuery: true,\n          actionDelay: 300, // 没有此字段会导致误触\n          activityIds:\n            'com.magicalstory.AppStore.main.fragments.square.section.forumDetailsActivity',\n          matches: [\n            '[vid=\"title_browse\"][visibleToUser=true]',\n            'FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView <<n [vid=\"banner\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14758809',\n            'https://i.gkd.li/i/14783076',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-公告弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches: '[text=\"隐藏\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17892865',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.cretin.www.cretinautoupdatelibrary.activity.UpdateType10Activity',\n          matches:\n            '[id=\"com.magicalstory.AppStore:id/tv_update\"] <2 * + * > [id=\"com.magicalstory.AppStore:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13459373',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-首页横幅广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches:\n            '[vid=\"item_broadcast\"] >2 [vid=\"button_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c885f80c-9fd5-4fcc-9117-e8fed04ee300',\n          snapshotUrls: 'https://i.gkd.li/i/20259691',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.maidu.gkld.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.maidu.gkld',\n  name: '公考雷达',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-首页右侧悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.maidu.gkld.ui.main.MainActivity',\n          matches:\n            '[id=\"com.maidu.gkld:id/fl_float\"] + [id=\"com.maidu.gkld:id/close_image_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715291',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '[id=\"com.maidu.gkld:id/ll_open_app_notice\"] + [id=\"com.maidu.gkld:id/iv_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715250',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.manmanbuy.bijia.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.manmanbuy.bijia',\n  name: '慢慢买',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[text^=\"关闭\"][text.length=4]',\n          snapshotUrls: 'https://i.gkd.li/i/13214974',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '功能类-从剪贴板查历史价-拒绝',\n      desc: '点击[默默拒绝]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '@[clickable=true] > [text=\"默默拒绝\"]',\n          exampleUrls: 'https://e.gkd.li/73a7e5bb-35e1-4025-bfca-8f2714d1a58a',\n          snapshotUrls: 'https://i.gkd.li/i/25073813',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.maque.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.maque.app',\n  name: '麻雀省钱',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页活动弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.uzmap.pkg.EntranceActivity',\n          matches:\n            'ViewGroup[childCount=2] > ImageView[clickable=true] + ViewGroup[clickable=true][childCount=1] > ImageView[id=null][clickable=false]',\n          snapshotUrls: 'https://i.gkd.li/i/12640100',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.max.xiaoheihe.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.max.xiaoheihe',\n  name: '小黑盒',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-签到成功弹窗',\n      desc: '返回关闭弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          matches: '[text*=\"签到成功\"][text.length<10]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13421535',\n            'https://i.gkd.li/i/15048252',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          name: '收藏帖子后底部推荐关注卡片',\n          fastQuery: true,\n          activityIds:\n            'com.max.xiaoheihe.module.bbs.post.ui.activitys.WebNewsPostPageActivity',\n          matches: '[vid=\"iv_notify_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b7c25b6e-cc77-4bcc-a477-23b3de74c61f',\n          snapshotUrls: 'https://i.gkd.li/i/14914139',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-自动点击查看原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.module.bbs.post.ui.activitys.WebNewsPostPageActivity',\n            '.module.bbs.post.ui.activitys.PicturePostPageActivity',\n          ],\n          matches: '[vid=\"tv_original\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f7222b21-7037-4614-95ab-cff19ee15d38',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16646832',\n            'https://i.gkd.li/i/17574462',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/22377026',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.maxhom.weibu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.maxhom.weibu',\n  name: '暮瑟',\n  groups: [\n    {\n      key: 3,\n      name: '局部广告-交友页面底部广告',\n      activityIds: [\n        'com.maxhom.weibu.tool.home.activity.NewMainActivity',\n        'com.maxhom.weibu.WelcomeActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.tool.home.activity.NewMainActivity',\n            '.WelcomeActivity',\n          ],\n          matches: [\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"com.maxhom.weibu:id/flAd\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13377607',\n            'https://i.gkd.li/i/13377810',\n            'https://i.gkd.li/i/13728552',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.tool.home.activity.NewMainActivity',\n          matches: '[id=\"com.maxhom.weibu:id/anythink_myoffer_banner_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13702305',\n            'https://i.gkd.li/i/13702339',\n            'https://i.gkd.li/i/13702345',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-漂流瓶页面提示弹窗',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.tool.home.activity.ToolBottleActivity',\n            '.tool.home.activity.NewMainActivity',\n          ],\n          matches: '[id=\"com.maxhom.weibu:id/ivClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13377649',\n            'https://i.gkd.li/i/13457015',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.tool.home.activity.NewMainActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] + FrameLayout >2 [text=\"立即下载\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13377611',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-定位权限',\n      desc: '自动点击取消',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.maxhom.weibu.tool.home.activity.ToolBottleActivity',\n            'com.maxhom.weibu.tool.msg.MyBottleActivity',\n            'com.maxhom.weibu.tool.home.activity.NewMainActivity',\n          ],\n          matches: '[text=\"去设置\"] + [text=\"取消\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13377685',\n            'https://i.gkd.li/i/13457033',\n            'https://i.gkd.li/i/13457038',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mcdonalds.gma.cn.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mcdonalds.gma.cn',\n  name: '麦当劳',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击[取消]',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.activity.MainActivity',\n          matches: ['[text*=\"开启通知服务\"]', '[text=\"取消\"]'],\n          exampleUrls: 'https://e.gkd.li/64df0999-cd85-48c3-871f-5e65e9131d6e',\n          snapshotUrls: 'https://i.gkd.li/i/13259242',\n        },\n        {\n          key: 1,\n          activityIds: 'com.mcd.order.activity.OrderDetailActivity',\n          matches: '@[vid=\"v_cancel\"] + [vid=\"v_open\"]',\n          exampleUrls: 'https://e.gkd.li/123fc7d2-b2a3-41fb-8e4c-50f625b195c4',\n          snapshotUrls: 'https://i.gkd.li/i/17092374',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          forcedTime: 10000, // https://github.com/AIsouler/GKD_subscription/issues/677\n          activityIds: '.activity.MainActivity',\n          matches: '[vid=\"iv_ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6a95fcb7-3f9c-43f8-80bb-bdd034c81252',\n          snapshotUrls: 'https://i.gkd.li/i/17967920',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.mcd.order.activity.OrderActivity',\n          matches: '[vid=\"recommend_product_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8f3670e7-a0c9-47a5-b708-163a94ac2a8f',\n          snapshotUrls: 'https://i.gkd.li/i/17967943',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-关闭[开通免密支付]弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mcd.order.activity.OrderDetailActivity',\n          matches: '@[vid=\"iv_close\"] - * >2 [text*=\"免密支付\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/4b26dc9e-06d9-43a2-a105-6fb711c9aedb',\n          snapshotUrls: 'https://i.gkd.li/i/14798873',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-设备信息权限',\n      desc: '点击[不允许]',\n      fastQuery: true,\n      resetMatch: 'app',\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: 'com.mcdonalds.gma.cn.activity.LaunchActivity',\n          matches: '[text$=\"获取您的设备信息\"] + * > [text=\"不允许\"]',\n          exampleUrls:\n            'https://m.gkd.li/101449500/121c7e65-780e-41aa-acf8-34c491d4be41',\n          snapshotUrls: 'https://i.gkd.li/i/15944357',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mci.smagazine.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\nexport default defineGkdApp({\n  id: 'com.mci.smagazine',\n  name: '三星阅读',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6654a799-c853-4221-b058-8278949574cc',\n          snapshotUrls: 'https://i.gkd.li/i/14573324',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mem.MacaoLife.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mem.MacaoLife',\n  name: '澳覓',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.mem.life.ui.launch.LaunchActivity',\n          matches: '[id=\"com.mem.MacaoLife:id/cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13350665',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-浮窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mem.life.ui.home.HomeActivity',\n          matches: '[id=\"com.mem.MacaoLife:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13350685',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mfcloudcalculate.networkdisk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mfcloudcalculate.networkdisk',\n  name: '123云盘',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n            'com.mfcloudcalculate.networkdisk.activity.AdFreeActivity',\n            '.activity.LauncherActivity',\n            'com.adgain.sdk.base.activity.AdActivity',\n          ],\n          matches:\n            '[vid=\"tv_ad_free_close\" || vid=\"tv_ad_free_colse\" || vid=\"adgain_interstitial_skip_ll\" || vid=\"adgain_interstitial_close_ll\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/4cafd5fd-b5ed-4df1-b9f2-f443f53a7166',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13546173',\n            'https://i.gkd.li/i/14696860',\n            'https://i.gkd.li/i/18121213',\n            'https://i.gkd.li/i/24675097',\n            'https://i.gkd.li/i/24927790',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.mfcloudcalculate.networkdisk.activity.EmptyActivity',\n          matches:\n            'ImageView < @ViewGroup[clickable=true] < ViewGroup <7 ViewGroup + ViewGroup [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/cf43eaec-45f8-4e1a-bd3b-6a88fd055d29',\n          snapshotUrls: 'https://i.gkd.li/i/16154340',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n          matches:\n            '[text=\"反馈\"] -4 View[childCount=1] > Image[childCount=0][text=\"\"]',\n          exampleUrls: 'https://e.gkd.li/2ec6e71f-93b4-4ac4-a464-26d2a859445f',\n          snapshotUrls: 'https://i.gkd.li/i/17247801',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/49cef679-3efb-4719-9af9-8f3a4c311191',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17306992',\n            'https://i.gkd.li/i/24472832',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches: '@ImageView[clickable=true] - [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/af430910-56e0-4b19-b23f-b120ce19fdc0',\n          snapshotUrls: 'https://i.gkd.li/i/17456625',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/069fb571-ab57-42a7-a360-79b44efc2790',\n          snapshotUrls: 'https://i.gkd.li/i/18032004',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: [\n            '[text=\"反馈\"][visibleToUser=true]',\n            '[text=\"跳过\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/1326c88b-81e0-4f78-b301-778d29e10433',\n          snapshotUrls: 'https://i.gkd.li/i/18121205',\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          activityIds: 'com.meishu.sdk.activity.SdkInterstitialActivity',\n          matches:\n            '[vid=\"ms_activity_sdk_interstitial_cacel\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e2e7b175-20f6-4e12-a24a-504364a8b765',\n          snapshotUrls: 'https://i.gkd.li/i/18095705',\n        },\n        {\n          key: 8,\n          fastQuery: true,\n          action: 'back',\n          activityIds: '.MainActivity',\n          matches:\n            '[desc=\"开通前请阅读\"] -8 @ImageView[clickable=true][childCount=0][visibleToUser=true] < View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/21820334',\n        },\n        {\n          key: 9,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@[id=\"cj.mobile.wm.allmodules:id/wm_pop_pic_close\"] +n * > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23253580',\n        },\n        {\n          key: 10,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<60 && height<60] < View[childCount=1] < View[childCount=1] < View[childCount=1] < View[childCount=1] + View >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/34c7741f-0f03-4b0d-b8d2-917ed297e304',\n          snapshotUrls: 'https://i.gkd.li/i/24119772',\n        },\n        {\n          key: 11,\n          fastQuery: true,\n          action: 'back',\n          activityIds: '.MainActivity',\n          matches:\n            '[desc=\"开通前请阅读\"] -n @ImageView[childCount=0][width>800] <(1,2) View < View < View < View < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/ee504d60-ca93-40de-bb0f-292ef1df8c70',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24119773',\n            'https://i.gkd.li/i/25128678',\n          ],\n        },\n        {\n          key: 12,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[vid=\"channel_insert_close_iv\"][clickable=true] - ImageView[vid=\"iv_ad_icon\"]',\n          exampleUrls: 'https://e.gkd.li/fa0391fe-54d4-4db0-930d-2cb9002b3786',\n          snapshotUrls: 'https://i.gkd.li/i/24325263',\n        },\n        {\n          key: 13,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@TextView[clickable=true][childCount=0] <2 FrameLayout[childCount=2] - LinearLayout >4 [text$=\"第三方应用\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e6486e20-e908-48da-b84a-f3ea5519346b',\n          snapshotUrls: 'https://i.gkd.li/i/24404354',\n        },\n        {\n          key: 14,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<60 && height<60] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24473530',\n        },\n        {\n          key: 15,\n          activityIds: 'com.byazt.sr.Stub_Standard_Portrait_Activity',\n          matches: 'View[childCount=5] > [text^=\"svg\"][index=0][childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/25128382',\n        },\n        {\n          key: 16,\n          activityIds: '.MainActivity',\n          matches:\n            'View[childCount=0] < FrameLayout[childCount=2] - LinearLayout >4 [text$=\"第三方应用\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25128313',\n        },\n        {\n          key: 17,\n          activityIds:\n            'com.sigmob.sdk.base.common.PortraitTransparentAdActivity',\n          matches: '[id=\"ad_area\"] > [id=\"close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25128394',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '@View[clickable=true] - [desc=\"立即更新\"]',\n          exampleUrls: 'https://e.gkd.li/02cf5d37-8808-4abb-abf9-81f7ba8a8375',\n          snapshotUrls: 'https://i.gkd.li/i/17456852',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-扫码自动确认登录',\n      fastQuery: true,\n      actionMaximum: 1,\n      activityIds: '.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[desc=\"我已阅读并同意\"] - @View[clickable=true][text=null][visibleToUser=true][width<100 && height<100] <7 View[childCount=11] < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/b84f0579-952b-4c6c-9706-dc300eb4a555',\n          snapshotUrls: 'https://i.gkd.li/i/20521452',\n        },\n        {\n          preKeys: [0],\n          matches:\n            '@View[desc=\"确认登录\"][visibleToUser=true] <5 View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/b84f0579-952b-4c6c-9706-dc300eb4a555',\n          snapshotUrls: 'https://i.gkd.li/i/20521452',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-相册自动备份弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true][width<100 && height<100] +2 [desc=\"开启相册自动备份\"]',\n          exampleUrls: 'https://e.gkd.li/e86a59e7-9329-4931-9bdd-5f6b4f896294',\n          snapshotUrls: 'https://i.gkd.li/i/21326468',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '分段广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@TextView[clickable=true][childCount=0] <2 FrameLayout[childCount=2] < FrameLayout <2 LinearLayout + LinearLayout > [text=\"了解详情\"]',\n          exampleUrls: 'https://e.gkd.li/64fcf71b-b7a8-4d1e-8fd4-8be4ea4692a2',\n          snapshotUrls: 'https://i.gkd.li/i/24404389',\n        },\n        {\n          key: 1,\n          activityIds: '.MainActivity',\n          matches:\n            '@Image[childCount=0][width<60 && height<60][visibleToUser=true] < View[childCount=1] -(1,2,3) View >(2,3) [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/e6fc2756-928f-48d4-af51-3b6ce9aa557b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24404390',\n            'https://i.gkd.li/i/24979310',\n            'https://i.gkd.li/i/25128397',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] < [desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/54463724-d3c0-42b4-8fac-adf47b31799d',\n          snapshotUrls: 'https://i.gkd.li/i/24404391',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] < ViewGroup[childCount=1] < ViewGroup[childCount=1] -2 ViewGroup >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24589944',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[clickable=true][id=null][childCount=0] - [text=\"投诉\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24979308',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '[vid=\"ptgImgClose\" || vid=\"sdm_myoffer_banner_close\" || vid=\"ksad_banner_item_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24979282',\n            'https://i.gkd.li/i/25128395',\n            'https://i.gkd.li/i/25128396',\n          ],\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true] - [text^=\"立即\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25128309',\n        },\n        {\n          preKeys: [0, 1, 2, 3, 4, 5, 6],\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '@[clickable=true] >2 [text=\"不感兴趣\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24590419',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] <2 FrameLayout +n LinearLayout > [text^=\"立即\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a49e21d0-7259-4f6a-93e2-add166738a5b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24675412',\n            'https://i.gkd.li/i/24675589',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mfhd.ygj.p3.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mfhd.ygj.p3',\n  name: '动漫共和国',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'app.video.guoguo.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/efd8bd0a-4bd7-40e9-90fe-19d2891caff8',\n          snapshotUrls: 'https://i.gkd.li/i/21177378',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mi.earphone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mi.earphone',\n  name: '小米耳机',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches: '@[vid=\"close_iv\"] + [text=\"喜欢“小米耳机”吗？\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23263036',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mi.health.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mi.health',\n  name: '小米运动健康',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.fitness.baseui.common.CommonBaseActivity',\n          matches: [\n            '[text=\"评分\"][visibleToUser=true]',\n            '[text=\"下次再说\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13258813',\n            'https://i.gkd.li/i/21979253',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-后台运行',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.fitness.main.MainActivity',\n          matches:\n            '[text=\"开启后台无限制\"] + [id=\"com.mi.health:id/close_icon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13495035',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '活动弹窗',\n          activityIds: 'com.xiaomi.fitness.main.MainActivity',\n          matches:\n            '[id=\"com.mi.health:id/cardview\"] + [id=\"com.mi.health:id/dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13537836',\n        },\n        {\n          key: 1,\n          name: '表盘广告',\n          activityIds: 'com.xiaomi.wearable.yrn.views.WearableRNActivity',\n          matches: '@[clickable=true] > [desc=\"Close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23923968',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: [\n            '[text=\"下载并安装\" || text=\"立即更新\"]',\n            '[text=\"放弃更新\" || text=\"取消\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13537840',\n            'https://i.gkd.li/i/13626328',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '通知提示-公告栏',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.fitness.main.MainActivity',\n          matches:\n            '[vid=\"bannerAnnouncementView\"] [vid=\"iv_close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24099864',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-麦克风',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.fitness.baseui.common.CommonBaseActivity',\n          matches:\n            '@[vid=\"close_instruction\"][clickable=true] - [text^=\"鼾声梦话监测开关因麦克风未授权而关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24229351',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mi.poketrade.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mi.poketrade',\n  name: 'PokeHub',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '@[desc=\"Cancel\"][visibleToUser=true] + [desc=\"Update\"]',\n          exampleUrls: 'https://e.gkd.li/b0a0c338-16b1-4892-9cd6-92b4f485fda8',\n          snapshotUrls: 'https://i.gkd.li/i/19624988',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-订阅广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true] <2 View[getChild(5).desc=\"Subscribe\"] < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/19371ab4-5b1a-4efb-925a-883252fd50d0',\n          snapshotUrls: 'https://i.gkd.li/i/19643520',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@View[desc=\"Back\"][visibleToUser=true] < ImageView[desc*=\"VIP\"] < View < View < View < View < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/a7e15182-89fc-4b38-9acc-fdbbe81908f0',\n          snapshotUrls: 'https://i.gkd.li/i/19825695',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20598704',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miHoYo.cloudgames.Nap.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miHoYo.cloudgames.Nap',\n  name: '云·绝区零',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击[使用流量进行游戏]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mihoyo.cloudgame.main.MiHoYoCloudMainActivity',\n          matches:\n            '[text=\"使用流量进行游戏\" || text=\"继续使用移动网络\"][visibleToUser=true]',\n          exampleUrls: [\n            'https://e.gkd.li/6936d19b-bd2a-46d4-8284-93f0b2238359',\n            'https://e.gkd.li/f1d57678-ce9a-4384-b7ea-077e55b2aa49',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/20705751',\n            'https://i.gkd.li/i/20705824',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miHoYo.cloudgames.hkrpg.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miHoYo.cloudgames.hkrpg',\n  name: '云·星穹铁道',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击[使用流量进行游戏]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mihoyo.cloudgame.main.MiHoYoCloudMainActivity',\n          matches: '[text=\"使用流量进行游戏\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f33b53ea-32a2-48b3-a4a8-54bfa8b1fdd8',\n          snapshotUrls: 'https://i.gkd.li/i/14784161',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miHoYo.cloudgames.ys.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miHoYo.cloudgames.ys',\n  name: '云·原神',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击[使用流量进行游戏]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mihoyo.cloudgame.main.MiHoYoCloudMainActivity',\n          matches: '[text=\"使用流量进行游戏\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/84c18536-b3a4-4f6e-99b2-264c1a36beb5',\n          snapshotUrls: 'https://i.gkd.li/i/14783168',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miaoying.appmy.cs.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miaoying.appmy.cs',\n  name: '新小财神影视',\n  groups: [\n    {\n      key: -1,\n      name: '通知提示-公告弹窗',\n      desc: 'APP启动时出现的公告栏',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '@[desc=\"我知道了\"] + [desc=\"了解更多\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12522872',\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionDelay: 750,\n      activityIds: 'com.miaoying.appmy.cs.MainActivity',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12565637',\n            'https://i.gkd.li/i/12522881',\n            'https://i.gkd.li/i/12565480',\n            'https://i.gkd.li/i/12565507',\n            'https://i.gkd.li/i/12565510',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12565475',\n        },\n        {\n          key: 2,\n          matches:\n            'TextView[text=null] - FrameLayout > ImageView + FrameLayout > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12565522',\n        },\n        {\n          key: 3,\n          name: '全屏广告-弹窗广告2',\n          activityIds: 'com.sigmob.sdk.base.common.TransparentAdActivity',\n          matches: '[id=\"close_btn\"][text=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12565375',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.microsoft.emmx.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.microsoft.emmx',\n  name: 'Edge',\n  groups: [\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'org.chromium.chrome.browser.ChromeTabbedActivity',\n          matches: '[text=\"允许通知\"] + [text=\"不，谢谢\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13646187',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-[关闭所有标签？]弹窗',\n      desc: '点击[确定]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.chromium.chrome.browser.ChromeTabbedActivity',\n          matches: '[text=\"关闭所有标签页?\"] + * > [text=\"确定\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/487f4236-676c-4fb3-bcac-17b4644edd46',\n          snapshotUrls: 'https://i.gkd.li/i/14325653',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-关闭标签页',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.chromium.chrome.browser.ChromeTabbedActivity',\n          matches: '[text=\"关闭标签页\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/81f9a737-a111-4630-898b-4f2b5de0623b',\n          snapshotUrls: 'https://i.gkd.li/i/14614992',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-[前往CSDN APP阅读全文]弹窗',\n      desc: '点击[继续]',\n      rules: [\n        {\n          activityIds: 'org.chromium.chrome.browser.ChromeTabbedActivity',\n          matches:\n            '[text=\"前往CSDN APP阅读全文\"] < * > [desc=\"继续\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/fea75b5a-010d-4f67-8998-6cf794eda975',\n          snapshotUrls: 'https://i.gkd.li/i/14610025',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mihoyo.hyperion.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mihoyo.hyperion',\n  name: '米游社',\n  groups: [\n    {\n      key: 3,\n      name: '功能类-自动打卡',\n      desc: '点击[打卡],切换板块自动签到',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mihoyo.hyperion.main.HyperionMainActivity',\n          matches:\n            'TextView[id=\"com.mihoyo.hyperion:id/signTv\"][text=\"打卡\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13721772', // 未打卡\n            'https://i.gkd.li/i/13721776', // 已打卡\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-游戏版本活动',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.popup.HomePopupDialogActivity',\n          matches: '[vid=\"closeIv\"]',\n          exampleUrls: 'https://e.gkd.li/5c54c1cc-95ae-420d-b3af-37e8553a6327',\n          snapshotUrls: 'https://i.gkd.li/i/16818949',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '分段广告-游戏版本活动',\n      desc: '点击关闭',\n      fastQuery: true,\n      activityIds: '.main.HyperionMainActivity',\n      exampleUrls: 'https://e.gkd.li/197dfb66-6b42-4fbd-b60c-4d801a8c729c',\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          matches: '[vid=\"bottomBarBgIv\"] + * > [vid=\"close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16996311',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击确定',\n          matches: '[vid=\"rootLayout\"] > [vid=\"confirmTv\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16996319',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '功能类-米游自动签到全家桶',\n      desc: '包含崩坏3、绝区零、原神、星穹铁道',\n      forcedTime: 10000,\n      activityIds: '.web2.MiHoYoWebActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击签到',\n          excludeMatches: '[text^=\"请在此绑定你的\"][visibleToUser=true]', // 未绑定角色前排除匹配\n          anyMatches: [\n            'WebView[text*=\"签到\"] >4 View[childCount=11] > @View[childCount=3][visibleToUser=true] > Image[index=0][text!=null]', // 崩坏3、绝区零、原神\n            'WebView[text*=\"签到\"] >4 View[childCount=10] > View + TextView[childCount=0][visibleToUser=true]', // 星穹铁道、崩坏学园2、未定事件簿\n          ],\n          exampleUrls: 'https://e.gkd.li/53d22dc7-b368-46c0-85d2-fe132b0832a9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17601269', // 崩坏3签到前\n            'https://i.gkd.li/i/17601338', // 绝区零签到前\n            'https://i.gkd.li/i/17611619', // 原神签到前\n            'https://i.gkd.li/i/17611613', // 星穹铁道签到前\n            'https://i.gkd.li/i/14967627', // 签到节点 clickable=false\n            'https://i.gkd.li/i/19586048', // 崩坏学园2签到前\n            'https://i.gkd.li/i/19586142', // 未定事件簿签到前\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/17601295', // 崩坏3签到后\n            'https://i.gkd.li/i/17601347', // 绝区零签到后\n            'https://i.gkd.li/i/17611621', // 原神签到后\n            'https://i.gkd.li/i/19581359', // 崩坏学园2签到后\n            'https://i.gkd.li/i/17611617', // 星穹铁道签到后 无法排除匹配\n            'https://i.gkd.li/i/19586048', // 未绑定角色前排除匹配\n            'https://i.gkd.li/i/19586142', // 未绑定角色前排除匹配\n            'https://i.gkd.li/i/19587714', // 未绑定角色前排除匹配\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '关闭签到后的弹窗',\n          matches:\n            '@TextView[visibleToUser=true][text=\"\"] - View[childCount=2] >2 [text*=\"签到成功\"]',\n          exampleUrls: 'https://e.gkd.li/ef30277a-bd5d-444a-a9d5-ce63406d1269',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17601273', // 崩坏3\n            'https://i.gkd.li/i/17601340', // 绝区零\n            'https://i.gkd.li/i/17611620', // 原神\n            'https://i.gkd.li/i/17611616', // 星穹铁道\n            'https://i.gkd.li/i/14967631', // 关闭节点 clickable=false\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          name: '关闭签到提醒',\n          matches: '[text=\"不用了\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/56299b94-01fb-4d83-9796-ec9bd6bbae64',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17601283', // 崩坏3\n            'https://i.gkd.li/i/17601345', // 绝区零\n          ],\n        },\n        {\n          preKeys: [1, 2],\n          key: 3,\n          name: '从签到页返回',\n          excludeMatches: '[text=\"不用了\"][visibleToUser=true]',\n          matches:\n            'WebView[text*=\"签到\"] > View >3 View[index=0][childCount=1] > TextView[childCount=0][text=\"\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/cc68f623-5dc7-4703-9768-28826c4f16f6',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17601295', // 崩坏3\n            'https://i.gkd.li/i/17601347', // 绝区零\n            'https://i.gkd.li/i/17611621', // 原神\n            'https://i.gkd.li/i/17611617', // 星穹铁道\n            'https://i.gkd.li/i/17629453', // 返回节点 clickable=false\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/17601283', // 崩坏3\n            'https://i.gkd.li/i/17601345', // 绝区零\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.HyperionMainActivity',\n          matches: [\n            '[text^=\"开启通知提醒\"]',\n            '@[clickable=true] > [text$=\"拒绝\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24489020',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mipay.wallet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mipay.wallet',\n  name: '钱包',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[vid=\"skip\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/670b95f6-12d0-4787-9158-98ac52eb1641',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16828031',\n            'https://i.gkd.li/i/16828053',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.jr.app.MiFinanceActivity',\n          matches:\n            'FrameLayout >2 View[childCount=2] >2 View[childCount=2] > @ImageView[clickable=true][index=0][visibleToUser=true] <<n [vid=\"flutter_container\"]',\n          exampleUrls: 'https://e.gkd.li/9d8a1bb4-40ab-4312-8f5b-ef224e18720e',\n          snapshotUrls: 'https://i.gkd.li/i/16828039',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.cloudservice.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.cloudservice',\n  name: '小米云服务',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '云存储空间不足弹窗',\n          activityIds:\n            'com.miui.cloudservice.hybrid.SignDeductDialogHybridActivity',\n          matches: '[text=\"以后再说\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/df5f7c28-a1fa-4d1b-87b8-2f592e5a8423',\n          snapshotUrls: 'https://i.gkd.li/i/12847374',\n        },\n        {\n          key: 1,\n          name: '会员打折弹窗',\n          fastQuery: true,\n          activityIds: 'com.miui.cloudservice.ad.AdPopupActivity',\n          matches: '[vid=\"ad_popup_close_iv\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/fbb8a877-4e69-4d72-b31d-85ad87ab34af',\n          snapshotUrls: 'https://i.gkd.li/i/14320937',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击[以后再说]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.MiCloudMainActivity',\n          matches: '@[text=\"以后再说\"] + [text=\"立即升级\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/789b4472-f989-4d32-aff2-6b657b6e0deb',\n          snapshotUrls: 'https://i.gkd.li/i/14476801',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.ui.MiCloudMainActivity',\n          matches: [\n            '[text$=\"开启“通知”权限。\"]',\n            '[text=\"取消\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23165486',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.gallery.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.gallery',\n  name: '小米相册',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-删除时勾选[同时从云端删除]',\n      rules: [\n        {\n          activityIds: 'com.miui.gallery.activity.InternalPhotoPageActivity',\n          matches: '[text=\"同时从云端删除\"][checked=false]',\n          snapshotUrls: 'https://i.gkd.li/i/15804289',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-流量同步自动点击[继续同步]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.BackupDetailActivity',\n          matches: [\n            '[text^=\"当前处于移动网络下，继续同步将消耗\"]',\n            '[text=\"继续同步\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23124555',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '其他-图片保存成功弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.ExternalPhotoPageActivity',\n          matches: ['[text=\"图片已经保存到相册\"]', '[text=\"确定\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/23383772',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.huanji.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.huanji',\n  name: '小米换机',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '@[text=\"下次再说\"] + [text=\"立即升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14332463',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.packageinstaller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.packageinstaller',\n  name: '应用包管理组件',\n  groups: [\n    {\n      key: 7,\n      name: '功能类-放弃开启安全守护',\n      fastQuery: true,\n      actionMaximum: 1,\n      activityIds:\n        'com.miui.packageInstaller.ui.normalmode.InstallProgressActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"30天内不再提示\"][checked=false]',\n          exampleUrls: 'https://e.gkd.li/fe6682cd-a27a-4183-8717-15fd373bafcf',\n          snapshotUrls: 'https://i.gkd.li/i/16487140',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"放弃\"]',\n          exampleUrls: 'https://e.gkd.li/859dac99-62ca-4876-bdfb-c84795254111',\n          snapshotUrls: 'https://i.gkd.li/i/16487142',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '功能类-自动安装/更新应用',\n      desc: '该规则仅适配关闭[应用安全验证]和[安全守护]的情况，可在安装页面右上角设置里关闭，关闭后的风险自行承担',\n      matchRoot: true,\n      fastQuery: true,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          name: '点击[安装]/[更新]',\n          activityIds: [\n            'com.miui.packageInstaller.NewInstallerPrepareActivity',\n            'com.miui.packageInstaller.ui.InstallPrepareAlertActivity',\n          ],\n          excludeMatches:\n            '[text=\"已了解此应用存在风险\"][checked=false][visibleToUser=true]',\n          matches:\n            '@FrameLayout[clickable=true] > LinearLayout[childCount=1] > [text^=\"继续\" || text^=\"仍然\"][text.length=4][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bd3e2764-4978-44ed-93d3-f176c23c3ec4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16487278',\n            'https://i.gkd.li/i/16487282',\n            'https://i.gkd.li/i/17691996',\n            'https://i.gkd.li/i/20053957',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/25095995',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击[完成]',\n          activityIds:\n            'com.miui.packageInstaller.ui.normalmode.InstallProgressActivity',\n          excludeMatches: '[text*=\"安装失败\"]', // 安装失败时排除匹配，此节点比 [text=\"完成\"] 延迟出现，未出现时 visibleToUser=false，因此去掉[visibleToUser=true]限制\n          matches: '[text=\"完成\"]',\n          exampleUrls: 'https://e.gkd.li/0011622b-580a-4810-81a4-b4a1181d121d',\n          snapshotUrls: 'https://i.gkd.li/i/16487274',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20282424',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-自动允许应用安装软件',\n      fastQuery: true,\n      actionMaximum: 1,\n      activityIds: [\n        'com.miui.packageInstaller.ui.InstallPrepareAlertActivity',\n        'com.miui.packageInstaller.NewInstallerPrepareActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击[记住我的选择]',\n          matches: [\n            '[text^=\"是否允许\"][text*=\"安装应用\"][visibleToUser=true]',\n            'CheckBox[text=\"记住我的选择\"][checked=false][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/af834ca4-744a-485f-bec6-9802979fe949',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16487366',\n            'https://i.gkd.li/i/16487389',\n            'https://i.gkd.li/i/18937578',\n            'https://i.gkd.li/i/20287209',\n          ],\n        },\n        {\n          preKeys: [0],\n          name: '点击[允许]',\n          matches: '[text=\"允许\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4f4ce827-6b74-4b55-8fed-5e009acd4bbd',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16487365',\n            'https://i.gkd.li/i/18937576',\n            'https://i.gkd.li/i/20287160',\n          ],\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '功能类-安装来源不可信',\n      desc: '点击[授权本次安装]',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          position: {\n            left: 'width * 0.3511',\n            top: 'height * 0.5',\n          },\n          activityIds:\n            'com.miui.packageInstaller.ui.InstallPrepareAlertActivity',\n          matches: '[text$=\"授权本次安装\"]',\n          exampleUrls: 'https://e.gkd.li/e470baf2-56dc-4e3c-8da0-9747eeec602f',\n          snapshotUrls: 'https://i.gkd.li/i/17898736',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '功能类-关闭备案信息弹窗',\n      desc: '点击[继续安装]',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.miui.packageInstaller.ui.InstallPrepareAlertActivity',\n            'com.miui.packageInstaller.NewInstallerPrepareActivity',\n          ],\n          matches: ['[text$=\"备案信息\"]', '[text=\"继续安装\"]'],\n          exampleUrls: 'https://e.gkd.li/d5bc4b1a-e363-4aab-9240-e6d914730935',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17908298',\n            'https://i.gkd.li/i/20642970',\n          ],\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '功能类-无视风险继续安装',\n      fastQuery: true,\n      actionMaximum: 1,\n      activityIds: 'com.miui.packageInstaller.NewInstallerPrepareActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@[clickable=true] >2 [text=\"无视风险继续安装\"]',\n          exampleUrls: 'https://e.gkd.li/46f06948-5ec1-4054-8aa3-a8f39e5d1f26',\n          snapshotUrls: 'https://i.gkd.li/i/18002566',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"继续\"]',\n          exampleUrls: 'https://e.gkd.li/375fc2ec-841a-4af6-be99-9391ebeb7dc5',\n          snapshotUrls: 'https://i.gkd.li/i/18002704',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches:\n            '@[clickable=true][desc=\"更多\"] > [vid=\"action_menu_item_child_icon\"]',\n          exampleUrls: 'https://e.gkd.li/de8fb9c9-ea4e-4c03-93bd-047bf31cd4c8',\n          snapshotUrls: 'https://i.gkd.li/i/18002708',\n        },\n        {\n          preKeys: [2],\n          key: 3,\n          matches: '@[clickable=true] >(1,2) [text=\"单次安装授权\"]',\n          exampleUrls: 'https://e.gkd.li/0e8afdd7-04d3-46fd-9095-b61123d041b2',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18002712',\n            'https://i.gkd.li/i/20746863',\n          ],\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '功能类-自动勾选[已了解此应用存在风险]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.miui.packageInstaller.NewInstallerPrepareActivity',\n          matches:\n            '[text=\"已了解此应用存在风险\"][checked=false][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25095995',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.player.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.player',\n  name: '小米音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25094542',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.tencent.qqmusiclite.activity.player.MusicPlayerActivity',\n          matches:\n            '[id=\"com.miui.player:id/free_mode_tips_layout\"] + [id=\"com.miui.player:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13303283',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches:\n            '[id=\"com.miui.player:id/cl_floating_promote\"] > [id=\"com.miui.player:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13562649',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-横幅广告',\n      desc: '关闭播放页面横幅广告',\n      fastQuery: true,\n      activityIds:\n        'com.tencent.qqmusiclite.activity.player.MusicPlayerActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.miui.player:id/ad_skip_text\"][text=\"关闭\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d923ba1b-3098-49b0-8593-c84dbaa16612',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13304347', // 倒计时\n            'https://i.gkd.li/i/13304344', // 可关闭\n          ],\n        },\n        {\n          key: 1,\n          matches: '[text=\"广告｜跳过\"]', // 不使用vid=\"ad_skip_text\"，避免和key 0冲突\n          exampleUrls:\n            'https://m.gkd.li/57941037/2ae1ca24-fb50-48ff-9343-e5607b512127',\n          snapshotUrls: 'https://i.gkd.li/i/14711960',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=0][visibleToUser=true] < ViewGroup[childCount=1] < ViewGroup[childCount=2] < FrameLayout < FrameLayout < [vid=\"webview_container\"]',\n          exampleUrls: 'https://e.gkd.li/5e6fd5f8-6ad3-4a46-ab34-c9b6b2d7a112',\n          snapshotUrls: 'https://i.gkd.li/i/17783777',\n        },\n        {\n          key: 1,\n          activityIds: 'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',\n          matches: '[id=null][desc~=\".*关闭.*按钮.*\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12700955',\n            'https://i.gkd.li/i/22562104',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-弹窗广告（部分误触）',\n      desc: '注意：会关闭年度报告邀请函弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches: '[id=\"com.miui.player:id/iv_close_dialog_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13623503',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-看广告视频领VIP',\n      desc: '等待15s自动点击\"退出\"',\n      rules: [\n        {\n          actionDelay: 15000,\n          fastQuery: true,\n          activityIds: 'com.tencentmusic.ad.tmead.reward.TMERewardActivity',\n          matches: '[id=\"com.miui.player:id/tme_ad_skip_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13610667',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '局部广告-主界面卡片广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches: '[vid=\"ad_close\"][text=null]',\n          exampleUrls: 'https://e.gkd.li/32ad4d0f-8992-45b0-9e1f-82ce2cc58dcb',\n          snapshotUrls: 'https://i.gkd.li/i/16773614',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches: '[vid=\"banner_divider\"] - * > [vid=\"close_banner\"]',\n          exampleUrls: 'https://e.gkd.li/d9b74767-84b6-4668-8a9b-261bd938a8a3',\n          snapshotUrls: 'https://i.gkd.li/i/20420253',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '分段广告-首页卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches: '[vid=\"ad_more\"]',\n          exampleUrls: 'https://e.gkd.li/e7d3d6c3-d8be-4e0f-ac02-e5df2a0615b3',\n          snapshotUrls: 'https://i.gkd.li/i/20420265',\n        },\n        {\n          preKeys: [0],\n          key: 20,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches: '[vid=\"ad_close\"][text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/6ca7beba-98b8-4892-b275-1a116d040115',\n          snapshotUrls: 'https://i.gkd.li/i/20420322',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.securityadd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.securityadd',\n  name: '系统服务组件',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-游戏加速弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.miui.gamebooster.GameBoosterRichWebActivity',\n          matches:\n            '[text=\"活动图片\"] +2 @Image[clickable=true][childCount=0][visibleToUser=true] <<n [vid=\"content_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13914659',\n            'https://i.gkd.li/i/14668629',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.securitycenter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.securitycenter',\n  name: '安全服务/小米手机管家',\n  groups: [\n    {\n      key: 10,\n      name: '功能类-USB安装应用,自动点击[继续安装]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.miui.permcenter.install.AdbInstallActivity',\n          matches: '[text=\"继续安装\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13269875',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-禁止获取定位',\n      desc: '关闭\"允许联网及定位\"后，每次打开手机管家都会出现',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.miui.securityscan.MainActivity',\n            'com.miui.permcenter.permissions.SystemAppPermissionDialogActivity',\n          ],\n          matches: [\n            '[id=\"com.miui.securitycenter:id/title\"][text=\"获取位置信息\"]',\n            '[text=\"不同意\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13474517',\n            'https://i.gkd.li/i/13476592',\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-使用返回退出时直接点击[退出]',\n      desc: '退出时忽略[体检优化分数]/忽略[存储空间预警]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.miui.securityscan.MainActivity',\n          matches: [\n            '[text=\"体检优化\" || text=\"存储空间预警\"][visibleToUser=true]',\n            '[text=\"退出\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13474504',\n            'https://i.gkd.li/i/13476770',\n            'https://i.gkd.li/i/15137908',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18126157',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '功能类-电量已低于20%',\n      desc: '点击[知道了]',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '@[text=\"知道了\"] + [text=\"省电模式\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14468423',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-高敏感权限自动确定',\n      desc: '勾选[我已知晓可能存在的风险]-10s后点击[确定]',\n      fastQuery: true,\n      activityIds: [\n        'com.miui.permcenter.privacymanager.SpecialPermissionInterceptActivity',\n        'com.miui.permcenter.privacymanager.DeviceManagerApplyActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: [\n            '[text=\"我已知晓可能存在的风险，并自愿承担可能导致的后果\"]',\n            '@[vid=\"check_box\"][checked=false]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/e9672ccd-8dd1-4060-bdbe-52bb355d404f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14965657',\n            'https://i.gkd.li/i/15242826',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"确定\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1f2a118a-db2a-448d-a95d-f10d746b72e3',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14965656',\n            'https://i.gkd.li/i/15242825',\n          ],\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '功能类-应用信息页-自启动提示',\n      desc: '点击[知道了]/[关闭]',\n      fastQuery: true,\n      activityIds: 'com.miui.appmanager.ApplicationsDetailsActivity',\n      rules: [\n        {\n          key: 0,\n          action: 'back',\n          matches: '[text^=\"开启自启动\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15524706',\n        },\n        {\n          key: 1,\n          matches: ['[text^=\"关闭自启动后将导致\"]', '[text=\"关闭\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/15531343',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '功能类-自动允许分享文件',\n      desc: '允许应用通过分享获取手机文件',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.miui.wakepath.ui.ConfirmStartActivity',\n          matches: ['[text=\"分享文件\"]', '[text=\"允许\"]'],\n          exampleUrls: 'https://e.gkd.li/02c752e7-3dd9-47dc-819b-e8246de29b6a',\n          snapshotUrls: 'https://i.gkd.li/i/17174152',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '功能类-自动关闭SIM卡安全保护验证提示',\n      desc: '点击[确定]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.miui.simlock.activity.SuccessDialogActivity',\n            'com.miui.simlock.activity.SuccessDialogNormalActivity',\n          ],\n          matches: ['[text=\"SIM卡安全保护验证成功\"]', '[text=\"确定\"]'],\n          exampleUrls: 'https://e.gkd.li/2274c673-a2a9-43ad-a5ab-74598787ec0f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17276599',\n            'https://i.gkd.li/i/17276586',\n          ],\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '功能类-禁止后台运行弹窗',\n      desc: '点击确定',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.miui.powercenter.legacypowerrank.PowerDetailActivity',\n          matches: [\n            '[text=\"应用在后台被终止运行，可能会影响应用正常使用。\"]',\n            '[text=\"确定\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23096094',\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '功能类-风险提示-仍然支付',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.nantian.iBank.ui.activity.container.ProgramSingleWindowActivity',\n          matches: '[text=\"仍然支付\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24717617',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.systemAdSolution.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.systemAdSolution',\n  name: '智能服务',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-为什么不希望看到这条推广',\n      desc: '点击\"不感兴趣\"',\n      activityIds: [\n        'com.xiaomi.ad.feedback',\n        'com.android.thememanager.module.detail.view.ThemeDetailActivity',\n        'com.android.thememanager.ThemeResourceProxyTabActivity',\n        'com.android.calendar.homepage.AllInOneActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '[text=\"不感兴趣\"][clickable=true]',\n            '@[clickable=true] > [text=\"不感兴趣\"][clickable=false][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13227328',\n            'https://i.gkd.li/i/13255751',\n            'https://i.gkd.li/i/14946925',\n            'https://i.gkd.li/i/23619341',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '[text=\"广告密集\"][clickable=true]',\n            '@[clickable=true] > [text=\"广告密集\"][clickable=false][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/19636920',\n            'https://i.gkd.li/i/23619357',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.video.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.video',\n  name: '小米视频',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      desc: '该广告的第二段需开启[智能服务]的对应规则才能关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.miui.video.feature.detail.NewShortVideoDetailActivity',\n          matches: '[vid=\"v_banner_bottom_right\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/cd25f4a5-64db-4471-8eea-3d84a34ffb72',\n          snapshotUrls: 'https://i.gkd.li/i/16044569',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.miui.video.feature.detail.NewShortVideoDetailActivity',\n          matches: '[vid=\"iv_ad\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/cd25f4a5-64db-4471-8eea-3d84a34ffb72',\n          snapshotUrls: 'https://i.gkd.li/i/16044569',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.miui.virtualsim.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.miui.virtualsim',\n  name: '全球上网',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.mobile.businesshall.ui.common.RecommendPopupActivity',\n          matches: '[vid=\"img_close_btn\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/76a7cf39-06f1-4e1b-9bb6-fd8b1ad25e8e',\n          snapshotUrls: 'https://i.gkd.li/i/15981731',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mj.mjyd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mj.mjyd',\n  name: '追漫大全',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',\n          matches:\n            '@ImageView < FrameLayout[childCount=1] <3 FrameLayout[childCount=5] <3 FrameLayout[childCount=5] >3 [text=\"立即下载\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12895086',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mm.android.lc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mm.android.lc',\n  name: '乐橙',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      ignoreGlobalGroupMatch: true,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"advert_countdown_view\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b30750e1-92ca-452b-8467-a0074989ec92',\n          snapshotUrls: 'https://i.gkd.li/i/14586621',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mmzztt.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mmzztt.app',\n  name: '美之图',\n  groups: [\n    {\n      key: 1,\n      name: '其他-提示[切换高清]时点击[取消]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.uzmap.pkg.EntranceActivity',\n          matches: [\n            '[text=\"切换高清\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ea71f47e-13e3-4980-a6d6-d8e8faf27541',\n          snapshotUrls: 'https://i.gkd.li/i/23146683',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.modian.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.modian.app',\n  name: '摩点',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-[我的]界面广告条',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.modian.app.ui.activity.MainActivity',\n          matches:\n            '[id=\"com.modian.app:id/fl_banner_layout\"] > [id=\"com.modian.app:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13610188',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mosoink.teach.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mosoink.teach',\n  name: '云班课',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-首页班课列表广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.mosoink.teach.MainMenuActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/64072399/4f7366d4-77eb-4a11-8e08-26afc29f29ed',\n          snapshotUrls: 'https://i.gkd.li/i/13778179',\n        },\n        {\n          key: 1,\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup -4 ViewGroup >2 [text^=\"扭动手机\"]',\n          exampleUrls:\n            'https://m.gkd.li/64072399/ab4a196f-725d-4e03-aabf-fb0eb6018f51',\n          snapshotUrls: 'https://i.gkd.li/i/13786802',\n        },\n        {\n          key: 2,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls:\n            'https://m.gkd.li/64072399/69bb91ee-5367-4819-94d7-90e357dd9d3c',\n          snapshotUrls: 'https://i.gkd.li/i/13784406',\n        },\n        {\n          key: 3,\n          matches: '[vid=\"interact_ad_root\"] > [vid=\"iv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/64072399/695871fb-9c73-4c93-a6d1-18d90786604a',\n          snapshotUrls: 'https://i.gkd.li/i/13778123',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.moutai.mall.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.moutai.mall',\n  name: 'i茅台',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.moutai.mall.MainActivity',\n            'com.moutai.mall.module.splash.SplashActivity',\n          ],\n          matches:\n            '[id=\"com.moutai.mall:id/ivPic\"] + ViewGroup + [id=\"com.moutai.mall:id/vClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12745130',\n            'https://i.gkd.li/i/12745153',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '@[id=\"com.moutai.mall:id/vClose\"] - LinearLayout > [text*=\"开通消息通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12745142',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.movie.store.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.movie.store',\n  name: '影视仓',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          activityIds:\n            'com.github.tvbox.osc.ui.activity.mobile.MobileHomeActivity',\n          matches: '[text=\"广告\"] +2 View > View + TextView',\n          snapshotUrls: 'https://i.gkd.li/i/13476107',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.github.tvbox.osc.ui.activity.mobile.MobileHomeActivity',\n          matches: '[desc$=\"dislike\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/df960a4d-764d-4a9e-bb1e-f0ab325e4cb0',\n          snapshotUrls: 'https://i.gkd.li/i/14396706',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mt.mtxx.mtxx.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mt.mtxx.mtxx',\n  name: '美图秀秀',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text=\"升级新版客户端\"] - [text=\"取消\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13238352',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-VIP弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mt.mtxx.mtxx.MainActivity',\n          matches: '[vid=\"iv_close\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d98355c6-1308-4ed1-bf29-56499e22446d',\n          snapshotUrls: 'https://i.gkd.li/i/14368853',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.cosmos.album.album3.XXAlbumMainActivity',\n          matches: '@ImageView[clickable=true] - * > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15076408',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mxbc.mxsa.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mxbc.mxsa',\n  name: '蜜雪冰城',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-主界面弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: 'com.mxbc.mxsa.modules.main.MainActivity',\n          matches: '[id=\"com.mxbc.mxsa:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12929345',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mxbc.ohsa.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mxbc.ohsa',\n  name: '蜜雪冰城鸿蒙版',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mxbc.ohsa.modules.main.MainAbilityShellActivity',\n          matches:\n            '@UIComponent[id=\"Id_close\"] <2 UIComponentContainer < UIComponentContainer < UIComponentContainer < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13728113',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mxchip.petmarvel.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mxchip.petmarvel',\n  name: '滴宠生活',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15102179',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ab86d0ac-00f3-46e5-bfbc-c6a37c1c5a23',\n          snapshotUrls: 'https://i.gkd.li/i/23600688',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-左上角卡片弹窗',\n      desc: '点击X',\n      rules: [\n        {\n          activityIds: 'com.mxchip.petmarvel.device.panel.DevicePanelActivity',\n          matches:\n            'View[childCount=19] > View[index=1] > Image[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13989316',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mxchip.petmarvel.MainActivity',\n          matches: '[vid=\"iv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/de4ea9ad-c85f-4ace-bd4e-7b7fc9adbc2a',\n          snapshotUrls: 'https://i.gkd.li/i/14717743',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mxtech.videoplayer.ad.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mxtech.videoplayer.ad',\n  name: 'MX 播放器',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-谷歌广告',\n      activityIds: 'com.mxtech.videoplayer.ad.ActivityMediaList',\n      rules: [\n        {\n          matches:\n            '[desc=\"Advertisement\"] + View >(2) View + Button[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12642204',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.myapp.app.xaoorti.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.myapp.app.xaoorti',\n  name: '天天视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告-1',\n          activityIds: 'com.ys.resemble.ui.login.splash.SplashADSetActivity',\n          matches: [\n            '[text=\"广告\"]',\n            '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13520475',\n        },\n        {\n          key: 1,\n          name: '快手广告-2',\n          activityIds: 'com.ys.resemble.ui.MainActivity',\n          matches: ['[text=\"广告\"]', '@ViewGroup > [text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13546700',\n        },\n        {\n          key: 2,\n          name: '快手广告-3',\n          activityIds: 'com.ys.resemble.ui.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13546701',\n        },\n        {\n          key: 3,\n          name: '腾讯广告',\n          activityIds: 'com.ys.resemble.ui.login.splash.SplashADSetActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13520477',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.mygolbs.mybus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.mygolbs.mybus',\n  name: '掌上公交',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      activityIds: [\n        'com.mygolbs.mybus.RTimeActivity',\n        'com.mygolbs.mybus.NewHomePageActivity',\n        'com.mygolbs.mybus.StationsResultActivityNew',\n        'com.mygolbs.mybus.mapsearch.poisearch.PoiSearchActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          name: '点击底部中间x关闭图标',\n          matches:\n            '[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] RelativeLayout[childCount=4] > TextView[text.length>0] + ImageView + ImageView[clickable=true][id=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12790521',\n            'https://i.gkd.li/i/12790706',\n            'https://i.gkd.li/i/12790841',\n            'https://i.gkd.li/i/12790887',\n          ],\n        },\n        {\n          key: 2,\n          name: '点击右上/下角x关闭图标',\n          matches:\n            '[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] View[childCount=2||childCount=3] > View[childCount=4] > View[childCount=1] > Image[text=\"\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12790656',\n            'https://i.gkd.li/i/12790903',\n          ],\n        },\n        {\n          key: 3,\n          name: '点击右上角x关闭图标-2',\n          matches:\n            '[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] View[childCount=5] > View[childCount=2][index=4] > View[childCount=1] > Image[text=\"\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12790610',\n        },\n        {\n          key: 4,\n          name: '点击右上角x关闭图标-3',\n          matches:\n            '[id=\"com.mygolbs.mybus:id/ad_frameLayout\"] View[childCount=2] > View[childCount=6][index=0] > View[childCount=1][index=3] > Image[text=\"\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12790941',\n        },\n        {\n          key: 5,\n          name: '点击右下角x关闭按钮',\n          matches:\n            '[text=\"广告\"] <3 View + @View[clickable=true] >2 [text=\"×\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12791122',\n        },\n        {\n          preKeys: [1, 2, 3, 4, 5],\n          name: '点击不感兴趣',\n          matches:\n            '@LinearLayout[clickable=true][childCount<=2] > [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12790671',\n            'https://i.gkd.li/i/12790551',\n            'https://i.gkd.li/i/12790616',\n            'https://i.gkd.li/i/12790707',\n            'https://i.gkd.li/i/12790717',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.mygolbs.mybus.mapsearch.poisearch.PoiSearchActivity',\n            'com.mygolbs.mybus.LoginActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12790762',\n            'https://i.gkd.li/i/14587392',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            'ImageView[childCount=0] < LinearLayout < @LinearLayout[clickable=true] - * > [text=\"反馈\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ec768f05-5431-4684-af40-a7987dff2ec6',\n          snapshotUrls: 'https://i.gkd.li/i/14546373',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.qq.e.ads.ADActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] - [text=\"国货大牌 新年必囤\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f7dc0b47-b37f-409a-aebe-4aaa844aa897',\n          snapshotUrls: 'https://i.gkd.li/i/14587397',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: [\n            'com.mygolbs.mybus.NewHomePageActivity',\n            'com.mygolbs.mybus.RTimeActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14219270',\n            'https://i.gkd.li/i/14572506',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-顶栏小广告',\n      activityIds: 'com.mygolbs.mybus.RTimeActivity',\n      rules: [\n        {\n          name: '点击右侧x关闭按钮',\n          matches: '[id=\"com.mygolbs.mybus:id/ad_close2\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12790841',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '自动点击\"取消\"',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.defines.CustomDialog',\n          matches: ['[text$=\"请开启通知权限\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/12715980',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-签到成功弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.mygolbs.mybus.guligold.SignSuccessActivity',\n          matches:\n            '@[id=\"com.mygolbs.mybus:id/iv_close\"] < RelativeLayout - LinearLayout >n [text=\"签到成功\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12716035',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.myzaker.ZAKER_Phone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.myzaker.ZAKER_Phone',\n  name: 'ZAKER',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0c69945f-ac0e-44a8-a0a3-95544e53849f',\n          snapshotUrls: 'https://i.gkd.li/i/20689993',\n        },\n        {\n          key: 1,\n          position: {\n            left: 'width * 0.9009',\n            top: 'width * 0.075',\n          },\n          matches: '[id=\"com.myzaker.ZAKER_Phone:id/cover_pic\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c140267a-a48a-45a9-9303-7507aa2008e4',\n          snapshotUrls: 'https://i.gkd.li/i/13694552',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.cloudmusic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.cloudmusic',\n  name: '网易云音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          excludeActivityIds: [\n            '.music.biz.setting.activity.SettingActivity',\n            '.music.biz.search.activity.SearchActivity',\n          ],\n          matches:\n            '[text*=\"跳过\" || text*=\"Skip\"][text.length<10][width<500 && height<200][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15092772',\n            'https://i.gkd.li/i/17892200', // 'Skip' for English users.\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/15092814',\n            'https://i.gkd.li/i/16318423',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      desc: '点击[关闭]-点击[直接关闭]/[不感兴趣]',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.activity.MainActivity',\n            '.music.biz.comment.activity.CommentActivity',\n            '.music.biz.voice.player.revisionV1.ProgramPlayerActivityV1',\n          ],\n          matches:\n            '[vid=\"tag_ad_banner\" || vid=\"adTagView\" || vid=\"closeAction\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13859634',\n            'https://i.gkd.li/i/13927753',\n            'https://i.gkd.li/i/14549836',\n            'https://i.gkd.li/i/14275955',\n            'https://i.gkd.li/i/16047087',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.music.biz.comment.activity.CommentActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=2] > ImageView - ViewGroup > TextView[text.length>0] <<n [vid=\"recyclerView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23771616',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.music.biz.comment.activity.CommentActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=1] + ViewGroup[childCount=1] > [text=\"艺人相关\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23771678',\n        },\n        {\n          // preKeys: [0, 1],该条分段广告有概率被VIP弹窗插入导致二段不触发，故去掉preKeys\n          key: 90,\n          fastQuery: true,\n          activityIds: [\n            '.activity.MainActivity',\n            '.music.biz.comment.activity.CommentActivity',\n            '.music.biz.voice.player.revisionV1.ProgramPlayerActivityV1',\n          ],\n          anyMatches: [\n            '[text=\"直接关闭\"][clickable=true]',\n            '@[clickable=true] > [text=\"不感兴趣\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13859635',\n            'https://i.gkd.li/i/14932659',\n            'https://i.gkd.li/i/16047089',\n            'https://i.gkd.li/i/23771645',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: '.activity.PlayerActivity',\n          matches: '[vid=\"iv_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15282417',\n        },\n        {\n          key: 1,\n          activityIds: '.music.biz.search.activity.SearchActivity',\n          matches: '[vid=\"adCloseIV\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16385547',\n        },\n        {\n          key: 2,\n          activityIds: '.activity.MainActivity',\n          matches: '[vid=\"v_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23982125',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          action: 'back',\n          activityIds: [\n            '.activity.MainActivity',\n            '.activity.PlayerActivity',\n            '.music.biz.rn.activity.LayerReactNativeActivity',\n            '.music.biz.comment.activity.CommentActivity',\n          ],\n          excludeMatches:\n            '[text=\"当前场景\" || vid=\"mainDrawerContainer\"][visibleToUser=true]',\n          matches:\n            '[vid=\"dsl_dialog_root\" || text^=\"邀您开通VIP\" || text^=\"本周已免费试听\" || text^=\"免费听模式体验中\" || text^=\"续费后，即可畅听\" || text*=\"小组件到桌面\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13804534',\n            'https://i.gkd.li/i/13848913',\n            'https://i.gkd.li/i/13962214',\n            'https://i.gkd.li/i/14036940',\n            'https://i.gkd.li/i/15047126',\n            'https://i.gkd.li/i/15125892',\n            'https://i.gkd.li/i/15244091',\n            'https://i.gkd.li/i/20097535',\n            'https://i.gkd.li/i/20097609',\n            'https://i.gkd.li/i/20115012',\n            'https://i.gkd.li/i/22451511',\n            'https://i.gkd.li/i/23770986',\n            'https://i.gkd.li/i/23770978',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/15404777',\n            'https://i.gkd.li/i/20115204',\n            'https://i.gkd.li/i/20159204',\n            'https://i.gkd.li/i/24157914',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-VIP弹窗',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          action: 'back',\n          activityIds: [\n            '.music.biz.rn.activity.MainProcessLayerReactNativeActivity',\n            '.activity.MainActivity',\n            '.activity.PlayListActivity',\n            '.music.biz.rn.activity.LayerReactNativeActivity',\n          ],\n          matches: [\n            '[text=\"支付宝\"][visibleToUser=true]',\n            '[text^=\"确认协议并\" || text=\"立即开通\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13189055',\n            'https://i.gkd.li/i/13260416',\n            'https://i.gkd.li/i/13996787',\n            'https://i.gkd.li/i/13230605',\n            'https://i.gkd.li/i/14268181',\n            'https://i.gkd.li/i/13391498',\n            'https://i.gkd.li/i/14045917',\n            'https://i.gkd.li/i/14926722',\n            'https://i.gkd.li/i/16242200',\n            'https://i.gkd.li/i/20097276',\n            'https://i.gkd.li/i/20218350',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20097306', // 正常开通会员页面\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.netease.cloudmusic.music.biz.rn.activity.CashierRNActivity',\n          matches:\n            '[text=\"忍痛离开\"] < @ViewGroup[clickable=true] -n * > [text$=\"VIP可畅享千万曲库\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24548104',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.activity.MainActivity',\n          matches: ['[text*=\"新版本\"]', '[text=\"近期不再提示\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13233790',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/15092457',\n        },\n        {\n          key: 1,\n          activityIds: '.activity.MainActivity',\n          matches: [\n            '[vid=\"updateVersionTitle\"][visibleToUser=true]',\n            '[vid=\"md_dialog_cm_close_btn\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/8827aa5a-a105-4910-981c-d9ecc036a87d',\n          snapshotUrls: 'https://i.gkd.li/i/18492805',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-扫码后自动点击[授权登录]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.module.login.LoginPermissionActivity',\n          matches: '[text=\"授权登录\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14830218',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '分段广告-搜索页广告',\n      desc: '该规则触发时会导致输入法收起',\n      fastQuery: true,\n      activityIds: '.music.biz.search.activity.SearchActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"adTagView\" || vid=\"adTagViewNew\"][clickable=true]',\n          exampleUrls: 'https://e.gkd.li/afb3fc72-7a69-489a-ac5a-7a70f5685667',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16357208',\n            'https://i.gkd.li/i/16357111',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 90,\n          matches: '[text=\"直接关闭\"]',\n          exampleUrls: 'https://e.gkd.li/1e2b2822-01dd-455f-8991-1b746c61c07c',\n          snapshotUrls: 'https://i.gkd.li/i/16357210',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.gl.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.gl',\n  name: '网易大神',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.serviceupdate.widget.DialogUpdate',\n          matches:\n            '@[id=\"com.netease.gl:id/iv_close\"] +2 LinearLayout >n [id=\"com.netease.gl:id/btn_update\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12883135',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.netease.gl.ui.activity.welcome.WelcomeActivity',\n          matches:\n            '@[id=\"com.netease.gl:id/iv_close\"] + [id=\"com.netease.gl:id/iv_cover\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12883277',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.compfeed.widget.CommonWebPopupDialog',\n          matches: '@[id=\"com.netease.gl:id/iv_close\"] + [text=\"开启推送\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13072071',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.mail.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.mail',\n  name: '网易邮箱大师',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          excludeMatches: '[vid=\"ad_skip\"][clickable=false]',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13195662',\n            'https://i.gkd.li/i/16883928',\n            'https://i.gkd.li/i/14900326', // 使用 excludeMatches 防止提前触发规则\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/14046124',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.9016',\n            top: 'width * 0.1557',\n          },\n          matches: '[id=\"com.netease.mail:id/animation_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13207736',\n            'https://i.gkd.li/i/14900326', // 防止提前触发规则\n            'https://i.gkd.li/i/16892947', // 防止提前触发规则\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-邮件列表广告',\n      activityIds: 'com.netease.mail.biz.main.MainITabActivity',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.netease.mail:id/ad_vip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12999833',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[id=\"com.netease.mail:id/ll_delete\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12999841',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '其他-获得成就弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            'TextView[text=\"恭喜您获得以下成就\"] - @TextView[clickable=true][text=\"\"] <<n [vid=\"browser_fragment_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13876817',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.mkey.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.mkey',\n  name: '网易将军令',\n  groups: [\n    {\n      key: 2,\n      name: '其他-一键迁移至新版将军令',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.netease.mkey.activity.NtSecActivity',\n          matches: '[id=\"com.netease.mkey:id/tv_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13421302',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.mobimail.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.mobimail',\n  name: '网易邮箱',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<=10][!(id=\"com.netease.mobimail:id/ad_skip\")]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12686132',\n            'https://i.gkd.li/i/13328441',\n            'https://i.gkd.li/i/13800060',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/12686093',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: '[id=\"com.netease.mobimail:id/ad_skip\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12667519',\n            'https://i.gkd.li/i/13328425', // 限定 [clickable=true] 防止误触假的跳过按钮\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-邮件列表页面广告条目',\n      rules: [\n        {\n          activityIds: 'com.netease.mail.biz.main.MainITabActivity',\n          matches:\n            '[id=\"com.netease.mobimail:id/ad_vip\" || id=\"com.netease.mobimail:id/ll_delete\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12683488',\n            'https://i.gkd.li/i/12683511',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.newsreader.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.newsreader.activity',\n  name: '网易新闻',\n  groups: [\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击暂不开启',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds:\n        'com.netease.newsreader.common.base.activity.SingleFragmentActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[text*=\"开启系统推送\"] - ImageView < * < * < FrameLayout + FrameLayout >(3) Button[text=\"暂不开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12639800',\n        },\n        {\n          key: 1,\n          matches: '[text^=\"打开推送\"] +(2) RelativeLayout > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12639869',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '分段广告-首页信息流广告',\n      desc: '点击卡片广告x关闭按钮-关闭反馈理由弹窗',\n      activityIds: 'com.netease.nr.phone.main.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            'FrameLayout[childCount=1] >5 TextView[text=\"广告\"] +2 ImageView[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12639751',\n        },\n        {\n          preKeys: [1],\n          name: '首页信息流广告-反馈理由',\n          matches: '[text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12639752',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.uuremote.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.uuremote',\n  name: 'UU远程',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.remote.app.ui.activity.MainActivity',\n          matches: [\n            '[text=\"开启消息通知\"]',\n            '[text=\"以后再说\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23787454',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.netease.yanxuan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.netease.yanxuan',\n  name: '网易严选',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.netease.yanxuan.module.mainpage.activity.MainPageActivity',\n          matches: '[id=\"com.netease.yanxuan:id/trans_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12840641',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.neusoft.tax.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.neusoft.tax',\n  name: '楚税通',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          position: {\n            left: 'width * 0.2528',\n            top: 'width * 0.0842',\n          },\n          activityIds: 'io.dcloud.PandoraEntryActivity',\n          matches: 'WebView[childCount=4] >2 [text=\"以后再说立即体验\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7496414a-c742-4689-ad1b-60d903b90d52',\n          snapshotUrls: 'https://i.gkd.li/i/15362911',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.newcapec.mobile.ncp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.newcapec.mobile.ncp',\n  name: '完美校园',\n  groups: [\n    {\n      key: 10,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.wanxiao.basebusiness.activity.SplashActivity',\n          matches: '[id=\"com.newcapec.mobile.ncp:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12843377',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '其他-密码过期提示弹窗',\n      desc: '点击\"取消\"按钮',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.wanxiao.ui.activity.IndexActivity',\n          matches: '[id=\"com.newcapec.mobile.ncp:id/dialog_oppotion\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12843399',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.nineteenlou.nineteenlou.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.nineteenlou.nineteenlou',\n  name: '19楼',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: [\n            '[vid=\"adv_layout\"][visibleToUser=true]',\n            '[vid=\"jump\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/3c41a2ae-a470-4dc5-974b-4157c77b6efb',\n          snapshotUrls: 'https://i.gkd.li/i/20438918',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.niu.cloud.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.niu.cloud',\n  name: '小牛电动',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示-固件更新弹窗',\n      desc: '点击[以后再说]',\n      matchRoot: true, // https://github.com/AIsouler/GKD_subscription/issues/1051\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivityNew',\n          matches: [\n            '[text=\"发现新固件\"][visibleToUser=true]',\n            '[text=\"以后再说\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/b486cc0b-3ac2-4be3-a38d-c16c952f4fce',\n          snapshotUrls: 'https://i.gkd.li/i/20919078',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivityNew',\n          matches: '[vid=\"closeDialogIv\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/78f2afd2-de8b-46b5-ae6c-6df58862f00e',\n          snapshotUrls: 'https://i.gkd.li/i/20939822',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.njh.biubiu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.njh.biubiu',\n  name: 'biubiu加速器',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.njh.ping.speedup.detail.fragment.LaunchVPNActivity',\n          matches: '[vid=\"iv_listitem_dislike\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/13a828c7-b94d-463f-bceb-a92fa7ff069a',\n          snapshotUrls: 'https://i.gkd.li/i/19603369',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.nn.accelerator.box.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.nn.accelerator.box',\n  name: '雷神加速器',\n  groups: [\n    {\n      key: 0, // clickCenter 可能误触 https://github.com/AIsouler/GKD_subscription/issues/285\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"tobid_splash_skip_ll\" || vid=\"ms_skipView\"]',\n          exampleUrls: 'https://e.gkd.li/03b70de9-9e1d-4362-83df-08a95c2c224f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16451775',\n            'https://i.gkd.li/i/18668837',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            'ImageView[desc=\"skip_button\"] + ViewGroup > TextView[text=\"跳过\"]',\n          exampleUrls: 'https://e.gkd.li/625debfb-faa5-438a-a5ba-5175233ea1d2',\n          snapshotUrls: 'https://i.gkd.li/i/16828285',\n        },\n        {\n          key: 2,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/d5777afa-927b-4d6d-be67-e92fd2f206cd',\n          snapshotUrls: 'https://i.gkd.li/i/18668718',\n        },\n        {\n          key: 3,\n          matches: '@View[clickable=true] - [text=\"互动广告\"]',\n          exampleUrls: 'https://e.gkd.li/d32ca677-f0c4-49e4-8dfe-f105a9ab1cb9',\n          snapshotUrls: 'https://i.gkd.li/i/18668852',\n        },\n        {\n          key: 4,\n          anyMatches: [\n            '[text*=\"跳过\"][text.length<10][clickable=true][visibleToUser=true]',\n            '@[clickable=true] > [text*=\"跳过\"][text.length<10][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/bff8f543-e262-4db1-b99b-32e2988fb47b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23096608',\n            'https://i.gkd.li/i/24695040',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: ['.activity.MainActivity', '.activity.WelcomeActivity'],\n          matches: '[vid=\"iv_activity\"] + [vid=\"iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/a65304c0-0abe-4fc6-8eda-03f8d51ad62d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16869245',\n            'https://i.gkd.li/i/24694978',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: ['[text*=\"打开通知\"]', '[vid=\"iv_close\"]'],\n          exampleUrls: 'https://e.gkd.li/18e591d7-56cf-490d-bca8-d6eda269525d',\n          snapshotUrls: 'https://i.gkd.li/i/16870058',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.nowcasting.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.nowcasting.activity',\n  name: '彩云天气',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-VIP弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.nowcasting.activity.WeatherActivity',\n          matches: '[id=\"com.nowcasting.activity:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13405130',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      activityIds: 'com.nowcasting.activity.WeatherActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13405131',\n            'https://i.gkd.li/i/14814345',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] < ViewGroup <5 ViewGroup + ViewGroup [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14814374',\n        },\n        {\n          key: 2,\n          matches: '[vid=\"entrance_image\"] + [vid=\"close\"]',\n          exampleUrls: 'https://e.gkd.li/bd53a023-f83a-45ae-b58e-c7369f29bb2e',\n          snapshotUrls: 'https://i.gkd.li/i/16965108',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      activityIds: 'com.nowcasting.activity.WeatherActivity',\n      rules: [\n        {\n          key: 1,\n          matches: '[id=\"com.nowcasting.activity:id/ll_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13690822',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[id=\"com.nowcasting.activity:id/ll_uninterested\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13690830',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      activityIds: 'com.nowcasting.activity.WeatherActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.nowcasting.activity:id/jad_feed_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13690826',\n        },\n        {\n          key: 1,\n          matches:\n            '@FrameLayout[visibleToUser=true] +2 * > [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14814348',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-点击收起顶部工具栏',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.nowcasting.activity.WeatherActivity',\n          matches:\n            'ViewGroup[childCount=2][visibleToUser=true] > [vid=\"fl_arrow\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/5bdf4f45-d66d-441e-a2ce-f32d5fc40796',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14814347', // 收起前\n            'https://i.gkd.li/i/14814412', // 收起后\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.nursinghome.monitor.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.nursinghome.monitor',\n  name: '看护家',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.ui.activity.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[clickable=true][childCount=1] < ViewGroup <6 ViewGroup + ViewGroup >3 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/12316698-b92f-4a78-be55-5d9a90700f4a',\n          snapshotUrls: 'https://i.gkd.li/i/17504953',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] + RelativeLayout >2 [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24979384',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.ja.adx.qiming.ad.activity.InterstitialActivity',\n          matches: '[vid=\"qiming_widget_iv_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24979391',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.oidalmn.donrv.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.oidalmn.donrv',\n  name: '番喜视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@[desc=\"top_close_button\"] < ViewGroup[childCount=1] <n ViewGroup >(2,3) [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0e4b7af0-5708-4be7-b1e9-87b469d9cadb',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24325415',\n            'https://i.gkd.li/i/24325538',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][width<80 && height<80] < FrameLayout[childCount=1] - FrameLayout >3 [text$=\"了解更多内容\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/84da57a5-611d-4330-99b7-ca977d48da78',\n          snapshotUrls: 'https://i.gkd.li/i/24377039',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.okii.watch.global.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.okii.watch.global',\n  name: '小天才',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.xtc.widget.phone.popup.activity.CustomActivity',\n          matches: '[id=\"com.okii.watch.global:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13630943',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-手表安全守护弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xtc.widget.phone.popup.activity.CustomActivity13',\n          matches: '[id=\"com.okii.watch.global:id/photo_sensitive_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8a5030a1-2b24-4a8a-a944-29d0eaabf936',\n          snapshotUrls: 'https://i.gkd.li/i/13630944',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.oneshareclap.malaysian.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.oneshareclap.malaysian',\n  name: '水果派',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[text=\"关闭广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14275367',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.onethingcloud.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.onethingcloud.android',\n  name: '网心云',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter', // https://github.com/AIsouler/GKD_subscription/issues/587\n          matches:\n            '@View[desc*=\"跳过\"][desc.length<10][visibleToUser=true] < View < View < View < View < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/0d0560e5-2b7d-4599-8336-a5254d5e13ea',\n          snapshotUrls: 'https://i.gkd.li/i/18094505',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.onethingcloud.android.MainActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][index=parent.childCount.minus(1)] <(2,3) View[getChild(0).text=null] < View < View[childCount=2] < View < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14766665',\n            'https://i.gkd.li/i/16438609',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18094505',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.openai.chatgpt.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.openai.chatgpt',\n  name: 'ChatGPT',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-套餐限额提示',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.MainActivity',\n          matches:\n            '[text*=\"套餐限额\"] + @View[clickable=true] > [desc=\"关闭\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24996012',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.oplus.appdetail.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.oplus.appdetail',\n  name: 'OPPO/一加应用安装器',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动安装应用',\n      desc: '点击 ①继续安装 ②完成',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '点击[继续安装]',\n          activityIds: [\n            '.model.guide.ui.InstallGuideActivity',\n            '.modelv2.parsing.PackageParsingV2Activity',\n          ],\n          excludeMatches:\n            '[id=\"com.oplus.appdetail:id/view_scanning_and_tip_view_tv_title\"][text^=\"正在扫描\"]',\n          matches:\n            '[id=\"com.oplus.appdetail:id/view_bottom_guide_continue_install_btn\" || text=\"继续安装\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13054204',\n            'https://i.gkd.li/i/13038570',\n            'https://i.gkd.li/i/23146291',\n            'https://i.gkd.li/i/23146289',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/13038560', // 扫描病毒阶段不进行点击\n        },\n        {\n          key: 1,\n          name: '点击[完成]',\n          activityIds: '.model.finish.InstallFinishActivity',\n          matches: '[text=\"完成\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13038664',\n            'https://i.gkd.li/i/13054849',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-安装中高风险应用',\n      fastQuery: true,\n      activityIds: '.model.guide.ui.InstallGuideActivity',\n      rules: [\n        {\n          key: 0,\n          position: {\n            left: 'width * 0.726',\n            top: 'height * 0.5',\n          },\n          matches: '[text=\"不建议安装此应用；若仍需安装，可查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/8697d1e8-fa9c-4b5b-92b9-559f55672047',\n          snapshotUrls: 'https://i.gkd.li/i/22377287',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"已知悉应用风险\"][checked=false]',\n          exampleUrls: 'https://e.gkd.li/45246cef-1ef5-49bf-8b7f-09377bde823a',\n          snapshotUrls: 'https://i.gkd.li/i/22377327',\n        },\n        {\n          preKeys: [1],\n          matches: '[text=\"仍然安装\"]',\n          exampleUrls: 'https://e.gkd.li/45246cef-1ef5-49bf-8b7f-09377bde823a',\n          snapshotUrls: 'https://i.gkd.li/i/22377327',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.oppo.store.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.oppo.store',\n  name: 'OPPO商城',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '点击下次再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '@[text=\"下次再说\"] -3 [text=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13295202',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.oppo.store.MainActivity',\n          matches:\n            'ImageView[id=\"com.oppo.store:id/dialog_delete\"][desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13295201',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.oray.sunlogin.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.oray.sunlogin',\n  name: '向日葵远程控制',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[vid=\"tobid_splash_skip_text\" || vid=\"ms_skipView\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f41b0367-9161-4329-987d-b2d0ad9ec233',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17004919',\n            'https://i.gkd.li/i/22056539',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22861457',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] +2 LinearLayout >2 [vid=\"sig_ad_privacy_ll\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22863334',\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '全屏广告-瓜子会员弹窗',\n      desc: '点击右上角[关闭]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.oray.sunlogin.application.Main',\n            '.dialog.ShareDialog',\n          ],\n          matches: '[id=\"com.oray.sunlogin:id/close\"][text=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13195950',\n            'https://i.gkd.li/i/12910411',\n            'https://i.gkd.li/i/13197454', //如果没有text条件则会和这一条误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示-版本更新',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.application.Main',\n          matches:\n            '[text=\"立即更新\"] <2 * > [id=\"com.oray.sunlogin:id/button_cancel\"][text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13195560',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      activityIds: '.application.Main',\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter', // clickNode 可能无效\n          matches:\n            '[id=\"com.oray.sunlogin:id/fl_close_advertise\" || vid=\"iv_dislike\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2cad526b-1691-45e9-826b-eb92299cb8ee',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13207785',\n            'https://i.gkd.li/i/17159821',\n          ],\n        },\n        {\n          preKeys: [0],\n          anyMatches: [\n            '@[clickable=true] > [text=\"不感兴趣\"][clickable=false][visibleToUser=true]',\n            '[text=\"不感兴趣\"][clickable=true][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/55f927c7-edb5-4324-a73a-ad6dfa090eb6',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22865433',\n            'https://i.gkd.li/i/22941348',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-退出app提示',\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '[text=\"是否确认退出向日葵？\"] + LinearLayout > [vid=\"button_ok\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13927148',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-远程控制结束后的广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.application.Main',\n          matches: '@[vid=\"close\"][visibleToUser=true] - [vid=\"ll_remote_end\"]',\n          exampleUrls: 'https://e.gkd.li/104ba188-b4cd-4922-b27e-f654085eb163',\n          snapshotUrls: 'https://i.gkd.li/i/17782893',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.overlook.android.fing.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.overlook.android.fing',\n  name: 'Fing',\n  groups: [\n    {\n      key: 0,\n      name: '其他-教程弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.main.SplashActivity',\n          matches: '[text=\"關閉\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15521827',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.p1.mobile.putong.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.p1.mobile.putong',\n  name: '探探',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击[取消]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.core.newui.main.NewMainAct',\n          matches:\n            '@[vid=\"buttonDefaultNeutral\"][clickable=true] > [text=\"取消\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2326365c-b31e-429a-9357-765d1c58da4c',\n          snapshotUrls: 'https://i.gkd.li/i/14445054',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      desc: '点击[暂不设置]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.core.ui.seepage.likers.FakeLikersAct',\n          matches: '[text=\"打开通知\"] + [text=\"暂不设置\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/137e9907-9767-4acf-b803-034182346ef3',\n          snapshotUrls: 'https://i.gkd.li/i/14445055',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.paget96.batteryguru.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.paget96.batteryguru',\n  name: 'Battery Guru',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击[移除广告]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'activities.MainActivity',\n          matches: '[vid=\"remove_ads\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/81d94f93-2308-4401-a151-771e5a94b79a',\n          snapshotUrls: 'https://i.gkd.li/i/17538140',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches:\n            '[id=\"ad_container\"] >3 [id=\"video_container\"] >3 Button[clickable=true][childCount=0][id=null][text=\"\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/40c72a7b-3e68-496f-a993-43ab9c759cbd',\n          snapshotUrls: 'https://i.gkd.li/i/23417592',\n        },\n        {\n          key: 1,\n          activityIds: '.activities.IntroActivity',\n          matches:\n            '@Button[clickable=true][childCount=0][id=null] < View[childCount=1] <3 View - [id=\"app-interstitial-slot\"] >2 [id=\"abgcp\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23416244',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.panaceasoft.pswallpaper.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.panaceasoft.pswallpaper',\n  name: 'ClrvAI',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      resetMatch: 'app',\n      actionMaximum: 1,\n      activityIds: '.xiao.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"cb_ignore\"][checked=false]',\n          exampleUrls: 'https://e.gkd.li/b92e4e94-fafc-47b1-9774-3126cfaed981',\n          snapshotUrls: 'https://i.gkd.li/i/14141561',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b92e4e94-fafc-47b1-9774-3126cfaed981',\n          snapshotUrls: 'https://i.gkd.li/i/14141561',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pandabus.android.zb.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pandabus.android.zb',\n  name: '淄博出行',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[id=\"com.pandabus.android.zb:id/iv_native_dislike\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13400177',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.paokeji.yiqu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.paokeji.yiqu',\n  name: '喵趣漫画',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击\"暂不\"',\n      matchTime: 10000,\n      fastQuery: true,\n      resetMatch: 'app',\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds:\n            'com.aster.comic.app.view.bookdetails.BookdetailsActivity',\n          matches: '[id=\"com.paokeji.yiqu:id/btnCancel\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2ce54292-bfc6-41c6-b2e5-e7d8302fc522',\n          snapshotUrls: 'https://i.gkd.li/i/14140265',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] + @View[childCount=2] > [text*=\"跳过\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13829749',\n            'https://i.gkd.li/i/14362119',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n            'com.aster.comic.app.view.MainActivity',\n          ],\n          matches:\n            '[text=\"反馈\"] -(2,4) @View[childCount=1][visibleToUser=true] > Image[childCount=0][text=\"\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13809578',\n            'https://i.gkd.li/i/14717730',\n            'https://i.gkd.li/i/16062358',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '@LinearLayout[clickable=true] - * > [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14847142',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.aster.comic.app.view.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15374245',\n        },\n        {\n          key: 4,\n          activityIds: [\n            'com.aster.comic.app.view.MainActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches:\n            '[text=\"反馈\"] + View[childCount=1] > Image[childCount=0][text=\"\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15711106',\n            'https://i.gkd.li/i/17301509',\n          ],\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: 'com.kwad.sdk.api.proxy.app.KsRewardVideoActivity',\n          matches:\n            '@[id=\"com.kwad.dy.sdk:id/ksad_end_close_btn\"] - [text=\"免费获取\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16369203',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: 'com.kwad.sdk.api.proxy.app.KsRewardVideoActivity',\n          matches: '@ViewGroup[clickable=true] +3 ViewGroup > [text*=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16401930',\n        },\n        {\n          key: 7,\n          name: '腾讯SDK-1',\n          fastQuery: true,\n          activityIds: [\n            'com.aster.comic.app.view.MainActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13830354',\n            'https://i.gkd.li/i/13842966',\n          ],\n        },\n        {\n          key: 8,\n          name: '腾讯SDK-2',\n          fastQuery: true,\n          activityIds: 'com.aster.comic.app.view.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15173845',\n        },\n        {\n          key: 9,\n          name: '字节SDK',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'FrameLayout[desc*=\"close\"] > View',\n          snapshotUrls: 'https://i.gkd.li/i/13839519',\n        },\n        {\n          key: 10,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[id=\"com.byted.pangle.m:id/tt_reward_full_count_down\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13810767',\n        },\n        {\n          key: 11,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            'Image[childCount=0][text=\"\"] < @View + View > [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13810150',\n        },\n        {\n          key: 12,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Activity_T',\n          matches: ['[text*=\"广告\"]', '[text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13809629',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-漫画页链接断开提示',\n      desc: '点击[点我重试]',\n      actionMaximum: 3,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.aster.comic.app.view.reader.ReaderActivity',\n          matches: '@[clickable=true] > [text=\"点我重试\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d71c73bb-289f-4205-a253-fcd8bd32f196',\n          snapshotUrls: 'https://i.gkd.li/i/14572053',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pcncn.jj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pcncn.jj',\n  name: '作业精灵',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.pcncn.jj.act.AnswerDetail2Activity',\n          matches: '[id=\"com.pcncn.jj:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13695874',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.act.HomeNewActivity',\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b83aa566-8105-4877-abcd-800abfe7634e',\n          snapshotUrls: 'https://i.gkd.li/i/17265140',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pcs.knowing_weather.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pcs.knowing_weather',\n  name: '知天气',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"btn_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/68883ff3-cc5a-46a1-9258-bfeff208dbee',\n          snapshotUrls: 'https://i.gkd.li/i/19832565',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.peopledailychina.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.peopledailychina.activity',\n  name: '人民日报',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.peopledailychina.activity.activity.MainActivity',\n          matches: '[vid=\"advert_iv_del\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/53c28fe8-9db9-45d8-82b3-7034aa10d2ed',\n          snapshotUrls: 'https://i.gkd.li/i/15175151',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.picacomic.fregata.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.picacomic.fregata',\n  name: 'PicACG',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.picacomic.fregata:id/imageButton_popup_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/83610194/2a9a1179-3a50-4317-900a-42c8197517ed',\n          snapshotUrls: 'https://i.gkd.li/i/13422624',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-公告弹窗',\n      desc: '点击主页面的公告和广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          matches:\n            '[id=\"com.picacomic.fregata:id/button_dialog_announcement_positive\"]',\n          exampleUrls:\n            'https://m.gkd.li/83610194/a5cbd7ce-79b4-49da-ba01-2b7db907d1f1',\n          snapshotUrls: 'https://i.gkd.li/i/13422767',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-漫画详情页广告',\n      desc: '点击卡片广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: 'com.picacomic.fregata.activities.MainActivity',\n          matches: '[id=\"com.picacomic.fregata:id/imageButton_banner_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/83610194/92feb979-d75a-4ee5-a880-da2e4250d1e3',\n          snapshotUrls: 'https://i.gkd.li/i/13423009',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-自动签到',\n      desc: '切换到个人页面时自动签到，并确定',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.picacomic.fregata.activities.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[id=\"com.picacomic.fregata:id/textView_profile_punch_in\"][text=\"打嗶卡\"]',\n          exampleUrls:\n            'https://m.gkd.li/83610194/d53cc0cb-2a3e-4398-a415-3b8083edd328',\n          snapshotUrls: 'https://i.gkd.li/i/13422844',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches:\n            '[id=\"com.picacomic.fregata:id/button_dialog_custom_positive\"][text=\"確定\"]',\n          exampleUrls:\n            'https://m.gkd.li/83610194/90048fce-fe89-4ac7-9ae6-fe3d7b99aeaf',\n          snapshotUrls: 'https://i.gkd.li/i/13422874',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-流量提醒弹窗',\n      desc: '弹出流量提醒弹窗时自动点击“确定”',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: 'com.picacomic.fregata.activities.ComicViewerActivity',\n          matches:\n            'RelativeLayout > Button[text=\"確定\"][id=\"com.picacomic.fregata:id/button_dialog_custom_positive\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13466492',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.picovr.assistantphone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.picovr.assistantphone',\n  name: 'PICO',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchRoot: true, // https://github.com/AIsouler/GKD_subscription/issues/1052\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.MainActivity',\n          matches: '[vid=\"update_check_cancel_btn\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b63e9ce4-e333-4702-abd5-d2355f83da1f',\n          snapshotUrls: 'https://i.gkd.li/i/20852432',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ping.cimoc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ping.cimoc',\n  name: '芝士漫画',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ping.cimoc.ui.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13187751',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pingan.smt.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pingan.smt',\n  name: 'i深圳',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.pingan.smt.MainActivity',\n          matches: '[vid=\"close_view\"]',\n          exampleUrls: 'https://e.gkd.li/97a058cf-0564-4194-b527-b2ec40233204',\n          snapshotUrls: 'https://i.gkd.li/i/17011387',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pleasure.trace_wechat.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pleasure.trace_wechat',\n  name: '微拾',\n  groups: [\n    {\n      key: 5,\n      name: '分段广告-我的页面卡片广告',\n      desc: '需点击二次弹窗确认',\n      fastQuery: true,\n      activityIds: 'com.camellia.trace.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          matches:\n            'View < @FrameLayout[desc^=\"dislike\"] <<n [id=\"com.pleasure.trace_wechat:id/adsuyi_id_view_response\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13479466',\n        },\n        {\n          preKeys: [0],\n          name: '关闭原因\"不感兴趣\"',\n          matches:\n            '@LinearLayout > [id=\"com.byted.pangle:id/tt_item_tv\"][text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13479469',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] -2 @View > Image',\n          snapshotUrls: 'https://i.gkd.li/i/13479468',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pmph.irenwei.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pmph.irenwei',\n  name: '人卫',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-抽奖弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.pmph.main.ad.AdActivity',\n          matches: '[id=\"com.pmph.irenwei:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13897421',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.powersi.zhrs.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.powersi.zhrs',\n  name: '智慧人社',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"tv_time\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/1cad6c38-5c76-4b5a-b350-bb9630221661',\n          snapshotUrls: 'https://i.gkd.li/i/19746757',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.practical.master.toolsme.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.practical.master.toolsme',\n  name: '实用大师',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          name: '字节穿山甲SDK',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'Image[width<60][height<60] < @View <n View [text=\"反馈\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13581740',\n            'https://i.gkd.li/i/13582110',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pranavpandey.rotation.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pranavpandey.rotation',\n  name: 'Rotation',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches: '[desc=\"Interstitial close button\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23497601',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.pwrd.steam.esports.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.pwrd.steam.esports',\n  name: '完美世界电竞',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"rl_skip\"][visibleToUser=true]', // 需点击 clickable=true 的节点才有效 https://github.com/AIsouler/GKD_subscription/issues/1104\n          exampleUrls: 'https://e.gkd.li/b7adf229-631c-4c27-a07b-eb6e0e1854af',\n          snapshotUrls: 'https://i.gkd.li/i/21808124',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[text=\"开启推送通知\"] + [vid=\"tv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6bb3a2b3-5511-4655-9e4a-c0eb6bae27ad',\n          snapshotUrls: 'https://i.gkd.li/i/14622501',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qc.mycomic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qc.mycomic',\n  name: 'MyComic',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      // 该广告不止在开屏时出现\n      // matchTime: 10000,\n      // actionMaximum: 1,\n      // resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '@[clickable=true] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15443225',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qcymall.earphonesetup.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qcymall.earphonesetup',\n  name: 'QCY',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-我的-卡片广告',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.qcymall.earphonesetup.v2ui.activity.V2MainActivity',\n          matches: '[vid=\"close_img_banner\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13874219',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qidian.QDReader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qidian.QDReader',\n  name: '起点读书',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]) || ([vid=\"splash_skip_button\"][visibleToUser=true])',\n          exampleUrls: 'https://e.gkd.li/3e2357fd-dced-4929-85e0-a9a06ce5fea0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19580847',\n            'https://i.gkd.li/i/19633020',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: '.framework.widget.dialog.judian',\n          matches:\n            '[text$=\"新版本\"] +2 * >2 [id=\"com.qidian.QDReader:id/cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12641026',\n        },\n        {\n          key: 2,\n          activityIds: 'com.tencent.upgrade.ui.UpgradeDialogActivity',\n          matches: '[id=\"com.qidian.QDReader:id/upgrade_dialog_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13116821',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '青少年模式',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.bll.helper.z0',\n            '.ui.activity.MainGroupActivity',\n            '.framework.widget.dialog.judian',\n          ],\n          matches: '[vid=\"btnEnterTeen\"] + [vid=\"btnCancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12640241',\n            'https://i.gkd.li/i/12709168',\n            'https://i.gkd.li/i/12905817',\n            'https://i.gkd.li/i/17879416',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            'com.qidian.QDReader.ui.activity.MainGroupActivity',\n            'com.tencent.mm.plugin.webview.ui.tools.SDKOAuthUI',\n            'com.qidian.QDReader.framework.widget.dialog.judian',\n            'com.qidian.QDReader.ui.activity.BookLastPageNewActivity',\n          ],\n          matches: '[vid=\"imgClose\" || vid=\"btnClose\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12640195',\n            'https://i.gkd.li/i/12640158',\n            'https://i.gkd.li/i/12818198',\n            'https://i.gkd.li/i/13469004',\n            'https://i.gkd.li/i/23210736',\n            'https://i.gkd.li/i/23249358',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      desc: '点击顶部提醒左侧关闭按钮',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.afollestad.materialdialogs.MaterialDialog',\n          matches:\n            '@[id=\"com.qidian.QDReader:id/ivClose\"] + [text^=\"开启推送\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12640242',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'com.qidian.QDReader.ui.activity.QDBookDetailActivity',\n            'com.qidian.QDReader.ui.activity.MainGroupActivity',\n          ],\n          matches: '[id=\"com.qidian.QDReader:id/ivAdClose\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12717032',\n            'https://i.gkd.li/i/13459031',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-起点中文网登录自动确认',\n      desc: '自动点击\"登录\"',\n      rules: [\n        {\n          activityIds: 'com.qidian.QDReader.ui.activity.QDBrowserActivity',\n          matches: '[id=\"scanLogin\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12903081',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds:\n            'com.qidian.QDReader.flutter.DailyReadingMainPageActivity',\n          matches: 'View[desc=\"更多游戏\"] - ImageView[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13406169',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-福利中心看完广告-知道了',\n      desc: '点击[知道了]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.activity.QDBrowserActivity',\n          matches:\n            '@TextView[childCount=0][text$=\"知道了\"][visibleToUser=true] <<n [id=\"com.qidian.QDReader:id/webViewContainer\"]',\n          exampleUrls: 'https://e.gkd.li/54f41a5a-1c71-4618-bdab-5335172ab7f5',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13606901', //v7.9.318 已失效，该版本的起点已无法看福利中心广告\n            'https://i.gkd.li/i/22909666', //422\n            'https://i.gkd.li/i/24339296', //428\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-红包弹窗',\n      desc: '点击X',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.qidian.QDReader.ui.activity.hongbao_square.NewHongBaoSquareActivity',\n          matches:\n            '[id=\"com.qidian.QDReader:id/rootView\"] > [id=\"com.qidian.QDReader:id/btnHongbaoClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13918466',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-移动网络下自动点击播放视频',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.qidian.QDReader.ui.activity.QDBrowserActivity',\n          matches: [\n            '[text^=\"当前处于移动网络\"]',\n            '@[clickable=true] >2 [text=\"播放\"]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/ea612e44-12a9-405f-aa03-60a19cebef57',\n          snapshotUrls: 'https://i.gkd.li/i/15857381',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '功能类-自动签到',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.ui.activity.MainGroupActivity',\n          excludeMatches: '[vid=\"tvTipNum\"][text=\"--\"][visibleToUser=true]',\n          matches: '@[vid=\"btnCheckIn\"] >2 [text=\"签到\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22634962',\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/23210761',\n            'https://i.gkd.li/i/23211622',\n          ],\n        },\n        {\n          preKeys: [0],\n          fastQuery: true,\n          activityIds: '.ui.activity.QDBrowserActivity',\n          matches:\n            '@View[id=null][childCount=0][clickable=true] < View < View < WebView[text=\"福利中心\"] < WebView < FrameLayout < [vid=\"webViewContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24012947',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qiekj.user.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qiekj.user',\n  name: '胖乖生活',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.MainActivity',\n          matches:\n            '[id=\"com.qiekj.user:id/btn_cancelUpdate\"][text*=\"暂不更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13435011',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-开启[自动抵扣]开关',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.activity.scan.AfterPayUseAct',\n          matches:\n            '@[vid=\"switchView\"][checked=false] - [vid=\"tv_automatic_use\"]',\n          exampleUrls: 'https://e.gkd.li/85bbfba2-5011-4f48-a08a-45386836ebd6',\n          snapshotUrls: 'https://i.gkd.li/i/17260785',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.ui.activity.home.MyDeviceAct',\n          matches: [\n            '[text*=\"广告\"][visibleToUser=true]',\n            '[text=\"关闭\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/bccff301-de1c-4d70-8b99-f9acf8e04efa',\n          snapshotUrls: 'https://i.gkd.li/i/18032031',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.tianmu.biz.activity.InterstitialActivity',\n          matches: '[vid=\"tianmu_widget_iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/3f3d3462-7121-4f37-8252-1ef82e74f626',\n          snapshotUrls: 'https://i.gkd.li/i/18033023',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n          exampleUrls: 'https://e.gkd.li/343016ff-dd8f-4a19-8e3c-63520b087e98',\n          snapshotUrls: 'https://i.gkd.li/i/12903095',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] + RelativeLayout >2 [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/501c8360-a261-40fb-b361-f1c6493289d7',\n          snapshotUrls: 'https://i.gkd.li/i/18094642',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"iv_cancel\" || vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/13b65be1-e126-4a32-a4d8-efc0f20623bc',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24045175',\n            'https://i.gkd.li/i/24100793',\n          ],\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: 'com.octopus.ad.AdActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][width<100 && height<100] - [text=\"反馈\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c5363e69-4206-4266-9e45-3ce1cc650bd2',\n          snapshotUrls: 'https://i.gkd.li/i/24100775',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qihoo.browser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qihoo.browser',\n  name: '360浏览器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: '.browser.download.ui.DownloadDetailActivity',\n          matches:\n            'LinearLayout[childCount=3] > TextView[text!=null] + @FrameLayout[id!=null][clickable=true][childCount=1] > ImageView[childCount=0][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4e3c5950-6471-42bf-9785-dab271aa0a55',\n          snapshotUrls: 'https://i.gkd.li/i/20218587',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qihoo.camera.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qihoo.camera',\n  name: '360摄像机',\n  groups: [\n    {\n      key: 6,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          name: '云收藏弹窗广告',\n          actionMaximum: 1,\n          activityIds: 'com.qihoo.jia.playpage.RecordPlayActivity',\n          matches: '@ImageView[clickable=true] +4 TextView[text=\"去开通\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13630755',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.qihoo.jia.ui.activity.TabMainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/c88cdec7-e6da-4bbf-821c-76459d0daff9',\n          snapshotUrls: 'https://i.gkd.li/i/17656326',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qihoo.smart.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qihoo.smart',\n  name: '360智慧生活',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-云录像会员广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          position: {\n            left: 'width * 0.9402',\n            top: 'width * 0.0590',\n          },\n          activityIds: 'com.qihoo.main.flutter.SmartHomeFlutterActivity',\n          matches:\n            '@View[id=\"root\"][visibleToUser=true] > View > [text^=\"服务时间\"] +6 [desc=\"支付宝\"]',\n          exampleUrls: 'https://e.gkd.li/1106858a-bb22-4583-b238-fe270733b5fe',\n          snapshotUrls: 'https://i.gkd.li/i/18354637',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.qihoo.main.flutter.SmartHomeFlutterActivity',\n          matches: '[vid=\"sh_app_upgrade_dialog_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/19a460f5-5fe0-41b1-8def-65e23804a8fd',\n          snapshotUrls: 'https://i.gkd.li/i/19499314',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qihoo.srouter.n300.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qihoo.srouter.n300',\n  name: '360家庭防火墙',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ifenglian.superapp.ui.firewall.SAMainActivity',\n          matches: '[vid=\"app_update_later_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13800011',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qingdaonews.bus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qingdaonews.bus',\n  name: '青岛公交查询',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[id=\"com.qingdaonews.bus:id/iv_native_dislike\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13467193',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qingwatq.weather.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qingwatq.weather',\n  name: '呱呱天气',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.qingwatq.weather.home.HomeActivity',\n          matches:\n            '[id=\"com.qingwatq.weather:id/titleArea\"] + [id=\"com.qingwatq.weather:id/closeImg\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476350',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qinlin.edoor.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qinlin.edoor',\n  name: '亲邻开门',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页顶部广告',\n      activityIds: 'com.qinlin.edoor.MainActivity',\n      rules: [\n        {\n          matches: [\n            '[id=\"com.qinlin.edoor:id/reaper_ad_source_layout\"]',\n            '[id=\"com.qinlin.edoor:id/close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/12707733',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.MainActivity',\n          matches: [\n            '[text=\"广告\" || vid=\"interact_ad_root\"]',\n            '[vid=\"iv_close\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13771774',\n            'https://i.gkd.li/i/13932707',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[clickable=true] - [desc=\"立即领取\" || desc=\"开心收下\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12707736',\n            'https://i.gkd.li/i/12707738',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/76e82ec7-70e5-47cb-91c2-4d00f33ef8ad',\n          snapshotUrls: 'https://i.gkd.li/i/18529948',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@[desc=\"top_close_button\"] < ViewGroup <2 ViewGroup + ViewGroup >3 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a9dc3648-339a-4925-91dd-730346711b0e',\n          snapshotUrls: 'https://i.gkd.li/i/18532541',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '@ViewGroup + ViewGroup > [text=\"反馈\"]',\n          exampleUrls: [\n            'https://e.gkd.li/517cc207-1e6c-4416-bbd1-193326879b68',\n            'https://e.gkd.li/e60379ac-ee45-4f0f-bb18-5d1ffa4d9210',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/18703139',\n            'https://i.gkd.li/i/18703827',\n          ],\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/a2685f57-ec36-44a1-9529-f10d7fb481ef',\n          snapshotUrls: 'https://i.gkd.li/i/18704056',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '通知提示-开门成功提示',\n      desc: '点击[好的]',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc^=\"开门成功\"] > [desc=\"好 的\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d8e9be78-a9d4-48f9-a6ee-9ed384a190b3',\n          snapshotUrls: 'https://i.gkd.li/i/18530006',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qiyi.video.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qiyi.video.lite',\n  name: '爱奇艺极速版',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '@[clickable=true] >2 [text=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13797162',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qiyi.video.pad.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qiyi.video.pad',\n  name: '爱奇艺PAD',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '@[clickable=true] >2 [text=\"关闭\"]',\n          exampleUrls: [\n            'https://e.gkd.li/e731c9e7-b93e-4d3f-ae6c-887554b27d5a',\n            'https://e.gkd.li/7a74687a-f576-4820-9ef8-3e10ddb67562',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23381997',\n            'https://i.gkd.li/i/23382047',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-暂停播放后出现的广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.iqiyi.video.activity.PlayerActivity',\n          matches: '@[clickable=true] > [text^=\"关闭广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/471a67f0-5926-4caa-a070-2b4635b5052a',\n          snapshotUrls: 'https://i.gkd.li/i/23837894',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qiyi.video.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qiyi.video',\n  name: '爱奇艺',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          // 需点击 clickable=true 的节点 https://github.com/AIsouler/GKD_subscription/issues/613\n          matches: '@[clickable=true] >(1,2) [text=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13160866',\n            'https://i.gkd.li/i/13379565',\n            'https://i.gkd.li/i/18135566',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-顶部卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            'org.qiyi.android.video.MainActivity',\n            'org.qiyi.video.PhoneCloudRecordActivity',\n            '.qysplashscreen.hotlaunch.HotSplashScreenActivity',\n          ],\n          anyMatches: [\n            '@[vid=\"unused_res_a\"][clickable=true] > [vid=\"close\"][visibleToUser=true]',\n            '@[vid=\"unused_res_a\"][clickable=true] - [text=\"广告\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/69dd60a4-3038-4a8c-8501-33a2d36b3283',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12495050',\n            'https://i.gkd.li/i/16301287',\n            'https://i.gkd.li/i/24312658',\n            'https://i.gkd.li/i/24314237',\n            'https://i.gkd.li/i/24364968',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24324750',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'org.qiyi.android.video.MainActivity',\n          matches: '[id=\"com.qiyi.video:id/cancel_btn\"][text=\"暂时不要\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12838152',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'org.qiyi.android.video.MainActivity',\n            'org.qiyi.android.search.view.PhoneSearchActivity',\n            '.qysplashscreen.hotlaunch.HotSplashScreenActivity',\n          ],\n          matches: '[text=\"暂不升级\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12838158',\n            'https://i.gkd.li/i/13684912',\n            'https://i.gkd.li/i/19049372',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-播放页-插入广告',\n      desc: '视频播放前或播放中途插入的广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'org.iqiyi.video.activity.PlayerActivity',\n          matches: '@[clickable=true] > [text^=\"关闭广告\"]',\n          exampleUrls: 'https://e.gkd.li/04622996-5a6d-4577-a1cb-adcae37f62b6',\n          snapshotUrls: 'https://i.gkd.li/i/18134230',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'org.iqiyi.video.activity.PlayerActivity',\n          matches: '[vid=\"btn_ads_img_pause_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2cc7688b-f802-4ebe-9eb6-6b9bc6ed5633',\n          snapshotUrls: 'https://i.gkd.li/i/18135562',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qjy.youqulife.io.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qjy.youqulife.io',\n  name: 'MINO 4K',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: 'com.qjy.youqulife.io.MainActivity',\n          matches: ['[text=\"广告\"] ', '[text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13378653',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qq.ac.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qq.ac.android',\n  name: '腾讯动漫',\n  groups: [\n    {\n      key: 2,\n      name: '局部广告-漫画阅读页面-左侧悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.qq.ac.android.reader.comic.ComicReaderActivity',\n          matches:\n            '[id=\"com.qq.ac.android:id/operation_ad_view\"] > [id=\"com.qq.ac.android:id/btn_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12707756',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '漫画章节之间的广告',\n          fastQuery: true,\n          activityIds: 'com.qq.ac.android.reader.comic.ComicReaderActivity',\n          matches: '[vid=\"iv_del\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1be7564d-f6c2-429d-9cb0-3d923adafc8a',\n          snapshotUrls: 'https://i.gkd.li/i/14730335',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qq.qcloud.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qq.qcloud',\n  name: '腾讯微云',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.WeiyunRootActivity',\n          matches: '@LinearLayout -(1,2) [text=\"互动广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19752123',\n            'https://i.gkd.li/i/19752144',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.qq.reader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.qq.reader',\n  name: 'QQ阅读',\n  groups: [\n    {\n      key: 3,\n      name: '局部广告-右下角悬浮卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.qq.reader.activity.MainActivity',\n            'com.qq.reader.activity.MainFlutterActivity',\n          ],\n          matches: '[vid=\"operating_activity_close_view\"]',\n          exampleUrls: 'https://e.gkd.li/29b1cea7-6984-4d51-b1a0-f5ffd1b0d727',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14140100',\n            'https://i.gkd.li/i/16517211',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示-内测邀请弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tencent.upgrade.ui.UpgradeDialogActivity',\n          matches: '[vid=\"upgrade_dialog_close_btn\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/03e35d57-5f40-4ccb-911a-5f9061eab46e',\n          snapshotUrls: 'https://i.gkd.li/i/14376088',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '分段广告-阅读页面广告',\n      desc: '点击关闭-点击[关闭本条广告]',\n      fastQuery: true,\n      activityIds: 'com.qq.reader.activity.ReaderPageActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@[clickable=true] > [text=\"关闭广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/70e15d7d-0911-44e7-b0d6-a8e74c00b8b1',\n          snapshotUrls: 'https://i.gkd.li/i/14767123',\n        },\n        {\n          key: 1,\n          matches: '[vid=\"adv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/eb2bca3c-abbc-4666-b505-cdaeeec6a839',\n          snapshotUrls: 'https://i.gkd.li/i/14767126',\n        },\n\n        // 预留key\n        {\n          preKeys: [0, 1],\n          key: 50,\n          matches: '[vid=\"view_close_ad_btn_bg\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c985da66-c2cc-4400-bb61-8f7ee6dbba11',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14767165',\n            'https://i.gkd.li/i/14767124',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.quark.browser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.quark.browser',\n  name: '夸克浏览器',\n  groups: [\n    {\n      key: 2,\n      name: '其他-设置默认浏览器提示',\n      desc: '点击取消',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ucpro.BrowserActivity',\n          matches: '@Button[text=\"取消\"] + Button[text=\"去设置\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13249469',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      desc: '点击取消',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ucpro.BrowserActivity',\n          matches: [\n            '[text*=\"版本更新\" || text^=\"优化升级\" || text^=\"发现新版本\"]',\n            '[text=\"取消\" || text=\"暂不更新\"][clickable=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13292512',\n            'https://i.gkd.li/i/13455360',\n            'https://i.gkd.li/i/24786251',\n            'https://i.gkd.li/i/16643051', // 避免误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          actionMaximum: 1,\n          activityIds: 'com.ucpro.BrowserActivity',\n          matches:\n            'ImageView[id=\"com.quark.browser:id/close_img\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13292571',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.ucpro.BrowserActivity',\n          matches:\n            '[vid=\"ad_close_layout_container\" || vid=\"rel_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/77db7983-bfe0-4701-a580-d5d77a017624',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21967140',\n            'https://i.gkd.li/i/21967204',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.ucpro.BrowserActivity',\n          matches:\n            '[vid=\"append_element_view_remove_ad_ll\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3a89486e-83c4-4032-bc07-4531921c9d09',\n          snapshotUrls: 'https://i.gkd.li/i/21967126',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.quqi.quqioffice.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.quqi.quqioffice',\n  name: '曲奇云盘',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-私人云看图弹窗广告',\n      desc: '在线私人云看图片自动弹出自动播放可跳过广告',\n      rules: [\n        {\n          key: 1,\n          activityIds: 'com.qq.e.ads.PortraitADActivity',\n          matches:\n            'TextView[text*=\"应用名称\"] < LinearLayout -(2,3) [childCount=1] > FrameLayout[childCount=1] >(1,2) ImageView[childCount=0][id=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12854650',\n            'https://i.gkd.li/i/12854723',\n            'https://i.gkd.li/i/12854664',\n          ],\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'TextView[text$=\"s\"] + TextView[text$=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12877535',\n        },\n        {\n          key: 3,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            'ImageView[id=\"com.byted.pangle:id/tt_reward_full_count_down_after_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12877540',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.rarlab.rar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.rarlab.rar',\n  name: 'RAR',\n  groups: [\n    {\n      key: 10,\n      name: '全屏广告-订购 RAR 弹窗',\n      desc: '点击[放弃]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.rarlab.rar.MainActivity',\n          matches:\n            '[text=\"订购\" || text=\"訂閱\"] + [text=\"放弃\" || text=\"解除\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12781596',\n            'https://i.gkd.li/i/15801328',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.readunion.ireader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.readunion.ireader',\n  name: '息壤阅读',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.union.modulehome.ui.MainActivity',\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8192872f-b071-450b-aea7-ec3ce62fee95',\n          snapshotUrls: 'https://i.gkd.li/i/16790805',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.realme.securitycheck.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.realme.securitycheck',\n  name: 'SecurityAnalysis',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-安全监测通过后的广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.realme.securitycheck.SecurityCheckActivity',\n          matches: '[vid=\"ad_contain\"] >5 [vid=\"close\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c4a9acc9-3108-4364-8586-906b200e1171',\n          snapshotUrls: 'https://i.gkd.li/i/14476628',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-关闭安装应用后的安全检测',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.SecurityCheckActivity',\n          matches: '[vid=\"finish\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f8a626f2-36dd-4e3a-9ceb-70877c27330c',\n          snapshotUrls: 'https://i.gkd.li/i/20592226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.realmecomm.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.realmecomm.app',\n  name: 'realme社区',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.android.realme2.home.view.MainActivity',\n          matches: '[text=\"签到\"][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/18a5751c-0bbd-475d-be6a-5803307111cb',\n          snapshotUrls: 'https://i.gkd.li/i/14321155',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.realtech.xiaocan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.realtech.xiaocan',\n  name: '小蚕霸王餐',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.realtech.xiaocan.MainActivity',\n          matches:\n            'View[childCount=3] > View + ImageView + ImageView[clickable=true][childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/13694864',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-签到成功弹窗',\n      desc: '点击[关闭]按钮',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.realtech.xiaocan.MainActivity',\n          matches:\n            '[id=\"android:id/content\"] >5 View[childCount=6] > ImageView[index=5][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14290847',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.reddit.frontpage.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.reddit.frontpage',\n  name: 'Reddit',\n  groups: [\n    {\n      key: 3,\n      name: '其他-关闭订阅社区消息提示',\n      desc: '自动点击[Not Now]',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.reddit.launch.main.MainActivity',\n          matches:\n            '[vid=\"sheet_container\"] > [vid=\"cancel_button\"][text=\"Not Now\"][clickable=true]',\n          exampleUrls: 'https://e.gkd.li/b640f2c9-4564-420f-8a2f-20f461032f3d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13649914',\n            'https://i.gkd.li/i/17269009',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '其他-NSFW 内容提示',\n      desc: '自动点击 continue',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.reddit.launch.main.MainActivity',\n          matches: 'Button[text=\"Cancel\"] + Button[text=\"Continue\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13649992',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-自动点击翻译',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.reddit.launch.main.MainActivity',\n          matches:\n            '@[id=\"translation_banner_action\"][clickable=true] > [visibleToUser=true][text=\"翻译\"] <<n [vid=\"fragment_pager\"]',\n          exampleUrls: 'https://e.gkd.li/8fcef25c-ff16-4456-8174-cac27aa7fc66',\n          snapshotUrls: 'https://i.gkd.li/i/22451437',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/22451467',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.redfinger.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.redfinger.app',\n  name: '红手指云手机',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: '.activity.MainActivity',\n          matches:\n            '[id=\"com.redfinger.app:id/btn_update\"] + [id=\"com.redfinger.app:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761821',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.redfinger.app.activity.MainActivity',\n          matches: '[id=\"com.redfinger.app:id/rl_screen_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761825',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.rhmsoft.edit.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.rhmsoft.edit',\n  name: 'QuickEdit',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击完成',\n      desc: '保存成功后点击完成',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: '@[text=\"完成\"][clickable=true] - * > [text^=\"保存成功\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24842648',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.rocoplayer.app.nm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.rocoplayer.app.nm',\n  name: '柠檬听书',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-温馨提示弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.e4a.runtime.android.mainActivity',\n          matches: '[text=\"温馨提示\"] +2 [text=\"确定\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14304132',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'com.e4a.runtime.android.mainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14304134',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.romielf.mrsc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.romielf.mrsc',\n  name: '每日赛车',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-新闻页面摇一摇广告',\n      desc: '点击准确率灵敏度不太高',\n      activityIds: 'com.romielf.mrsc.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches: '@Image < View -n View >2 View[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12667539',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[id=\"com.byted.pangle:id/tt_item_tv\"][text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12667549',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ruYUVE.bgGRHf.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ruYUVE.bgGRHf',\n  name: '水果派',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          forcedTime: 10000, // 该软件开屏广告5秒后才出现跳过按钮\n          matches: '[desc=\"关闭广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14667107',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ruanmei.ithome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ruanmei.ithome',\n  name: 'IT之家',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          excludeMatches: '[vid=\"iv_search_back\"][visibleToUser=true]',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/49015bf7-6513-40b2-a436-d3c386ef1891',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16401878',\n            'https://i.gkd.li/i/16401899', // 防止误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.ruanmei.ithome.ui.MainActivity',\n          matches:\n            '@[visibleToUser=true][text=\"关闭\"] <<n [vid=\"ll_web\"][visibleToUser=true] + [vid=\"shadowLayout\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15413491',\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/15603266',\n            'https://i.gkd.li/i/17516358',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: 'com.ruanmei.ithome.ui.NewsInfoV8Activity',\n          matches: '[vid=\"iv_dislike\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/16972394',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-信息流广告',\n      desc: '长按广告-点击[屏蔽]-点击[不喜欢此条]',\n      fastQuery: true,\n      activityIds: 'com.ruanmei.ithome.ui.MainActivity',\n      rules: [\n        {\n          key: 0,\n          action: 'longClick',\n          matches:\n            '@[longClickable=true] >4 [text=\"广告 \"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14734964',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/19340823',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text*=\"屏蔽\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14734962',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[vid=\"rl_dislike\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14734987',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ruanmei.ithome.ui.MainActivity',\n          matches: '[vid=\"btn_dialog_upgrade_ignore\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15413494',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.rytong.hnair.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.rytong.hnair',\n  name: '海南航空',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.hnair.airlines.ui.main.MainActivity',\n          matches: 'ImageView[id*=\"com.rytong.hnair:id/iv_cloes\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12846381',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sainti.eduread.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sainti.eduread',\n  name: '出口成章',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.home.FrActivity',\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/38334f57-2796-48a7-9000-76de3e8221ed',\n          snapshotUrls: 'https://i.gkd.li/i/18392760',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.samsung.android.app.sreminder.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.samsung.android.app.sreminder',\n  name: '三星生活助手',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.popupconfig.PopupConfigActivity',\n          matches: '[vid=\"cancel_iv\"]',\n          exampleUrls: 'https://e.gkd.li/428ddc56-fff5-401d-a08e-2fcfc4bb4510',\n          snapshotUrls: 'https://i.gkd.li/i/17611025',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.samsung.android.packageinstaller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.samsung.android.packageinstaller',\n  name: '软件包安装程序',\n  groups: [\n    {\n      key: 2,\n      name: '功能类-跳过安全使用协议',\n      desc: '自动点击略过并关闭反恶意软件协议',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          matches: ['[text^=\"是否打开反恶意软件\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13233686',\n        },\n        {\n          key: 1,\n          matches: '[text=\"略过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13255641',\n        },\n        {\n          key: 2,\n          matches: ['[text^=\"打开应用程序保护?\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13650528',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sankakucomplex.channel.black.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sankakucomplex.channel.black',\n  name: 'Sankaku Black',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sc.channel.MainActivity',\n          matches:\n            'ImageView[childCount=0] < ViewGroup[childCount=1] < @ViewGroup[clickable=true] +4 ViewGroup > [text*=\"UPGRADE NOW\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5ff482ad-639e-42a0-86db-19df81689e2e',\n          snapshotUrls: 'https://i.gkd.li/i/23687159',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sankuai.meituan.dispatch.crowdsource.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sankuai.meituan.dispatch.crowdsource',\n  name: '美团众包',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.meituan.banma.main.activity.MainActivity',\n            'com.meituan.banma.main.activity.ImageAdActivity',\n          ],\n          matches: '[vid=\"image_ad_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13694935',\n            'https://i.gkd.li/i/14818737',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-[保级成功]弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.meituan.banma.usercenter.activity.UserGradeUpgradeKNBActivity',\n          matches: '[vid=\"btn_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/11dd0efd-5872-47de-a307-c3dd0c0009a9',\n          snapshotUrls: 'https://i.gkd.li/i/14822280',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sankuai.meituan.takeoutnew.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sankuai.meituan.takeoutnew',\n  name: '美团外卖',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.sankuai.waimai.business.page.homepage.MainActivity',\n          matches:\n            '[id=\"com.sankuai.meituan.takeoutnew:id/wm_upgrade_force_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13415044',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 1,\n          activityIds:\n            'com.sankuai.waimai.bussiness.order.detail.WMOrderDetailActivity',\n          matches:\n            '@ImageView[clickable=true] - FrameLayout > FrameLayout > FrameLayout TextView[text=\"点我领取\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13175526',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-直播悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.sankuai.waimai.business.restaurant.poicontainer.WMRestaurantActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] + [text=\"正在讲解\"]',\n          exampleUrls: 'https://e.gkd.li/d7119268-6710-4bf4-a46c-eaefa4105791',\n          snapshotUrls: 'https://i.gkd.li/i/16359035',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sankuai.meituan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sankuai.meituan',\n  name: '美团',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.meituan.android.upgrade.UpgradeDialogActivity',\n            'com.meituan.android.pt.homepage.activity.MainActivity',\n          ],\n          matches: [\n            '[vid=\"update_logo\" || text=\"立即升级\"]',\n            '[vid=\"btn_close\" || text=\"暂不升级\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/18375410',\n            'https://i.gkd.li/i/23165455',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '美团买菜-折扣弹窗',\n          activityIds: 'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',\n          matches:\n            'ViewGroup > ViewGroup[childCount=6] > ViewGroup[childCount=1] > ImageView[childCount=0][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12639717',\n        },\n        {\n          key: 1,\n          name: '美团买菜-红包弹窗',\n          activityIds: 'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',\n          matches:\n            '@ImageView < ViewGroup +3 ViewGroup > ViewGroup > TextView[text^=\"红包已到账\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12892626',\n        },\n        {\n          key: 2,\n          name: '美团买菜-支付成功后-红包弹窗',\n          activityIds: 'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',\n          matches:\n            'TextView[text=\"恭喜你获得以下权益\"] + ViewGroup > ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12646768',\n        },\n        {\n          key: 3,\n          name: '超市便利-弹窗广告',\n          fastQuery: true,\n          activityIds:\n            'com.sankuai.waimai.store.poi.list.newp.PoiVerticalityHomeActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13694877',\n        },\n        {\n          key: 4,\n          name: '骑行卡-红包弹窗',\n          activityIds: 'com.meituan.mmp.lib.HeraActivity',\n          matches:\n            'View[childCount=3] > View + TextView + TextView[text=\"\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12739204',\n        },\n        {\n          key: 5,\n          name: '订单完成后的红包弹窗',\n          fastQuery: true,\n          activityIds:\n            'com.sankuai.waimai.bussiness.order.detail.WMOrderDetailActivity',\n          matches: '@ImageView[clickable=true] - * >3 [text=\"开心收下\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13695703',\n        },\n        {\n          key: 6,\n          name: '邀请好友提现弹窗',\n          activityIds: 'com.meituan.msc.modules.container.MSCActivity',\n          matches:\n            'WebView > View > View[childCount=1] >(1,2) View[childCount=2] > View + Image[text=\"\"][childCount=0][left>0][width<200]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14964911',\n            'https://i.gkd.li/i/15400951',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/16487898', // 避免误触 add [left>0]\n            'https://i.gkd.li/i/20553947', // 避免误触 add [width<200]\n          ],\n        },\n        {\n          key: 7,\n          name: '首页-半价神券弹窗',\n          fastQuery: true,\n          activityIds: 'com.meituan.android.pt.homepage.activity.MainActivity',\n          matches:\n            '@ViewGroup[clickable=true][width <120 && width<120][childCount=0] <2 ViewGroup < ViewGroup < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24842488',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示-订单调查弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          name: '我的页面-小调查',\n          action: 'back',\n          activityIds: 'com.meituan.retail.c.android.mrn.mrn.MallMrnModal',\n          matches: 'TextView[text=\"小调查\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12639723',\n        },\n        {\n          key: 2,\n          name: '订单详情页匿名调查',\n          action: 'back',\n          activityIds:\n            'com.sankuai.waimai.bussiness.order.detail.WMOrderDetailActivity',\n          matches: '[id=\"com.sankuai.meituan:id/questionnaireTitle\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13682336',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.meituan.android.pt.homepage.activity.MainActivity',\n            'com.miui.home.launcher.Launcher',\n          ],\n          matches: 'FrameLayout > @ImageView + ImageView[desc=\"资质与规则\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12639815',\n            'https://i.gkd.li/i/12639734',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.sankuai.waimai.business.page.homepage.TakeoutActivity',\n          matches: '[vid=\"marking_sidebar_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16079638',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.sankuai.waimai.business.restaurant.poicontainer.WMRestaurantActivity',\n          matches: '@ImageView[visibleToUser=true] - [text^=\"收藏店铺领\"]',\n          exampleUrls: 'https://e.gkd.li/20bbae61-859b-478d-9032-8213c79dec39',\n          snapshotUrls: 'https://i.gkd.li/i/16632959',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.sankuai.waimai.store.drug.home.NewDrugHomeActivity',\n          matches:\n            '@ImageView[width<80 && height<80][clickable=true] <n * < [vid=\"novel_float_view_new\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23165473',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.sankuai.waimai.store.drug.home.NewDrugHomeActivity',\n          matches: '[vid=\"live_float_view_container\"] > [vid=\"close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23165473',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '权限提示-定位权限',\n      desc: '首页/外卖界面-\"打开位置开关弹窗\"-点击右侧x关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.meituan.android.pt.homepage.activity.MainActivity',\n          matches: '[vid=\"location_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/da856996-b128-486a-a6d4-964183b0c719',\n          snapshotUrls: 'https://i.gkd.li/i/14472663',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.sankuai.waimai.business.page.homepage.TakeoutActivity',\n          matches: '[id=\"com.sankuai.meituan:id/location_layer_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3071d3a4-f8ca-4c6f-8aa2-cf9573dbed3d',\n          snapshotUrls: 'https://i.gkd.li/i/12910211',\n        },\n        {\n          key: 2,\n          activityIds: 'com.sankuai.meituan.MPMainActivity',\n          matches: '[text=\"定位服务尚未开启\"] +3 TextView',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3bb08a42-5d88-4f9d-8cbe-cb913e136ec6',\n          snapshotUrls: 'https://i.gkd.li/i/14472614',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-通知权限',\n      desc: '点击跳过',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.meituan.android.pt.homepage.activity.MainActivity',\n          matches: '@[vid=\"iv_close\" || text=\"跳过\"] -(1,2) [text^=\"开启通知\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13439134',\n            'https://i.gkd.li/i/15047918',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-新人返场特惠',\n      desc: '点击左上角返回',\n      rules: [\n        {\n          matchTime: 10000,\n          fastQuery: true,\n          activityIds: 'com.meituan.android.base.knb.KNBWebViewActivity',\n          matches:\n            '@TextView[text=\"\"][clickable=true][childCount=0] < View[id=\"shareNav\"] <2 View < View < WebView < WebView < [vid=\"mil_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13800691',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告-视频页弹窗广告',\n      desc: '点击X',\n      fastQuery: true,\n      activityIds: 'com.meituan.android.pt.homepage.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          name: '视频页-签到弹窗',\n          matches:\n            '@ImageView[index=5] +n ViewGroup[clickable=true] >n [text=\"签到必得现金\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14033982',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24705788', // @ImageView[index=5] +n ViewGroup[clickable=true] 会误触\n        },\n        {\n          key: 1,\n          name: '视频页-领现金弹窗',\n          matches:\n            '@ImageView[visibleToUser=true] - ViewGroup[childCount=3] > [text^=\"签到成功\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14034073',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-付款后自动点击完成',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.sankuai.waimai.platform.machpro.container.WMMPActivity',\n          matches: [\n            '[text=\"商家已接单\" || text=\"等待商家接单\"][visibleToUser=true]',\n            '[text=\"完成\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14163717',\n            'https://i.gkd.li/i/17158063',\n          ],\n        },\n        {\n          key: 1,\n          action: 'clickCenter', // https://github.com/AIsouler/GKD_subscription/issues/1028\n          activityIds:\n            'com.meituan.android.hybridcashier.HybridCashierActivity',\n          matches:\n            '[text=\"支付成功\"] >5 @[visibleToUser=true][text=\"完成\"] <<n [vid=\"mil_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14392284',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '局部广告-直播讲解悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.sankuai.waimai.business.restaurant.poicontainer.WMRestaurantActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] + [text=\"正在讲解\"]',\n          exampleUrls: 'https://e.gkd.li/42b1d2c5-ca75-4a89-adca-9e5c4f489165',\n          snapshotUrls: 'https://i.gkd.li/i/17182888',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sankuai.movie.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sankuai.movie',\n  name: '猫眼',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-开启通知弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] - * > [text=\"开启通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/18455375',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.schunshang.bij.niuniu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.schunshang.bij.niuniu',\n  name: '牛牛视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告-1',\n          activityIds: 'com.sexy.goddess.tab.RootActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13635127',\n        },\n        {\n          key: 1,\n          name: '腾讯广告-2',\n          activityIds: 'com.sexy.goddess.tab.RootActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13635128',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sdhs.easy.high.road.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sdhs.easy.high.road',\n  name: 'e高速',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'com.sdhs.easy.main.activity.MainActivity',\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] -2 FrameLayout >3 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13670340',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sdu.didi.gsui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sdu.didi.gsui',\n  name: '滴滴车主',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sdu.didi.gsui.main.MainActivity',\n          matches: '[id=\"com.sdu.didi.gsui:id/main_dialog_banner_image_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13958887',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sdu.didi.psnger.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sdu.didi.psnger',\n  name: '滴滴出行',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-打车页面右上角红包广告',\n      desc: '点击卡片广告左上角x',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.didi.sdk.app.MainActivity',\n          matches:\n            'ImageView[id=\"com.sdu.didi.psnger:id/second_entrance_img\"] + @ImageView[id=\"com.sdu.didi.psnger:id/left_close_img\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13760846',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.didi.sdk.app.MainActivity',\n          matches: '[vid=\"iv_upgrade_btn_ignore\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ba2a4ef6-d63d-4d67-ab89-222085ea3b3f',\n          snapshotUrls: 'https://i.gkd.li/i/14582620',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.didi.sdk.app.MainActivity',\n          matches: '[vid=\"popClose\"][desc=\"关闭弹窗\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/432c28dd-2489-47cf-a975-4ef2e4704615',\n          snapshotUrls: 'https://i.gkd.li/i/18173921',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-[升级一键付款]弹窗',\n      desc: '点击[跳过]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.didi.sdk.app.MainActivity',\n          matches: [\n            '[text=\"升级一键付款\"][visibleToUser=true]',\n            '[text=\"跳过\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/effbc440-02c9-40a6-b72e-a7df401c985c',\n          snapshotUrls: 'https://i.gkd.li/i/18409807',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '其他-追加车型提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.didi.sdk.app.MainActivity',\n          matches: [\n            '[text=\"追加以下车型 可更快应答\"]',\n            '[text=\"暂时不用\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24560279',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.seasun.tech.woh.jx3companion.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.seasun.tech.woh.jx3companion',\n  name: '推栏',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告', // https://github.com/AIsouler/GKD_subscription/issues/773\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@[clickable=true] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3314ff0b-9218-4712-9ae9-b820029e356a',\n          snapshotUrls: 'https://i.gkd.li/i/18730361',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sec.android.app.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sec.android.app.music',\n  name: 'Samsung Music',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-[优化电池使用量]弹窗',\n      desc: '点击[取消]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.sec.android.app.music.common.activity.MusicMainActivity',\n          matches: [\n            '[text=\"是否为三星音乐关闭优化电池使用量？\"]',\n            '[text=\"取消\"]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/884ae3c4-5b94-4213-939c-9da783dd0be9',\n          snapshotUrls: 'https://i.gkd.li/i/15144792',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sec.android.app.samsungapps.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sec.android.app.samsungapps',\n  name: '应用商店',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          matches: '[vid=\"skip\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14810528',\n            'https://i.gkd.li/i/18329468',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '其他-[您是否年满 18 岁？]弹窗',\n      desc: '点击[是]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sec.android.app.samsungapps.SearchResultActivity',\n          matches:\n            '[text=\"您是否年满 18 岁？\"] +4 @[clickable=true] > [text=\"是\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/cee78493-fbe1-46a0-8dcf-a8b1f1f61f19',\n          snapshotUrls: 'https://i.gkd.li/i/14473690',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-[大家还下载了]弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.detail.activity.ContentDetailActivity',\n          matches:\n            '@[desc=\"关闭\"][clickable=true] - [vid=\"tv_detail_related_other_opp_title_layout\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/de1b9cc4-c47e-456a-b975-5eefaedb5e42',\n          snapshotUrls: 'https://i.gkd.li/i/18209149',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.seebaby.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.seebaby',\n  name: '掌通家园',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.login.ui.activity.LauncherActivity',\n          matches: '@[id=\"com.seebaby:id/btn_later\"] + [text$=\"新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12705351',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-信息流、文章底部广告',\n      activityIds: [\n        'com.seebaby.login.ui.activity.LauncherActivity',\n        'com.seebaby.parent.article.ui.activity.NativeArticleDetailActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[id=\"com.seebaby:id/tv_ad_detail\"] + [id=\"com.seebaby:id/ic_delad\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12705353',\n            'https://i.gkd.li/i/12705363',\n          ],\n        },\n        {\n          key: 2,\n          matches:\n            '[id=\"com.seebaby:id/ad_tv_advertiser\"] + [id=\"com.seebaby:id/ad_iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12705372',\n        },\n        {\n          preKeys: [1, 2],\n          key: 3,\n          matches: '[id=\"com.seebaby:id/tv_un_instrest\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12705358',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.ranfeng.adranfengsdk.biz.activity.InterstitialActivity',\n            'com.tianmu.biz.activity.InterstitialActivity',\n          ],\n          matches:\n            '[vid=\"ranfeng_widget_iv_close\" || vid=\"tianmu_widget_iv_close\"][clickable=true]',\n          exampleUrls: 'https://e.gkd.li/0ae7b19f-6fa1-4eaf-a5b9-0dfb214541b4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23981370',\n            'https://i.gkd.li/i/24360340',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sf.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sf.activity',\n  name: '顺丰速运',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[text=\"取消\"] < ViewGroup - ScrollView >(2) [text*=\"新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12642445',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@Button[desc=\"取消\"] - ViewGroup >3 [visibleToUser=true][text=\"立即升级\"] <<n [id=\"com.sf.activity:id/rnRootLayout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13291144',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-专属月报弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.sf.activity.MainActivity',\n          matches: '[id=\"MonthReportDialogCloseBtn\"] > ImageView',\n          exampleUrls:\n            'https://m.gkd.li/57941037/83023ed5-f143-4355-9fff-e078011dfa4a',\n          snapshotUrls: 'https://i.gkd.li/i/12642441',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.sf.activity.MainActivity',\n          matches:\n            '@Button[id=\"BmsAdDialogViewCloseButton\"] <2 ViewGroup < ViewGroup <2 ViewGroup < ViewGroup <2 ViewGroup < ViewGroup < FrameLayout < [vid=\"rnRootLayout\"]',\n          exampleUrls: 'https://e.gkd.li/3be50f7b-5696-47c9-95cc-ef46f8531967',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14502128',\n            'https://i.gkd.li/i/17869485',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sfexpress.sfim.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sfexpress.sfim',\n  name: '丰声',\n  groups: [\n    {\n      key: 10,\n      name: '功能类-自动确认登录',\n      desc: '自动点击[登录]按钮',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.sfexpress.sfim.scan.view.SfScanActivity',\n            'com.sfexpress.sfim.microservice.commonservice.ui.MicroAppContainerActivity',\n            'com.sfexpress.sfim.sdkuikit.widget.dialog.NoticeDialog',\n          ],\n          matches: '@[visibleToUser=true][text=\"登录\"] <<n [vid=\"flContainer\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12745239',\n            'https://i.gkd.li/i/12745240',\n            'https://i.gkd.li/i/12745241',\n            'https://i.gkd.li/i/14830687',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.sfexpress.sfim.middleplatform.ui.SFMiddlePlatformLoginActivity',\n          matches: '[text=\"登录\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14830682',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sflep.course.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sflep.course',\n  name: 'WE Learn',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-离开考试页面弹窗',\n      desc: '点击确定',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.ClassActivity',\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          matches:\n            '@[text=\"确认\"][clickable=true] < * - [text^=\"系统检查到你离开了考试页面\"] <n Dialog <n * <<3 [vid=\"pp_about_content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23150673',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      rules: [\n        {\n          fastQuery: true,\n          matches: ['[text^=\"最新版本\"]', '[text=\"以后再说\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23452864',\n            'https://i.gkd.li/i/23452891',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-中断考试弹窗',\n      desc: '点击确定',\n      rules: [\n        {\n          activityIds: 'com.sflep.course.activity.ClassActivity',\n          matches:\n            '@[text=\"确认\"][clickable=true] <n * - [text=\"系统将自动保存已答题记录，确认中断本次考试？\"] <<n Dialog',\n          snapshotUrls: 'https://i.gkd.li/i/23923998',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sgcc.evs.echarge.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sgcc.evs.echarge',\n  name: 'e充电',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.evs.echarge.dev.ui.advertisement.SplashActivity',\n            'com.evs.echarge.dev.ui.MainActivity',\n          ],\n          matches: '[id=\"com.sgcc.evs.echarge:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13958838',\n            'https://i.gkd.li/i/14005508',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sgcc.wsgw.cn.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sgcc.wsgw.cn',\n  name: '网上国网',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页弹窗广告',\n      activityIds: [\n        'com.sgcc.wsgw.mainbundle.NewsSyRemind2Activity',\n        'com.sgcc.wsgw.rnbundle.activity.HomeReactActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          actionCd: 2000,\n          fastQuery: true,\n          matches: '@[focusable=true] + [text=\"今日不再出现\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12745042',\n            'https://i.gkd.li/i/13247655',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          actionDelay: 300, //测试时没有delay点击失效\n          matches:\n            'ViewGroup[childCount=1] > @ViewGroup[childCount=1] > ImageView',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13247655',\n            'https://i.gkd.li/i/13247655',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 3,\n          actionDelay: 300,\n          fastQuery: true,\n          matches:\n            '[id=\"com.sgcc.wsgw.cn:id/news_remind_laytout\"] >n [id=\"com.sgcc.wsgw.cn:id/btn_remind_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12745042',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.sgcc.wsgw.rnbundle.activity.HomeReactActivity',\n          matches: '@ImageView < ViewGroup -3 [text=\"有新版本啦!\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13501638',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sh.gj.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sh.gj',\n  name: '上海公交',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.sh.gj.MainActivity',\n            'com.sh.gj.activity.LineDetailActivity',\n          ],\n          matches:\n            'ImageView[visibleToUser=true] - FrameLayout[childCount=1] > @ImageView[visibleToUser=true] <<n [vid=\"bannerContainer\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/36771be2-e3fd-498c-9adb-458e9f487b9b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14883102',\n            'https://i.gkd.li/i/14883152',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-退出软件时的确认弹窗',\n      desc: '点击[确认退出]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sh.gj.MainActivity',\n          matches: '[text=\"确认退出\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/38c20d82-947e-4e46-aba8-80e1a773552b',\n          snapshotUrls: 'https://i.gkd.li/i/14883160',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shangfang.gylm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shangfang.gylm',\n  name: '高佣联盟',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.mvp.ui.home.activity.UpdateActivityV2',\n          matches: '[id=\"com.shangfang.gylm:id/iv_upgrade_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13643599',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shanghaionstar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shanghaionstar',\n  name: '安吉星',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.shanghaionstar:id/jump_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13071523',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shaoniandream.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shaoniandream',\n  name: '少年梦阅读',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[id=\"com.shaoniandream:id/countdown\"]',\n          exampleUrls: 'https://e.gkd.li/080e7f84-c8ac-48b3-ba82-c1dbb795f4f6',\n          snapshotUrls: 'https://i.gkd.li/i/13236791',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shark.jizhang.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shark.jizhang',\n  name: '鲨鱼记账',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          activityIds: '.module.main.MainActivity',\n          matches:\n            '[id=\"com.shark.jizhang:id/float_btn\"] >2 [id=\"com.shark.jizhang:id/close_view\"]',\n          exampleUrls: 'https://e.gkd.li/b64da622-2632-4140-930b-89d0f8cbdee1',\n          snapshotUrls: 'https://i.gkd.li/i/12518517',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.module.main.MainActivity',\n          matches:\n            '[id=\"com.shark.jizhang:id/sdv_image\"] + [id=\"com.shark.jizhang:id/close_view\"]',\n          exampleUrls: 'https://e.gkd.li/1cad4c8f-fdb0-4608-8398-2c22d81d435d',\n          snapshotUrls: 'https://i.gkd.li/i/12518500',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shengjue.cashbook.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shengjue.cashbook',\n  name: '章鱼记账',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.hjq.demo.ui.activity.SplashActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] <n ViewGroup < ViewGroup - ViewGroup >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/2828ac84-f5e0-44c0-aab8-a12bff976fca',\n          snapshotUrls: 'https://i.gkd.li/i/22882021',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.hjq.demo.ui.activity.SplashActivity',\n          matches:\n            '@ImageView[childCount=0][width<60 && height<60] < FrameLayout[childCount=1] - LinearLayout > [text^=\"立即\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a305c944-d3fe-4531-958a-1b6356f60c32',\n          snapshotUrls: 'https://i.gkd.li/i/22961847',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shinyv.cnr.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shinyv.cnr',\n  name: '云听',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'yt.com.module.home.MainActivity',\n          matches: '[vid=\"iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/d1680c51-70c8-4d50-9560-f5e091685ee8',\n          snapshotUrls: 'https://i.gkd.li/i/16914130',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shizhuang.duapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shizhuang.duapp',\n  name: '得物',\n  groups: [\n    {\n      key: 4,\n      name: '其他-截屏分享',\n      desc: '关闭截屏时app弹出的分享弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.shizhuang.duapp.modules.product_detail.detailv4.ui.ProductDetailActivityV4',\n          matches:\n            '[id=\"com.shizhuang.duapp:id/ivClose\"] +2 [id=\"com.shizhuang.duapp:id/ivSave\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13473449',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shizi.tool.p3.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shizi.tool.p3',\n  name: '动漫共和国',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchRoot: true, // https://github.com/AIsouler/GKD_subscription/issues/1133\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b10db699-ed34-4619-b3ca-5821321f4b58',\n          snapshotUrls: 'https://i.gkd.li/i/22136545',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[vid=\"ms_skipView\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/64be8cde-d60d-4c71-ba13-4bcb78842931',\n          snapshotUrls: 'https://i.gkd.li/i/23925246',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.windmill.sdk.widget.InterstitialView',\n          matches: '[vid=\"tobid_interstitial_skip_ll\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8405053f-ebb9-4915-b8c7-499fcaa953ff',\n          snapshotUrls: 'https://i.gkd.li/i/23925245',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.beizi.ad.internal.activity.BeiZiInterstitialActivity',\n          matches:\n            '[vid=\"beizi_interstitial_ad_close_container_rl\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4ed42cae-88b2-4429-93ba-237bdf221f80',\n          snapshotUrls: 'https://i.gkd.li/i/24541547',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'app.video.guoguo.MainActivity',\n          matches:\n            '[id$=\"ksad_auto_close_btn\"][visibleToUser=true] < LinearLayout < LinearLayout + FrameLayout >6 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/179028f9-ae60-4286-b746-ac2f0bb7aad6',\n          snapshotUrls: 'https://i.gkd.li/i/24818734',\n        },\n        {\n          key: 3,\n          activityIds: 'app.video.guoguo.MainActivity',\n          matches: '[desc=\"不再显示\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25122774',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.showstartfans.activity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.showstartfans.activity',\n  name: '秀动',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.showstartfans.activity.activitys.maintab.newmain.MainNewActivity',\n          matches: '[id=\"com.showstartfans.activity:id/img_close_coupon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13670432',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.shuqi.controller.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.shuqi.controller',\n  name: '书旗小说',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.shuqi.home.MainActivity',\n          anyMatches: [\n            '[vid=\"promotion_close\"][visibleToUser=true]',\n            '[visibleToUser=true][vid=\"promotion_close\"]',\n          ],\n          exampleUrls: 'https://e.gkd.li/a634cd5a-7b84-44ad-b65b-99f5e8769eeb',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23831955',\n            'https://i.gkd.li/i/24859977', // 不可快速查询\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.shuqi.home.MainActivity',\n          matches: '[vid=\"bottomCloseImg\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/9cfc90dc-9afe-45ff-8ee2-f8e173af9bd9',\n          snapshotUrls: 'https://i.gkd.li/i/23831956',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.simplesecurity.english.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.simplesecurity.english',\n  name: '水果派',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matchDelay: 3000, // 反馈3s后才能关闭\n          matches: '[text=\"关闭广告\"]',\n          exampleUrls: 'https://e.gkd.li/8718ddc4-8775-482e-a259-bc43c7171fd8',\n          snapshotUrls: 'https://i.gkd.li/i/13447714',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sina.oasis.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sina.oasis',\n  name: '绿洲',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页推荐广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'ImageView[id=\"com.sina.oasis:id/gdt_v2_banner_ad_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13434468',\n        },\n        {\n          preKeys: [0],\n          matches: '@LinearLayout > [text*=\"关闭此广告\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/13498631',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sina.weibo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sina.weibo',\n  name: '微博',\n  groups: [\n    {\n      key: 8,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 3,\n          activityIds: 'com.sina.weibo.feed.MPDialogActivity',\n          matches:\n            'WebView[text=\"Wbox\"] > View[childCount=1] >(1,2) View[childCount=2] > @TextView[clickable=true][visibleToUser=true][childCount=0][index=1][width<200] <<n [vid=\"container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14969848',\n            'https://i.gkd.li/i/16944794',\n            'https://i.gkd.li/i/19807700',\n          ],\n        },\n        {\n          key: 4,\n          activityIds: 'com.sina.weibo.feed.MPDialogActivity',\n          matches:\n            '@Image[text=\"close\"] < View[childCount=4] <2 * <<n [id=\"com.sina.weibo:id/container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14033735',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-通知权限',\n      desc: '自动点击暂不开启',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: '.notifyguidev2.NotifyGuideV2Activity',\n          matches: '[text=\"暂不开启\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/18342279',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          activityIds: ['.MainTabActivity', '.utils.WeiboDialog$CustomDialog'],\n          matches: '@[text=\"以后再说\"] +2 [text=\"去开启\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13218093',\n            'https://i.gkd.li/i/13003311',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.MainTabActivity',\n          matches:\n            '@[id=\"com.sina.weibo:id/btn_close\"] +2 [text=\"使用您的位置信息\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13255595',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '分段广告-信息流广告',\n      desc: '点击关闭-点击[不感兴趣]/[不想看到此类内容]',\n      fastQuery: true,\n      activityIds: [\n        '.feed.DetailWeiboActivity',\n        '.feed.detailrefactor.DetailPageActivity',\n        '.feed.SubCommentActiity',\n        '.feed.halfcontainer.HalfContainerPageActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '@[vid=\"ll_close\"] > [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13852321',\n            'https://i.gkd.li/i/19526000',\n            'https://i.gkd.li/i/21828244',\n            'https://i.gkd.li/i/24291704',\n          ],\n        },\n        {\n          key: 1,\n          matches: '[vid=\"corner_marker_view\"] >2 [vid=\"right_top_tag\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14210775',\n        },\n        {\n          key: 3,\n          matches: [\n            '[vid=\"left_img_ad_container\"][visibleToUser=true]',\n            '[vid=\"close\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13635551',\n            'https://i.gkd.li/i/19525985',\n          ],\n        },\n        {\n          key: 4,\n          matches: '@[vid=\"closeButton\"] > [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6952c2d1-65b5-4419-adb6-ba0f6349801e',\n          snapshotUrls: 'https://i.gkd.li/i/19538265',\n        },\n        {\n          key: 5,\n          matches: '[vid=\"iv_ad_x\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/58baa39c-c447-4664-8a39-c058497b9495',\n          snapshotUrls: 'https://i.gkd.li/i/22275086',\n        },\n        {\n          key: 6,\n          matches:\n            'RelativeLayout >7 FrameLayout[childCount=4] > FrameLayout[childCount=1] > @[name$=\"FrameLayout\" || name$=\"ImageView\"][clickable=true][childCount<2][visibleToUser=true][width<50&&height<50] <<n [vid=\"view_recycler\" || vid=\"tweet_list\"]',\n          exampleUrls: 'https://e.gkd.li/fc3b2c98-4540-4ec1-94b2-24abf90212c9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21166775',\n            'https://i.gkd.li/i/21828269',\n          ],\n        },\n\n        // 预留key\n        {\n          preKeys: [0, 1, 3, 4, 5, 6],\n          key: 90,\n          matchRoot: true,\n          anyMatches: [\n            '[text$=\"不感兴趣\"][clickable=true]',\n            '@LinearLayout[clickable=true] >2 [text=\"不感兴趣\" || text=\"不想看到此类内容\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13852322',\n            'https://i.gkd.li/i/13958782',\n            'https://i.gkd.li/i/16785777',\n            'https://i.gkd.li/i/14730274',\n            'https://i.gkd.li/i/19551451',\n            'https://i.gkd.li/i/20710958',\n            'https://i.gkd.li/i/21828246',\n          ],\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '评价提示-APP评分弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainTabActivity',\n          matches: '@[text=\"不了，谢谢\"] +4 [text=\"喜欢，给好评\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13620220',\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '功能类-自动点击查看原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sina.weibo.photoalbum.imageviewer.ImageViewer',\n          matches: '@LinearLayout >3 [vid=\"tv_dialog_item\"][text^=\"原图\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13929119',\n        },\n      ],\n    },\n    {\n      key: 20,\n      name: '功能类-超话自动签到',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '点击签到',\n          activityIds: 'com.sina.weibo.supergroup.SGPageActivity',\n          // excludeMatches: ['[text=\"关注\"]', '[text=\"Follow\"]'], 此写法会导致误触\n          matches: [\n            'ViewGroup[childCount=2] > [text=\"管理\"][visibleToUser=true]',\n            '[text=\"签到\" || text=\"Sign in\"] < [vid=\"right_button\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/15092999',\n            'https://i.gkd.li/i/15092970', // 未关注超话防止误触\n            'https://i.gkd.li/i/15136801',\n          ],\n        },\n        {\n          key: 1,\n          name: '取消勾选[接收本超话签到提醒推送]',\n          activityIds: 'com.sina.weibo.supergroup.pagepop.PagePopActivity',\n          matches: '@[checked=true] < * > [text=\"接收本超话签到提醒推送\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15103524',\n        },\n        {\n          key: 2,\n          name: '关闭签到成功弹窗',\n          activityIds: 'com.sina.weibo.supergroup.pagepop.PagePopActivity',\n          matches: ['[text^=\"连续签到\"]', '[vid=\"iv_close_v2\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/15103524',\n            'https://i.gkd.li/i/15136825',\n            'https://i.gkd.li/i/15136842',\n          ],\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '功能类-超话一键签到',\n      desc: '点击[一键签到]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.sina.weibo.supergroup.generic.GenericChannelActivity',\n          matches: [\n            '[text*=\"一键签到\"][visibleToUser=true]',\n            '[vid=\"checkinBtn\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/3fad288d-ba21-44ed-8ebe-f9b4cbde1d3c',\n          snapshotUrls: 'https://i.gkd.li/i/16420751',\n        },\n      ],\n    },\n    {\n      key: 23,\n      name: '其他-关闭猪手提示',\n      desc: '点击[取消]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainTabActivity',\n          matches: ['[text^=\"猪手超话自动签到失败\"]', '[text=\"取消\"]'],\n          exampleUrls: 'https://e.gkd.li/92e08aea-ae70-4ea8-be65-442f8e2e423d',\n          snapshotUrls: 'https://i.gkd.li/i/16827119',\n        },\n      ],\n    },\n    {\n      key: 24,\n      name: '功能类-关闭点赞时的验证',\n      rules: [\n        {\n          activityIds: '.geetest.GeetCheckActivityForNet',\n          matches:\n            'Button[text^=\"关闭验证\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7a8ed873-a6e8-4260-9f5c-3ff05d5788db',\n          snapshotUrls: 'https://i.gkd.li/i/16827853',\n        },\n      ],\n    },\n    {\n      key: 25,\n      name: '功能类-关主页自动切换到[关注的人]TAB',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.flowbusiness.commonpage.FlowCommonPageActivity',\n          matches: '@[clickable=true] >2 [text=\"关注的人\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6ef5bbf7-bb11-4cbb-b46b-bdc7c333a617',\n          snapshotUrls: 'https://i.gkd.li/i/18423013',\n        },\n      ],\n    },\n    {\n      key: 26,\n      name: '分段广告-评论区博主内容推荐',\n      desc: '点击关闭-点击[不感兴趣]/[不想看到此类内容]',\n      fastQuery: true,\n      activityIds: [\n        '.feed.detailrefactor.DetailPageActivity',\n        '.story.gallery.feed.StoryFeedCommentsActivity2',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '@[vid=\"ll_close\"] > [text=\"推荐\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19551850',\n            'https://i.gkd.li/i/19552278',\n          ],\n        },\n        {\n          preKeys: [0],\n          matchRoot: true,\n          matches: '[text$=\"不感兴趣\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19551857',\n            'https://i.gkd.li/i/19552282',\n            'https://i.gkd.li/i/24211723',\n          ],\n        },\n      ],\n    },\n    {\n      key: 27,\n      name: '分段广告-评论区荐读',\n      fastQuery: true,\n      activityIds: [\n        '.feed.detailrefactor.DetailPageActivity',\n        '.feed.DetailWeiboActivity',\n        '.feed.halfcontainer.HalfContainerPageActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '@[vid=\"ll_close\"] > [text=\"荐读\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bab872e2-6967-49f5-8443-46af8f225d8f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21828298',\n            'https://i.gkd.li/i/24237728',\n            'https://i.gkd.li/i/24291674',\n          ],\n        },\n        {\n          preKeys: [0],\n          matches: '[text$=\"不感兴趣\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4d35d427-f6ab-42bf-a369-65c5b602fcdf',\n          snapshotUrls: 'https://i.gkd.li/i/21828292',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sina.weibocare.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sina.weibocare',\n  name: 'WeiboBig',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-流量继续播放视频',\n      desc: '点击[播放]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.weico.international.activity.MainFragmentActivity',\n          matches: '[id=\"com.sina.weibocare:id/ed_btn_positive\"][text=\"播放\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13253223',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sina.weibolite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sina.weibolite',\n  name: '微博极速版',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '点击卡片广告右上角x图标,点击[不感兴趣]',\n      fastQuery: true,\n      activityIds: [\n        'com.weico.international.activity.MainFragmentActivity',\n        'com.weico.international.ui.search.SearchActivity',\n        'com.weico.international.ui.detail.StatusDetailV3Activity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击卡片广告右上角x图标',\n          matches: '[vid=\"item_timeline_ad_action\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12738110',\n            'https://i.gkd.li/i/14996673',\n            'https://i.gkd.li/i/23097171',\n          ],\n        },\n        {\n          preKeys: [0],\n          name: '点击[不感兴趣]',\n          matches:\n            '@View[clickable=true][childCount=1] > TextView[visibleToUser=true][text=\"不感兴趣\"||text$=\"interest\"] <<n [vid=\"design_bottom_sheet\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12738132',\n            'https://i.gkd.li/i/13727657',\n            'https://i.gkd.li/i/14996679',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '评价提示-APP评分弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.weico.international.activity.MainFragmentActivity',\n          matches: '[id=\"com.sina.weibolite:id/ed_btn_negative\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13727728',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sinovatech.unicom.ui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sinovatech.unicom.ui',\n  name: '中国联通',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.sinovatech.unicom.basic.ui.activity.MainActivity',\n            'com.sinovatech.unicom.basic.ui.activity.WelcomeClient',\n          ],\n          matches: '[text=\"去开启\"] - [vid=\"custom_dialog_cancel_button\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13331268',\n            'https://i.gkd.li/i/14751210',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.sinovatech.unicom.basic.ui.activity.MainActivity',\n          matches:\n            '[id=\"com.sinovatech.unicom.ui:id/custom_dialog_cancel_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13511386',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          forcedTime: 10000,\n          activityIds: 'com.sinovatech.unicom.basic.ui.activity.MainActivity',\n          matches:\n            '[text=\"首页弹窗\"] >2 View > @Image[clickable=true][text!=null] <<n [vid=\"main_fragment_layout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14504242',\n        },\n        {\n          key: 1,\n          activityIds: 'com.sinovatech.unicom.basic.ui.activity.MainActivity',\n          matches:\n            'WebView[text!=null] > View[id=\"app\"] >2 View[childCount>3] > View[childCount=1] > @TextView[childCount=0][visibleToUser=true][text=\"\"][width<150&&height<150] <<n [vid=\"main_fragment_layout\" || vid=\"main_fragment_layout_haoka\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15971964',\n            'https://i.gkd.li/i/18290899',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: 'com.sinovatech.unicom.basic.ui.activity.MainActivity',\n          matches:\n            '@Image[text^=\"close\"][childCount=0][width<150 && height<150] <2 View < View <2 View < View < View <2 View < View < WebView < WebView < [vid=\"homeweb_rootview\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23764750',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-首页右下角卡片悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sinovatech.unicom.basic.ui.activity.MainActivity',\n          matches: '[vid=\"home_xuanfu_close\" || vid=\"home_drag_view_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13930543',\n            'https://i.gkd.li/i/23141106',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sjm.luobo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sjm.luobo',\n  name: '追剧达人',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<80 && height<80] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13723963',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sjm.xiaodesecond.mw.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sjm.xiaodesecond.mw',\n  name: '喵物次元',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭/跳过',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.sjm.xiaodesecond.mw.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/5332e99f-d47b-44ad-b8df-fcd9ec564df4',\n          snapshotUrls: 'https://i.gkd.li/i/14353263',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.sjm.xiaodesecond.mw.MainActivity',\n          matches: '@[clickable=true] > [text=\"跳过\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a52ba4bb-0838-4c08-b771-78205786b016',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14203087',\n            'https://i.gkd.li/i/14354395',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.sjm.xiaodesecond.mw.MainActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=1] < ViewGroup +2 ViewGroup[childCount=2] > [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/46e28728-570e-4fef-9c38-d561813d1c63',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14203600',\n            'https://i.gkd.li/i/14203327',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <(2,3) FrameLayout[childCount=4] +(1,2) FrameLayout[childCount=2] >2 [text^=\"立即\" || text=\"去逛逛\"]',\n          exampleUrls: 'https://e.gkd.li/0b695e8c-c998-49bb-a416-27cf0f3a8f30',\n          snapshotUrls: 'https://i.gkd.li/i/14345580',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sjm.zhuanzhuan.mcy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sjm.zhuanzhuan.mcy',\n  name: '喵次元',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          action: 'back',\n          matches: '[text=\"立即升级\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13392514',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sjmly.sjmtask.xsh.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sjmly.sjmtask.xsh',\n  name: '小柿子',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'com.sjmly.sjmtask.xsh.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761173',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.smile.gifmaker.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.smile.gifmaker',\n  name: '快手',\n  groups: [\n    {\n      key: 10,\n      name: '全屏广告-首页红包弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.yxcorp.gifshow.HomeActivity',\n      rules: [\n        {\n          key: 1,\n          name: '老友回归红包弹窗',\n          matches:\n            '@ImageView[id=null][clickable=true] + ViewGroup > [text!=null] + [text!=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12708649',\n            'https://i.gkd.li/i/12708660',\n          ],\n        },\n        {\n          key: 2,\n          name: '限时高额奖励弹窗',\n          matches:\n            '@ImageView[id=null][clickable=true] < ViewGroup + ViewGroup >2 [text=\"立即领取\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12708681',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-首页左侧红包悬浮控件',\n      desc: '点击关闭',\n      activityIds: 'com.yxcorp.gifshow.HomeActivity',\n      rules: [\n        {\n          matches:\n            '[id=\"com.smile.gifmaker:id/pendant_mask_bg\"] + [id=\"com.smile.gifmaker:id/pendant_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12708671',\n            'https://i.gkd.li/i/12708676', // 执行规则后，控件隐藏，使用 visibleToUser=true 进行限定，防止反复触发规则\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '功能类-推荐关注',\n      desc: '自动点击\"关闭/隐藏\"',\n      activityIds: 'com.yxcorp.gifshow.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          name: '消息页面-你可能感兴趣的人',\n          matches: '[id=\"com.smile.gifmaker:id/close_pymk\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12708707',\n        },\n        {\n          key: 1,\n          name: '我的页面-你可能感兴趣的人',\n          fastQuery: true,\n          matches:\n            'ViewGroup[childCount=3] > [text=\"隐藏\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14001536',\n        },\n        {\n          key: 2,\n          name: '朋友推荐弹窗',\n          fastQuery: true,\n          matches: '[text=\"朋友推荐\"] + [vid=\"close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14232217',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '评价提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.yxcorp.gifshow.HomeActivity',\n          matches: '@[vid=\"close\"] +2 * > [text=\"喜欢就给个好评吧\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/da412e0f-47db-4cc0-8821-184c6ba42882',\n          snapshotUrls: 'https://i.gkd.li/i/14343547',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '全屏广告-直播间广告',\n      rules: [\n        {\n          fastQuery: true,\n          action: 'back',\n          activityIds:\n            'com.kuaishou.live.core.basic.activity.LiveSlideActivity',\n          matches: '[visibleToUser=true][text=\"幸运奖池\"] <<n [vid=\"webView\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/338df1c2-8789-435b-8970-c837b00fc0f5',\n          snapshotUrls: 'https://i.gkd.li/i/15629334',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      activityIds: 'com.yxcorp.gifshow.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          action: 'longClick',\n          matches:\n            '@FrameLayout[desc$=\"作品\"][longClickable=true][visibleToUser=true] >(4,5) [text$=\"旗舰店\" || text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/f199ffaf-9ff8-49f5-a3fe-3fc5bbae8f7c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24022468',\n            'https://i.gkd.li/i/24024010',\n          ],\n        },\n        {\n          preKeys: [0],\n          matches: '@[clickable=true] > [text=\"重复出现\"]',\n          exampleUrls: 'https://e.gkd.li/a93df9c1-7abe-4bd0-9d7b-ca6cce5f2286',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24024009',\n            'https://i.gkd.li/i/24024011',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.smk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.smk',\n  name: '杭州市民卡',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.smk.activity.MainActivity',\n            'com.smk.activity.LaunchActivity',\n            'com.tianmu.biz.activity.InterstitialActivity',\n          ],\n          matches:\n            '[id=\"com.smk:id/iv_close_ad\" || vid=\"tianmu_widget_iv_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13402584',\n            'https://i.gkd.li/i/13425013',\n            'https://i.gkd.li/i/23567834',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.smzdm.client.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.smzdm.client.android',\n  name: '什么值得买',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.smzdm.client.android.app.HomeActivity',\n          matches: '[id=\"com.smzdm.client.android:id/dialog_home_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12695751',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.HomeActivity',\n          matches:\n            '[id=\"com.smzdm.client.android:id/tv_version\"] +2 [id=\"com.smzdm.client.android:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13198016',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-请求读取剪贴板权限弹窗',\n      desc: '点击暂不允许',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.smzdm.client.android.app.HomeActivity',\n          matches: '@[text=\"暂不允许\"] + [text=\"允许\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13198020',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.module.haojia.detail.HaojiaDetailActivity',\n            '.module.community.module.bask.BaskDetailActivity',\n            '.app.HomeActivity',\n          ],\n          matches: [\n            'TextView[text^=\"开启推送通知\"]',\n            '[vid=\"iv_close\" || id=\"com.smzdm.client.android:id/ib_close\"][visibleToUser=true]',\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/2e979f31-7498-497f-a4ed-b82b884e2d8d',\n            'https://e.gkd.li/a52462c1-e3bf-45ad-8639-6fa764f2135d',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13438810',\n            'https://i.gkd.li/i/13626746',\n            'https://i.gkd.li/i/18150286',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.snda.wifilocating.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.snda.wifilocating',\n  name: 'WiFi万能钥匙',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.lantern.start.main.activity.HomeMainActivity',\n          matches: '[vid=\"interstitial_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14032794',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] + View[visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14256643',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.zm.wfsdk.core.activity.WfInterstitialActivity',\n          matches:\n            '@[vid=\"wf_interstitial_close_iv\"] < * >5 [vid=\"wf_interstitial_action_tv\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14927523',\n            'https://i.gkd.li/i/15320417',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14964913',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-连接WiFi后弹出的广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.tools.SpeedUpBActivity',\n          matches: '[vid=\"native_express_close_proxy\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14622506',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-加速成功后自动点击返回',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.tools.SpeedUpActivity',\n          matches: '[vid=\"success_desc\"] + [vid=\"back_layout\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/90a4d16d-b39b-4068-882b-d22acca2b632',\n          snapshotUrls: 'https://i.gkd.li/i/14811531',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-连接WiFi界面右侧悬浮广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.main.MainActivity',\n          matches: '[vid=\"img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15284722',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-“我的”界面广告卡片',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.main.MainActivity',\n          matches: '[vid=\"native_express_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15284730',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sobo.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sobo.app',\n  name: '素博影院',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-注册邀请码弹窗',\n      desc: '点击X',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sobo.app.MainActivity',\n          matches:\n            '@ImageView[index=3] <4 View[childCount=4] <<n [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/dabbfdcb-77fb-4298-aa63-899cbdbf1ceb',\n          snapshotUrls: 'https://i.gkd.li/i/14133497',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sobo.app.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\" || text=\"打开快应用\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3ed9ad25-083f-4d69-b944-360a6bc2233f',\n          snapshotUrls: 'https://i.gkd.li/i/14133546',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sodalife.sodax.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sodalife.sodax',\n  name: '苏打校园',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 1,\n          name: '字节广告',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '@Image < View +3 View > View > TextView[text$=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13400643',\n        },\n        {\n          key: 10,\n          name: '双十一广告',\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'com.sodalife.sodax.libraries.ads.gromore.GroMoreSplashActivity',\n          matches:\n            'ViewGroup[childCount=2] > ViewGroup + ViewGroup[clickable=true][childCount=1]',\n          snapshotUrls: 'https://i.gkd.li/i/13400653',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.soft.blued.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.soft.blued',\n  name: 'Blued',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.blued.android.core.ui.TerminalActivity',\n            'com.soft.blued.ui.home.HomeActivity',\n          ],\n          matches:\n            '[id=\"com.soft.blued:id/fl_main\"] [id=\"com.soft.blued:id/img_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12777097',\n            'https://i.gkd.li/i/13694950',\n            'https://i.gkd.li/i/13699455',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.soft.blued.ui.home.HomeActivity',\n          matches: '[id=\"com.soft.blued:id/ad_option\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/65ee5632-c54b-4ef6-95e9-e57582ff7017',\n          snapshotUrls: 'https://i.gkd.li/i/14149470',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.blued.android.core.ui.TerminalActivity',\n          matches: '[id=\"com.soft.blued:id/iv_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/37ea59cf-9606-4cd6-a74a-84f353f07975',\n          snapshotUrls: 'https://i.gkd.li/i/14157519',\n        },\n        {\n          key: 1,\n          activityIds: '.ui.home.HomeActivity',\n          matches: '[vid=\"nearby_common_guide_close_iv\"]',\n          exampleUrls: 'https://e.gkd.li/04e78fd8-9d78-48d7-b1f0-eddde80f5c52',\n          snapshotUrls: 'https://i.gkd.li/i/17172243',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-会员活动弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.blued.android.core.ui.TransparentActivity',\n          matches: '[vid=\"blued_ad_layout\"] + [vid=\"img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14310618',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sohu.inputmethod.sogou.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sohu.inputmethod.sogou',\n  name: '搜狗输入法',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          // 跳过节点位置与通知栏重合，需点击 clickable=true 的节点 https://github.com/AIsouler/GKD_subscription/issues/900\n          fastQuery: true,\n          matches:\n            '@[clickable=true] > [text=\"跳过\"][text.length<10][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d310d2a0-4795-421d-82da-f3855fb7288b',\n          snapshotUrls: 'https://i.gkd.li/i/20138053',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sohu.sohuvideo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sohu.sohuvideo',\n  name: '搜狐视频',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.homepage.MainActivity',\n          matches:\n            '@[id=\"com.sohu.sohuvideo:id/ivClose\"] + LinearLayout [text=\"新版本上线啦\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13435504',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.spdbccc.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.spdbccc.app',\n  name: '浦大喜奔',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-代理提示弹窗',\n      desc: '点击[确定]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.sp.splash.activity.SplashActivity',\n          matches: [\n            '[text=\"提示\"][visibleToUser=true]',\n            '[text=\"确定\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/e582c5d4-bce3-46a2-ad69-7d0ac4e2fb52',\n          snapshotUrls: 'https://i.gkd.li/i/18275651',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.sp.main.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            '[vid=\"ckb_not_show_again\"][checked=false][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bb770917-9fbb-4910-9c9e-8bf58437bb1e',\n          snapshotUrls: 'https://i.gkd.li/i/18275682',\n        },\n        {\n          preKeys: [1],\n          matches: '[vid=\"iv_kfc_image_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bb770917-9fbb-4910-9c9e-8bf58437bb1e',\n          snapshotUrls: 'https://i.gkd.li/i/18275682',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.sp.main.MainActivity',\n          matches: '[vid=\"ll_quolity_float_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4cb41225-609a-4b7f-8ff4-ecca03d37c38',\n          snapshotUrls: 'https://i.gkd.li/i/18275729',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.spotify.music.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.spotify.music',\n  name: 'Spotify',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: '.SpotifyMainActivity',\n          matches: '[vid=\"ad_tag\"] + [vid=\"close_button\"][clickable=true]',\n          exampleUrls: 'https://e.gkd.li/539c0135-9b5b-44c2-baec-4eb9953f8e69',\n          snapshotUrls: 'https://i.gkd.li/i/24270410',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.spotware.ct.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.spotware.ct',\n  name: 'cTrader',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-询问是否是美国居民弹窗',\n      desc: '点击[我不是美国居民]-点击[确认]',\n      fastQuery: true,\n      activityIds: 'mobile.droid.ctrader.views.main.MainActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击[我不是美国居民]',\n          matches: '[text=\"我不是美国居民\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/959b6c00-0d43-46d4-83eb-056326f036a5',\n          snapshotUrls: 'https://i.gkd.li/i/14495502',\n        },\n        {\n          key: 1,\n          preKeys: [0],\n          name: '点击[确认]',\n          matches: '[text=\"确认\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8adae91e-019d-44eb-8820-b3d560a2b66d',\n          snapshotUrls: 'https://i.gkd.li/i/14495496',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sqsp.movie.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sqsp.movie',\n  name: '视趣',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] -(2,4) @View[visibleToUser=true][childCount=1] > Image[text=\"\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/640c42bf-5279-4ab5-a3bc-e264a99af2ac',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15342445',\n            'https://i.gkd.li/i/15374240',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.article.news.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.article.news',\n  name: '今日头条',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.bytedance.ies.outertest.cn.OuterTestGuideDialogActivity',\n            'com.ss.android.article.base.feature.ugc.story.StoryVideoActivity',\n          ],\n          matches:\n            '@[desc=\"关闭\"] -(2,3) [text*=\"版本更新\" || text*=\"升级版本\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13316081',\n            'https://i.gkd.li/i/17681710',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.activity.MainActivity',\n          matches: '[text=\"以后再说\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/79b75132-9d6f-4e4c-a95b-56dbaca1965d',\n          snapshotUrls: 'https://i.gkd.li/i/18194356',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-浮窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '首页-浮窗广告',\n          activityIds: 'com.ss.android.article.news.activity.MainActivity',\n          matches:\n            'FrameLayout > FrameLayout > FrameLayout[childCount=2] > @ImageView + ImageView[clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13762123',\n        },\n        {\n          key: 1,\n          name: '视频页-浮窗广告',\n          activityIds: 'com.ss.android.ugc.detail.activity.TikTokActivity',\n          matches:\n            'FrameLayout > FrameLayout > FrameLayout[childCount=2] > ImageView + ImageView[clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13761236',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text^=\"开启通知\"] + LinearLayout > [text=\"暂不开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706699',\n        },\n        {\n          key: 1,\n          matches:\n            '[text^=\"开启通知\"] < LinearLayout +2 ImageView[desc=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12840217',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告-竖屏视频广告',\n      desc: '点击右上角[更多]图标按钮,点击不感兴趣',\n      activityIds: 'com.ss.android.ugc.detail.activity.TikTokActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击右上角[更多]图标按钮',\n          matches: 'ImageView[clickable=true][desc=\"更多\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12679280',\n            'https://i.gkd.li/i/12733282',\n            'https://i.gkd.li/i/12763251',\n            'https://i.gkd.li/i/12763252',\n            'https://i.gkd.li/i/12733281',\n            'https://i.gkd.li/i/13185633',\n            'https://i.gkd.li/i/13186082',\n            'https://i.gkd.li/i/13930050',\n          ],\n        },\n        {\n          key: -1,\n          preKeys: [0],\n          actionCd: 35000, //APP更新后点击不感兴趣不会跳过当前视频了，所以需要冷却一下等下一次重新跳过广告视频\n          name: '点击不感兴趣',\n          matches:\n            '@LinearLayout[clickable=true] > RelativeLayout + TextView[text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12679277',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '分段广告-信息流广告',\n      desc: '点击右上角x按钮,点击[不感兴趣]',\n      fastQuery: true,\n      activityIds: [\n        'com.ss.android.article.news.activity.MainActivity',\n        'com.bytedance.ugc.innerfeed.impl.PostInnerFeedActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击右上角x按钮',\n          matches: 'UIView[text^=\"不感兴趣\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12836272',\n            'https://i.gkd.li/i/13093576',\n            'https://i.gkd.li/i/16624480',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击不感兴趣',\n          matches: '@[clickable=true] >(1,2) [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12733152',\n            'https://i.gkd.li/i/12755265',\n            'https://i.gkd.li/i/16624474',\n            'https://i.gkd.li/i/16624395',\n            'https://i.gkd.li/i/17893117',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '局部广告-底部话题推荐弹窗',\n      rules: [\n        {\n          activityIds: 'com.ss.android.article.news.activity.MainActivity',\n          name: '话题谈论',\n          matches:\n            'FlattenUIText[text=\"参与讨论\"] + FlattenUIImage[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12706699',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-自动观看广告视频',\n      desc: '自动观看广告并等待30s后关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '点击\"看视频\"',\n          activityIds: 'com.ss.android.article.news.activity.MainActivity',\n          matches:\n            '[id=\"com.bytedance.novel.api:id/component_ad_dialog_button_video\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13402468',\n        },\n        {\n          preKeys: [0],\n          name: '等待30s点击\"关闭\"',\n          actionDelay: 30000,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches: 'UIText[text=\"广告\"] +n UIText[text=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13402480',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '局部广告-底部热榜弹窗',\n      desc: '点击X',\n      rules: [\n        {\n          activityIds: 'com.ss.android.article.news.activity.MainActivity',\n          matches: 'FrameLayout[childCount=8] > FlattenUIImage[index=7]',\n          snapshotUrls: 'https://i.gkd.li/i/13828331',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '功能类-[关联抖音账号]弹窗',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.article.news.activity.MainActivity',\n          matches: '@[desc=\"关闭\"] + [text^=\"关联\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c938001e-f39b-4ece-ad0e-2c93ba41aa94',\n          snapshotUrls: 'https://i.gkd.li/i/14717889',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '功能类-[下次打开APP默认进入发现频道]弹窗',\n      desc: '点击取消',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.article.news.activity.MainActivity',\n          matches: '[text^=\"下次打开APP默认进入\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6166519d-d38d-49c0-b54b-72c25670aa24',\n          snapshotUrls: 'https://i.gkd.li/i/15102876',\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.activity.MainActivity',\n          matches:\n            '[id=\"android:id/content\"] > FrameLayout[childCount=3] > ImageView[clickable=true][visibleToUser=true][index=2]',\n          exampleUrls: 'https://e.gkd.li/c3889d29-7260-4ab1-8070-75a6a68e4e2c',\n          snapshotUrls: 'https://i.gkd.li/i/15314921',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.activity.MainActivity',\n          matches:\n            '@FlattenUIImage[text=\"\"] -10 FlattenUIText[text=\"恭喜获得惊喜奖励\"]',\n          exampleUrls: 'https://e.gkd.li/057d40f6-f94e-4b54-857f-b5b11de245a5',\n          snapshotUrls: 'https://i.gkd.li/i/17681713',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.article.video.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.article.video',\n  name: '西瓜视频',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.SplashActivity',\n          matches: '@[desc=\"关闭\"] - LinearLayout > [text=\"立即升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13328430',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.SplashActivity',\n          matches: ['[text=\"开启推送通知\"]', '[text=\"暂不开启\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13456568',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-红包弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ss.android.article.video.activity.SplashActivity',\n          matches: '@FlattenUIImage[clickable=true] -2 [text=\"开心收下\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13620299',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.auto.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.auto',\n  name: '懂车帝',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页推荐卡片广告',\n      desc: '需二次点击关闭原因',\n      fastQuery: true,\n      activityIds: [\n        'com.ss.android.auto.activity.SplashActivity',\n        'com.ss.android.auto.policy.AutoPrivacyActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          matches:\n            'TextView[text.length=1][id=null][clickable=false] < @FrameLayout[clickable=true][id!=null] - LinearLayout > [text=\"广告\"]',\n          // 貌似快照存在延迟导致屏幕与节点不对应\n          snapshotUrls: [\n            'https://i.gkd.li/i/12660816',\n            'https://i.gkd.li/i/13959610',\n          ],\n        },\n        {\n          // 不与旧版本合并，尽量使用[clickable=true]，保证速度避免误触\n          preKeys: [0],\n          name: '点击\"不感兴趣\"1',\n          matches: '@ViewGroup[clickable=true] TextView[text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13538627',\n        },\n        {\n          preKeys: [0],\n          name: '点击\"不感兴趣\"2',\n          matches: '[text=\"不感兴趣\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12711589',\n            'https://i.gkd.li/i/13959613',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.SplashActivity',\n          matches:\n            '@TextView[text=\"以后再说\"] - FrameLayout >2 TextView[text$=\"升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13534445',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-右下角悬浮窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: [\n            'com.ss.android.auto.activity.SplashActivity',\n            'com.ss.android.auto.activity.ConcernDetailActivity',\n          ],\n          matches:\n            'FrameLayout > RelativeLayout[childCount=2] > RelativeLayout + ImageView[clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12798338',\n            'https://i.gkd.li/i/13535531',\n            'https://i.gkd.li/i/13535933',\n            'https://i.gkd.li/i/13535932',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-文章底部卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.ss.android.article.base.feature.detail2.view.NewDetailActivity',\n          matches:\n            'FrameLayout > RelativeLayout > @ImageView[clickable=true] + [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12811597',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-评论区信息流广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            'com.ss.android.article.base.feature.detail2.view.NewDetailActivity',\n            'com.ss.android.auto.ugc.video.activity.UgcLongPostActivity',\n            'com.ss.android.auto.ugc.video.activity.UgcNewDetailActivity',\n          ],\n          matches: '@ImageView[clickable=true] - LinearLayout > [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12811459',\n            'https://i.gkd.li/i/12825865',\n            'https://i.gkd.li/i/12900666',\n            'https://i.gkd.li/i/14321293',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: [\n            '.activity.SplashActivity',\n            'com.bytedance.im.auto.conversation.activity.ConversationListActivity',\n          ],\n          matches: 'TextView[text*=\"推送通知\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12840664',\n            'https://i.gkd.li/i/14060897',\n            'https://i.gkd.li/i/14546563',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-选车页卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.auto.activity.ConcernDetailActivity',\n          matches: '@FrameLayout[clickable=true][id!=null] -2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13686928',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-车型页面右下角直播悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.auto.activity.ConcernDetailActivity',\n          matches: 'FrameLayout[childCount=8] > TextView[text=\"\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14034740',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '评价提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: '.activity.SplashActivity',\n          matches: '[text=\"去评价\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14810042',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.lark.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.lark',\n  name: '飞书',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-桌面端登录确认',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.ss.lark.android.passport.biz.feature.sso.suite.SuiteConfirmActivity',\n          matches:\n            '[text=\"飞书 桌面端登录确认\"] +2 [id=\"com.ss.android.lark:id/login_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13494960',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-自动查看原图',\n      desc: '查看图片时自动点击\"查看原图\"',\n      rules: [\n        {\n          activityIds:\n            'com.ss.android.lark.widget.photo.preview.PhotoPagerActivity',\n          fastQuery: true,\n          matches: '[id=\"com.ss.android.lark:id/look_origin_icon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12840528',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-自动发送原图',\n      desc: '发送图片时自动勾选\"原图\"',\n      actionMaximum: 1, // 勾选节点 checkable=false，无法区分勾选前后 https://i.gkd.li/i/17711293\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.chatwindow.ChatWindowActivity',\n          matches: '[vid=\"layout_original_photo\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c985a1e9-ea40-4911-a73f-8ef098909bce',\n          snapshotUrls: 'https://i.gkd.li/i/17711351',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.ugc.aweme.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.ugc.aweme.lite',\n  name: '抖音极速版',\n  groups: [\n    {\n      key: 2,\n      name: '功能类-功能体验邀请弹窗',\n      rules: [\n        {\n          key: 0,\n          name: '[首页商城]体验邀请弹窗',\n          fastQuery: true,\n          activityIds:\n            'com.ss.android.ugc.aweme.commerce.sdk.MallContainerActivity',\n          matches: [\n            'UIText[text^=\"立即体验\"]',\n            'FlattenUIText[text=\"不再提示\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13684791',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '全屏广告-朋友推荐弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches:\n            '[text=\"朋友推荐\"] +2 [id=\"com.ss.android.ugc.aweme.lite:id/close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13650523',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-通知权限',\n      desc: '点击暂不开启',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: '[text=\"及时获得消息提醒\"] +2 [text=\"暂不开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13888485',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-选择图片时自动勾选原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.ss.android.ugc.aweme.im.sdk.media.choose.MediaChooseActivity',\n          matches: '[text=\"原图\"][desc^=\"未选中\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13946092', //未勾选原图\n            'https://i.gkd.li/i/13946033', //已勾选原图\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.ss.android.ugc.aweme.live.LiveDummyHybridTransparentActivity',\n          matches:\n            '@Image[clickable=true][text!=null][width<100 && height<100] +4 View >2 [text=\"同意协议并查看额度\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23558501',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches:\n            '@UIView[text=\"不感兴趣\"][clickable=true] +2 FlattenUIText[text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24123937',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '全屏广告-添加桌面小组件',\n      desc: 'x掉',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: '@ImageView[clickable=true] - [text$=\"桌面小组件\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25208769',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.ugc.aweme.mobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.ugc.aweme.mobile',\n  name: '抖音',\n  groups: [\n    {\n      key: 2,\n      name: '功能类-发现通讯录好友弹窗',\n      desc: '点击[暂时不要]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: '@[text=\"暂时不要\"] +2 [text=\"发现好友\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/af8632c4-f5fd-403a-aca9-daf92ec6cda1',\n          snapshotUrls: 'https://i.gkd.li/i/14467944',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-定位权限',\n      desc: '点击[以后再说]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: '[text^=\"你还没有开启位置权限\"] +2 * > [text=\"以后再说\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/546e45cf-d151-47f4-830e-0f1b7ac21794',\n          snapshotUrls: 'https://i.gkd.li/i/14614184',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.ugc.aweme.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.ugc.aweme',\n  name: '抖音',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          excludeActivityIds: '.search.activity.SearchResultActivity',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/202942ce-259c-4b9d-b3b3-06afbac8145f',\n          snapshotUrls: 'https://i.gkd.li/i/13216121',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/17811608',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.live.LivePlayActivity',\n          matches:\n            '@View[clickable=true][width<80&&height<80] +2 View >4 [text=\"立即查看\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7c97fdc7-9de0-403d-9817-e43da0eb8a31',\n          snapshotUrls: 'https://i.gkd.li/i/22743677',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示-关闭更新弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches: ['[text*=\"立即升级\"]', '[text=\"以后再说\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12534016',\n            'https://i.gkd.li/i/13328599',\n            'https://i.gkd.li/i/15359995',\n            'https://i.gkd.li/i/20139600',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击[暂不]/[以后再说]/[禁止]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        '.main.MainActivity',\n        '.profile.ui.UserProfileActivity',\n        '.detail.ui.DetailActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches: [\n            '[text^=\"打开私信通知\" || text=\"开启朋友的消息通知\" || text=\"及时获得消息提醒\" || text$=\"评论回复提醒\"][visibleToUser=true]',\n            '[text=\"以后再说\" || text=\"暂不开启\" || text=\"禁止\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13669790', //这些开启通知请求形式全都不一样！\n            'https://i.gkd.li/i/18417891',\n            'https://i.gkd.li/i/18419574',\n            'https://i.gkd.li/i/25024525',\n            'https://i.gkd.li/i/25063241',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-自动勾选原图',\n      desc: '聊天发送图片时自动勾选原图',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            '.ecommerce.im.choosemedia.ECommerceIMMediaChooseActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] + [text=\"原图\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18637952', // 未选中\n            'https://i.gkd.li/i/18637948', // 已选中\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '其他-休息提醒',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          matches: '@[text=\"取消\"] + [text*=\"提醒我\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13241564',\n            'https://i.gkd.li/i/14160675',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-小组件弹窗',\n      desc: '关闭弹窗',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          name: '商城快捷方式',\n          fastQuery: true,\n          activityIds: ['.main.MainActivity', '.live.LiveDummyActivity'],\n          matches:\n            '[text=\"添加抖音商城到桌面\"] +2 LinearLayout > [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13669682',\n            'https://i.gkd.li/i/14740312',\n          ],\n        },\n        {\n          key: 2,\n          name: '搜索组件',\n          fastQuery: true,\n          activityIds: '.search.activity.SearchResultActivity',\n          matches: '[text=\"暂不开启\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14325749',\n        },\n        {\n          key: 3,\n          name: '火花桌面小组件',\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          action: 'back',\n          matches: '[text=\"添加火花桌面小组件\"]',\n          exampleUrls: 'https://e.gkd.li/c3980f6b-5459-45fe-b317-5bdc561319dc',\n          snapshotUrls: 'https://i.gkd.li/i/18009276',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          anyMatches: [\n            'FlattenUIText[text=\"不感兴趣\"][visibleToUser=true]',\n            '@[text=\"不感兴趣\"] - FrameLayout >2 [text*=\"也关注了\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13800207',\n            'https://i.gkd.li/i/13996724',\n            'https://i.gkd.li/i/14661956',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/23833191',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            '.live.LiveDummyActivity',\n            '.commerce.sdk.MallContainerActivity',\n            'com.bytedance.android.shopping.store.tabkit.container.TabKitActivity',\n          ],\n          matches: [\n            'FlattenUIText[text*=\"首页商城\"]',\n            'FlattenUIText[text=\"去看看\"]',\n            'FlattenUIText[text=\"知道了\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14533732',\n            'https://i.gkd.li/i/14969825',\n            'https://i.gkd.li/i/14969835',\n          ],\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '权限提示-通讯录权限',\n      desc: '点击[拒绝]',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches: ['[text*=\"通讯录\"]', '[text=\"拒绝\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/8f70418d-92f0-4264-83fd-a680350c478e',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14735280',\n            'https://i.gkd.li/i/16171391',\n          ],\n        },\n      ],\n    },\n    {\n      key: 20,\n      name: '青少年模式',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          excludeActivityIds: '.setting.ui.SettingCommonProtocolActivity',\n          matches: [\n            '[text*=\"青少年\" || text*=\"未成年\"][text*=\"模式\"]',\n            '[text=\"关闭\" || text=\"不再提醒\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14321107',\n            'https://i.gkd.li/i/14473006',\n            'https://i.gkd.li/i/17726070',\n            'https://i.gkd.li/i/18638030',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/14917848',\n            'https://i.gkd.li/i/17610958',\n          ],\n        },\n      ],\n    },\n    {\n      key: 21,\n      name: '权限提示-定位权限',\n      desc: '直接关闭所有类似形状窗口',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: '.search.activity.SearchResultActivity',\n      rules: [\n        {\n          key: 0,\n          name: '弹窗',\n          action: 'back',\n          matches: '[id=\"com.ss.android.ugc.aweme:id/rootview\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13755373',\n        },\n        {\n          key: 1,\n          name: '顶部横条',\n          activityIds: '.search.activity.SearchResultActivity',\n          matches: '@ImageView[clickable=true] - [text^=\"开启定位\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13755718',\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '全屏广告-汽水音乐VIP',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.dsp.MusicLunaActivity',\n            '.dsp.playpage.singlepage.subpage.MusicDspSubPlayerActivity',\n          ],\n          matches:\n            'ScrollView - @ImageView[index=1][childCount=0][visibleToUser=true][width<100][height<100] <2 View < View < ViewGroup < ViewGroup < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/4c57ee77-2189-4b3b-be0b-430fac8853c2',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18100285',\n            'https://i.gkd.li/i/18100454',\n            'https://i.gkd.li/i/18100477',\n          ],\n        },\n      ],\n    },\n    {\n      key: 23,\n      name: '其他-个性化推荐弹窗',\n      desc: '点击[稍后再说]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches: [\n            '[text*=\"个性化推荐\"][visibleToUser=true]',\n            '[text=\"稍后再说\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/987234ad-de0f-40d8-b7dd-d3c600609949',\n          snapshotUrls: 'https://i.gkd.li/i/18633134',\n        },\n      ],\n    },\n    {\n      key: 24,\n      name: '全屏广告-视频推荐广告',\n      desc: '通过返回操作跳过广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.main.MainActivity',\n          matches: 'FlattenUIText[text=\"不感兴趣\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/20035670',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          action: 'back',\n          activityIds: '.main.MainActivity',\n          matches: [\n            '[desc^=\"已选中\"] > [text=\"推荐\"][visibleToUser=true]', // 其他页面可能会误触回到推荐页\n            '([text$=\"广告\"][vid=\"desc\"][visibleToUser=true]) || (ImageView[childCount=0] + [text=\"应用\" || text=\"购物\" || text=\"游戏\"][visibleToUser=true])',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/21142063',\n            'https://i.gkd.li/i/21142589',\n            'https://i.gkd.li/i/21142249',\n            'https://i.gkd.li/i/21142871',\n          ],\n        },\n      ],\n    },\n    {\n      key: 26,\n      name: '功能类-自动领取别人发的红包',\n      desc: '点击 ①抖音红包 ②弹窗-开红包 ③返回 ④x掉已领完弹窗',\n      fastQuery: true,\n      activityIds: '.fund.redpacket.RedPacketReceiveActivity',\n      rules: [\n        {\n          key: 1,\n          name: '①点击[抖音红包]',\n          activityIds: '.main.MainActivity',\n          matches:\n            'FrameLayout[width>10] -2 @LinearLayout >3 [text=\"抖音红包\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6c963e99-1a74-40a5-bf84-a9353c27acdb',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22761277',\n            'https://i.gkd.li/i/25190308',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/22849224', // (右边)自己发的不领取 [width=0]\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          name: '②红包弹窗-点击[开]',\n          matches:\n            '@FrameLayout[clickable=true][width=height] -2 [text=\"大吉大利\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e8b822c1-c289-4802-85a4-994093024b24',\n          snapshotUrls: 'https://i.gkd.li/i/22761510',\n        },\n        {\n          preKeys: [2],\n          key: 3,\n          name: '③已领-点击[返回]',\n          matches: '[vid=\"iv_back\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f92c1412-8111-40bc-8188-24f2c004c55c',\n          snapshotUrls: 'https://i.gkd.li/i/22761554',\n        },\n        {\n          key: 4,\n          preKeys: [1, 2, 3],\n          name: '④已领完弹窗-x掉',\n          matches:\n            '@ImageView[clickable=true] - * > [text=\"红包已领完\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25190699',\n        },\n      ],\n    },\n    {\n      key: 27,\n      name: '功能类-自动抢口令红包',\n      desc: '点击 ①口令红包 ②弹窗 ③一键发口令',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          name: '①点进口令红包',\n          activityIds: [\n            '.main.MainActivity',\n            '.fund.redpacket.RedPacketReceiveActivity',\n          ],\n          matches: '@ImageView + [text=\"抖音红包「口令」\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25121991',\n        },\n        {\n          key: 2,\n          name: '②弹窗-点击红包',\n          activityIds: '.fund.redpacket.RedPacketReceiveActivity',\n          matches: 'ImageView < @[clickable=true] -2 [text=\"发口令开红包\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25122030',\n        },\n        {\n          key: 3,\n          name: '③一键发口令',\n          activityIds: '.fund.redpacket.RedPacketReceiveActivity',\n          matches:\n            '[text=\"发口令开红包\"] + LinearLayout >2 [text=\"一键发送到聊天\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/25122077',\n            'https://i.gkd.li/i/25122095',\n          ],\n        },\n      ],\n    },\n    {\n      key: 28,\n      name: '权限提示-相机权限',\n      desc: '点击[以后再说]',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.shortvideo.ui.scan.ScanNewActivity',\n          matches: ['[text*=\"相机权限\"]', '[text=\"以后再说\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/25183382',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ss.android.yumme.video.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ss.android.yumme.video',\n  name: '抖音精选',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches: ['[text=\"立即升级\"]', '[text=\"以后再说\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12534016',\n            'https://i.gkd.li/i/13328599',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      matchTime: 10000,\n      rules: [\n        {\n          action: 'back',\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: 'TextView[text=\"去商店评分\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15858132',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ssports.mobile.video.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ssports.mobile.video',\n  name: '爱奇艺体育',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '[vid=\"tv_jump_start_ad\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6a6a6c4f-4a16-4a10-bb5c-2ce53ebe5e81',\n          snapshotUrls: 'https://i.gkd.li/i/17901123',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.steampy.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.steampy.app',\n  name: 'SteamPY',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.common.MainActivity',\n          matches:\n            '@[id=\"com.steampy.app:id/imgClose\"] - RelativeLayout [id=\"com.steampy.app:id/tv_update\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13695519',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-首页优惠券弹窗自动点击领取/使用',\n      fastQuery: true,\n      matchTime: 10000,\n      rules: [\n        {\n          activityIds: '.activity.common.MainActivity',\n          matches: '[vid=\"coupon_right\"]',\n          exampleUrls: [\n            'https://e.gkd.li/2e87decb-54ba-4f8b-9330-f037c220d2d9',\n            'https://e.gkd.li/b2e256c2-c606-430c-afa9-3cd02f4d56c2',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/16860018',\n            'https://i.gkd.li/i/16860017',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.suda.yzune.wakeupschedule.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.suda.yzune.wakeupschedule',\n  name: 'WakeUp课程表',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.suda.yzune.wakeupschedule.schedule.ScheduleActivity',\n          matches: '@[vid=\"ib_close\"][clickable=true] +n [text$=\"五星好评\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24230090',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.suda.yzune.wakeupschedule.schedule.ScheduleActivity',\n          matches: ['[text^=\"新版\"]', '[vid=\"update_close\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/24336743',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sup.android.superb.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sup.android.superb',\n  name: '皮皮虾',\n  groups: [\n    {\n      key: 1,\n      name: '青少年模式',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds:\n            'com.sup.superb.m_teenager.view.EnterTeenagerModeDialogActivity',\n          matches: '[text$=\"青少年模式\"] + [text=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13796869',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text=\"开启推送通知\"] +2 * > [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13691081',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告-右上角红包悬浮窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sup.android.base.MainActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] < RelativeLayout[childCount=2] < FrameLayout - [id=\"com.sup.android.superb:id/tab_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13624220',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '更新提示',\n      desc: '点击[我再想想]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text=\"发现新版本\"] +2 * > [text=\"我再想想\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13858490',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '评价提示',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.sup.android.base.MainActivity',\n            'com.sup.android.base.praise.PraiseDialogActivity',\n          ],\n          matches: ['[text^=\"喜欢皮皮虾吗\"]', '[text=\"取消\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14005608',\n            'https://i.gkd.li/i/15285383',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '全屏广告-集五福弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sup.android.base.MainActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][childCount=0] <2 RelativeLayout[childCount=2] < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/246d1d0b-d493-4d40-bbb7-9c04ae6b457d',\n          snapshotUrls: 'https://i.gkd.li/i/14151026',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-卡片广告',\n      desc: '点击[关闭广告]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.sup.android.base.MainActivity',\n          matches: '[text=\"关闭广告\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/af1e7624-540b-4646-b812-3b748966e903',\n          snapshotUrls: 'https://i.gkd.li/i/14471869',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '分段广告-信息流广告',\n      desc: '点击展开-点击[不感兴趣]',\n      fastQuery: true,\n      activityIds: 'com.sup.android.base.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'RecyclerView > FrameLayout[id!=null] >4 FrameLayout[childCount=5] > ViewGroup[childCount=1] > @ImageView[clickable=true][childCount=0] <<n [vid=\"view_pager\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14886478',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14886477',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.svm.hbyy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.svm.hbyy',\n  name: '比翼多开',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.svm.core.pro.view.activity.MainActivityEx',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13185377',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.svw.sc.mos.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.svw.sc.mos',\n  name: '上汽大众',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.main.ui.home.ui.AppStartDialogActivity',\n          matches: '[vid=\"iv_appstart_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0acf720d-1752-449f-bbe6-357896f1bb2e',\n          snapshotUrls: 'https://i.gkd.li/i/17528776',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.main.ui.mine.ui.MedalDialogActivity',\n          matches: '[vid=\"imv_share_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/01611ed2-11f7-4ffe-93d7-f07878196ada',\n          snapshotUrls: 'https://i.gkd.li/i/18399174',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.main.ui.MainActivity',\n          matches: '[vid=\"clyt_floating_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fbbc311e-cfe1-468a-88c1-20633622a34e',\n          snapshotUrls: 'https://i.gkd.li/i/17528781',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.main.ui.MainActivity',\n          matches: '[vid=\"close_contain\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2d9042c4-0dac-47d5-9fc4-92a91da393b5',\n          snapshotUrls: 'https://i.gkd.li/i/17709772',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.syjc.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.syjc.app',\n  name: '番喜视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          actionDelay: 300,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24908992',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          actionDelay: 300,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24892194',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.sys.washmashine.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.sys.washmashine',\n  name: '小依',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      ignoreGlobalGroupMatch: true,\n      rules: [\n        {\n          fastQuery: true,\n          matches: '@[desc=\"skip_button\"][clickable=true] - [text=\"跳过\"]',\n          exampleUrls: 'https://e.gkd.li/b0d7d8e3-fc68-4be8-aba0-c8100d4143fb',\n          snapshotUrls: 'https://i.gkd.li/i/22274999',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.mvp.activity.SplashAy',\n          matches:\n            '@[desc=\"top_close_button\"][clickable=true] < ViewGroup <n ViewGroup + ViewGroup >3 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6817d76f-84fc-46af-9ed5-52388981841a',\n          snapshotUrls: 'https://i.gkd.li/i/22275000',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taitedi.hdd.ayi.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taitedi.hdd.ayi',\n  name: '爱其意',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-首页通知弹窗',\n      desc: '点击[我知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"我知道了\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/12550205-943e-4e8b-b26a-ebd6ce3f006a',\n          snapshotUrls: 'https://i.gkd.li/i/18261037',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/8ea7b6ad-8e5b-4b96-bbac-ec5b7196ddbb',\n          snapshotUrls: 'https://i.gkd.li/i/18285341',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taobao.etao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taobao.etao',\n  name: '一淘',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.taobao.etao.app.home.view.NewHomeActivity',\n            'com.taobao.etao.app.homev4.HomeV4Activity',\n          ],\n          matches:\n            'LinearLayout[childCount=2] > @RelativeLayout[clickable=true][childCount=1] > ImageView[childCount=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12739581',\n            'https://i.gkd.li/i/13670025',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: 'com.taobao.etao.app.homev4.HomeV4Activity',\n          matches:\n            '[text=\"一淘-首页红包升级-2312wf\"] >5 View[childCount=3] > View[index=0][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/db5c7761-3a8b-4bc6-a61c-65dd30f61b9f',\n          snapshotUrls: 'https://i.gkd.li/i/14622468',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.taobao.sns.app.message.MessageActivity',\n          matches:\n            '[text^=\"打开消息通知\"] + [text=\"去开启\"] + ImageView[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12684278',\n        },\n        {\n          key: 1,\n          activityIds: '.mine.MetaXMineActivity',\n          matches:\n            '[text^=\"打开消息通知\"] + FrameLayout > [text=\"去开启\"] < FrameLayout + ImageView[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12684351',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taobao.htao.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taobao.htao.android',\n  name: '淘宝Lite',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-关闭顶部[打开淘宝]横幅',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.taobao.htao.android.detail.DetailActivity',\n          matches:\n            'WebView[text$=\"天猫Tmall.com\"] >2 View[id=null][childCount=1] > @TextView[visibleToUser=true][text=\"\"] <<n [vid=\"detail_swipe_to_refresher\"]',\n          exampleUrls: 'https://e.gkd.li/661fca21-45e3-4e89-8ccc-b8bafb1bab02',\n          snapshotUrls: 'https://i.gkd.li/i/16842507',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-关闭切换站点提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: [\n            '[vid=\"change_country_layout\"]',\n            '[vid=\"uik_mdButtonClose\"]',\n          ],\n          exampleUrls: 'https://e.gkd.li/2b0af049-98c9-43b2-8ae5-a40bf6833e95',\n          snapshotUrls: 'https://i.gkd.li/i/16976226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taobao.idlefish.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taobao.idlefish',\n  name: '闲鱼',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostTransparencyActivity',\n          matches:\n            '@ImageView[clickable=true][desc=null] < [desc^=\"开启系统通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13538351',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-手机信息权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.maincontainer.activity.MainActivity',\n          matches: ['[text*=\"手机信息权限\"]', '[text=\"取消\"]'],\n          exampleUrls: 'https://e.gkd.li/81e3e4d8-f297-4476-b22c-73f0b97879ee',\n          snapshotUrls: 'https://i.gkd.li/i/13620277',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.maincontainer.activity.MainActivity',\n          matches: '[text=\"立即升级\"] -2 [text=\"暂不升级\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13832272',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.taobao.idlefish.maincontainer.activity.MainActivity',\n          matches:\n            'WebView[text=\"Rax App\"] > [id=\"root\"] >(3,6) View[index=parent.childCount.minus(1)][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14551046',\n            'https://i.gkd.li/i/24981766',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.taobao.idlefish.search_implement.SearchResultActivity',\n          matches:\n            '@TextView[width<250 && height<250] - [childCount=0][text=\"收下红包\"] <<n [vid=\"fish_layer_container_id\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23125419',\n        },\n        {\n          key: 2,\n          name: '夜市氛围广告',\n          fastQuery: true,\n          activityIds:\n            'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostActivity',\n          matches:\n            '@TextView[width<210 && height<210][clickable=true] <<n WebView[childCount!=0][text=\"夜市氛围弹框\"] <<n [vid=\"fish_layer_container_id\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23183586',\n        },\n      ],\n    },\n    // 该规则可能会出现多次触发一段后才能触发二段的情况，影响正常使用\n    // {\n    //   key: 5,\n    //   name: '分段广告-信息流广告',\n    //   forcedTime: 100000,\n    //   activityIds: [\n    //     'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostTransparencyActivity',\n    //     'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostActivity',\n    //     '.search_implement.SearchResultActivity',\n    //     '.maincontainer.activity.MainActivity',\n    //   ],\n    //   rules: [\n    //     {\n    //       key: 0,\n    //       action: 'longClick',\n    //       matches:\n    //         '@View[longClickable=true][desc$=\"广告\"][visibleToUser=true] > [desc!=null][visibleToUser=true]',\n    //       snapshotUrls: 'https://i.gkd.li/i/19593497',\n    //       excludeSnapshotUrls: 'https://i.gkd.li/i/19604467',\n    //     },\n    //     {\n    //       key: 1,\n    //       fastQuery: true,\n    //       action: 'longClick',\n    //       matches: '@[longClickable=true] >3 [text=\"广告\"][visibleToUser=true]',\n    //       exampleUrls: 'https://e.gkd.li/ca42e088-6fae-4402-a000-06418bf054cf',\n    //       snapshotUrls: 'https://i.gkd.li/i/19603954',\n    //     },\n    //     {\n    //       key: 2,\n    //       fastQuery: true,\n    //       action: 'longClick',\n    //       activityIds: '.maincontainer.activity.MainActivity',\n    //       matches:\n    //         '@[longClickable=true][childCount=0][visibleToUser=true] < FrameLayout > [text=\"广告\"][visibleToUser=true]',\n    //       exampleUrls: 'https://e.gkd.li/738c623e-58fe-45a1-9a28-957f0f812c72',\n    //       snapshotUrls: 'https://i.gkd.li/i/19604324',\n    //     },\n    //     {\n    //       preKeys: [0, 1, 2],\n    //       matches: '[desc=\"引起不适\"][visibleToUser=true]',\n    //       snapshotUrls: [\n    //         'https://i.gkd.li/i/19593500',\n    //         'https://i.gkd.li/i/19603913',\n    //         'https://i.gkd.li/i/19604317',\n    //       ],\n    //     },\n    //   ],\n    // },\n    {\n      key: 6,\n      name: '功能类-自动点击[查看原图]',\n      rules: [\n        {\n          activityIds:\n            'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostActivity',\n          matches: '[desc=\"查看原图\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/12b60303-4fb8-4786-b636-4efef10f3d78',\n          snapshotUrls: 'https://i.gkd.li/i/15463399',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-关闭小额免密支付',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches:\n            '@CheckBox[clickable=true][checked=true] < * - [text$=\"免密支付\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23455398', // 关闭前\n            'https://i.gkd.li/i/23455378', // 关闭后\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taobao.litetao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taobao.litetao',\n  name: '淘特',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示-版本升级弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.taobao.ltao.maintab.MainFrameActivity',\n            '.launcher.ALiFlutterActivityCompat',\n          ],\n          matches: '[id = \"com.taobao.litetao:id/update_imageview_cancel_v2\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12843615',\n            'https://i.gkd.li/i/12843614',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taobao.taobao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taobao.taobao',\n  name: '淘宝',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '@[vid*=\"close\"] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17576743',\n            'https://i.gkd.li/i/17578451',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.taobao.tao.welcome.Welcome',\n            'com.taobao.tao.TBMainActivity',\n            'com.taobao.android.tbabilitykit.pop.StdPopContainerActivity',\n            'com.taobao.android.detail.wrapper.activity.DetailActivity',\n          ],\n          matches: '@[desc=\"关闭按钮\"] - [vid=\"poplayer_native_state_id\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12648734',\n            'https://i.gkd.li/i/12648746',\n            'https://i.gkd.li/i/14060521',\n            'https://i.gkd.li/i/14905372',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.taobao.tao.welcome.Welcome',\n          matches:\n            '@ImageView[desc=\"图片\"][childCount=0][clickable=true][visibleToUser=true][width<180&&height<180] <<n [vid=\"poplayer_native_state_id\"]',\n          exampleUrls: 'https://e.gkd.li/5c77eaf1-b4dc-48c9-96af-131ae9644ffa',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18218537',\n            'https://i.gkd.li/i/20277438',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: 'com.taobao.browser.BrowserActivity',\n          matches:\n            'WebView[text=\"红包签到\"] > [id=\"ice-container\"] >(3,4) View[childCount=3] > [name$=\"Image\" || name$=\"Button\"][text*=\"jpg\" || text=\"关闭\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c7c06d50-a384-4869-a14f-95d219d9d08c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18587158',\n            'https://i.gkd.li/i/18587159',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.taobao.themis.container.app.TMSActivity',\n          matches:\n            '[text=\"规则\"] +2 @View[childCount=1][clickable=true] > Image[childCount=0][text!=null] <<n [vid=\"tms_tab_content_view\"]',\n          exampleUrls: 'https://e.gkd.li/dbf9ea95-3674-4cb2-8a88-dfb96c24e71b',\n          snapshotUrls: 'https://i.gkd.li/i/22308745',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: [\n            'com.taobao.search.uniform.SearchActivity',\n            'com.taobao.android.detail.alittdetail.TTDetailActivity',\n            'com.taobao.tao.TBMainActivity',\n          ],\n          matches:\n            '@[clickable=true][childCount=0][width<150 && height<150][index=parent.childCount.minus(1)] -n TextView[text.length>0] <n View <<n WebView[vid=\"poplayer_inner_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22949963',\n            'https://i.gkd.li/i/23289412',\n            'https://i.gkd.li/i/23567053',\n            'https://i.gkd.li/i/24982514',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-消息页面热门活动卡片',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.taobao.tao.welcome.Welcome',\n            'com.taobao.tao.TBMainActivity',\n          ],\n          matches:\n            '[desc.length>0 || text.length>0] + @LinearLayout[clickable=true] + FrameLayout > TextView[text=\"퀺\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13197877',\n            'https://i.gkd.li/i/23140899',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.taobao.browser.BrowserActivity',\n          matches:\n            '@Image[childCount=0][clickable=true][text!=null] < View <2 View < WebView < o0 <2 WebView < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13521702',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.taobao.themis.container.app.TMSActivity',\n          matches:\n            '@Image[childCount=0][clickable=true][text!=null] <2 View < View < View <9 View < WebView < m0 <2 WebView < RelativeLayout < [vid=\"tms_tab_content_view\"]',\n          exampleUrls: 'https://e.gkd.li/45f8b78d-bc6a-4c1a-994d-6b5bce2c96a0',\n          snapshotUrls: 'https://i.gkd.li/i/22291107',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.taobao.android.detail.alittdetail.TTDetailActivity',\n          matches:\n            '@FrameLayout[desc=\"关闭\"][clickable=true] <<n [vid=\"ll_dinamicx_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23289445',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.taobao.android.tbabilitykit.pop.StdPopContainerActivity',\n            'com.taobao.tao.TBMainActivity',\n            'com.taobao.tao.welcome.Welcome',\n          ],\n          matches:\n            '@Image[childCount=0][visibleToUser=true][text!=null] <n View >(1,2) [visibleToUser=true][text*=\"消息通知\" || text*=\"系统通知\"] <<n [vid=\"poplayer_inner_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13446901',\n            'https://i.gkd.li/i/13455424',\n            'https://i.gkd.li/i/15104645',\n            'https://i.gkd.li/i/18407606',\n            'https://i.gkd.li/i/21789921',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-各级页面添加到首页弹窗',\n      desc: '点击退出',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.taobao.themis.container.app.TMSActivity',\n            'com.alibaba.triver.container.TriverMainActivity',\n          ],\n          matches: 'TextView[text=\"去首页\"] + TextView[text=\"退出\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13197553',\n            'https://i.gkd.li/i/13197546',\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.taobao.android.detail.wrapper.activity.DetailActivity',\n            'com.taobao.android.order.bundle.TBOrderListActivity',\n            'com.taobao.browser.BrowserActivity',\n            'com.taobao.themis.container.app.TMSActivity',\n          ],\n          matches: '[vid=\"update_imageview_cancel_v2\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13336760',\n            'https://i.gkd.li/i/13695520',\n            'https://i.gkd.li/i/14899863',\n            'https://i.gkd.li/i/24861114', //芭芭农场\n            'https://i.gkd.li/i/24999523', //淘金币\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '功能类-关闭小额免密支付',\n      desc: '在支付前/后出现',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches:\n            '[text=\"关闭\"] < @[clickable=true] <3 * < * + * >3 [text$=\"小额免密支付\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2322af2e-52e2-4059-9757-f26940f4b2fc',\n          snapshotUrls: 'https://i.gkd.li/i/13438414',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: '@[checked=true] < * - [text=\"开通淘宝小额免密支付\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3ae78555-c0a5-4f76-8096-c4d1593ebb77',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14471853', // 关闭前\n            'https://i.gkd.li/i/14471858', // 关闭后\n          ],\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-将小组件添加到手机桌面',\n      desc: '点击取消',\n      activityIds: 'com.alibaba.triver.container.TriverMainActivity',\n      rules: [\n        {\n          action: 'clickCenter',\n          matches: 'View[text=\"立即添加\"] + View[text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13598578',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '权限提示-悬浮窗权限',\n      desc: '点击[否]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.taobao.android.detail2.core.framework.floatwindow.permission.PermissionActivity',\n            'com.taobao.taolive.sdk.permisson.PermissionActivity',\n          ],\n          matches: ['[text*=\"悬浮窗权限\"]', '[text=\"否\" || text=\"暂不\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13588165',\n            'https://i.gkd.li/i/23146078',\n          ],\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '全屏广告-花呗推荐弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 2,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text*=\"花呗升级\" || text*=\"花呗服务\" || text$=\"开通花呗\"][visibleToUser=true]',\n            '@[clickable=true] >n [text=\"暂不升级，继续付款\" || text=\"关闭\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13691864',\n            'https://i.gkd.li/i/13628020',\n            'https://i.gkd.li/i/13898735',\n          ],\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '局部广告-商品详情页直播悬浮窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds:\n            'com.taobao.android.detail.wrapper.activity.DetailActivity',\n          matches: '[vid=\"view_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15124094',\n        },\n      ],\n    },\n    {\n      key: 20,\n      name: '功能类-登录授权',\n      desc: '点击[确认授权]',\n      rules: [\n        {\n          activityIds: 'com.taobao.browser.BrowserActivity',\n          matches: '[text=\"确认授权\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e6250a9c-3fee-4470-8c7c-1d28ea63d2a5',\n          snapshotUrls: 'https://i.gkd.li/i/18271783',\n        },\n      ],\n    },\n    {\n      key: 21,\n      name: '全屏广告-支付后的推荐弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.alipay.android.msp.ui.views.MspContainerActivity',\n          matches: [\n            '[text$=\"推荐你\"][visibleToUser=true]',\n            '@[clickable=true] > [text=\"关闭\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/1646b159-a3ca-4cd8-9519-729e70acb72a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14155537',\n            'https://i.gkd.li/i/18296345',\n            'https://i.gkd.li/i/22113615',\n          ],\n        },\n        {\n          key: 1,\n          name: '充值类商品界面广告',\n          fastQuery: true,\n          activityIds: 'com.taobao.weex.WXActivity',\n          matches:\n            '@ImageView[clickable=true][width<150 && height<155] < FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout <2 [vid=\"weex_render_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23923991',\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '局部广告-搜索页广告',\n      desc: '自动隐藏猜你想搜、热榜',\n      rules: [\n        {\n          key: 0,\n          name: '猜你想搜',\n          fastQuery: true,\n          activityIds: 'com.taobao.search.uniform.SearchActivity',\n          matches: '[vid=\"hideBtn\"][desc=\"隐藏\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23165368', // 隐藏前\n            'https://i.gkd.li/i/23165384', // 隐藏后\n          ],\n        },\n        {\n          key: 1,\n          name: '热榜',\n          fastQuery: true,\n          activityIds: 'com.taobao.search.uniform.SearchActivity',\n          matches:\n            '@[desc=\"隐藏榜单\"][clickable=true] <<n [vid=\"dynamic_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23165418', // 隐藏前\n            'https://i.gkd.li/i/23165427', // 隐藏后\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.taptap.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.taptap',\n  name: 'TapTap',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-游戏浏览页面推荐广告',\n      desc: '点击[]对此内容不感兴趣]',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.taptap.other.basic.impl.TapMainActivity',\n          matches:\n            '[id=\"com.taptap.app.middle:id/decision_layout_mask\"] + @[id=\"com.taptap.app.game:id/app_menu\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12840903',\n            'https://i.gkd.li/i/12842279',\n            'https://i.gkd.li/i/12864810', //需避免点击正常情况下的app menu\n          ],\n        },\n        {\n          key: 1,\n          activityIds: [\n            'com.taptap.game.discovery.impl.findgame.allgame.dialog.FindGameMenuDialog',\n            'com.taptap.other.basic.impl.TapMainActivity',\n          ],\n          matches: '@LinearLayout > [text=\"对此内容不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12840904',\n            'https://i.gkd.li/i/13258679',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.upgrade.library.dialog.UpgradeDialogAct',\n          matches: '@[vid=\"btn_dismiss\"] -2 * >2 [text=\"发现新版本\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13387479',\n            'https://i.gkd.li/i/13488702',\n            'https://i.gkd.li/i/14209268',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '青少年模式-首页顶部横幅提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[text*=\"青少年模式\"] + [vid=\"iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14209309',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.android.qqdownloader.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.android.qqdownloader',\n  name: '应用宝',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-关闭登录弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tencent.assistantv2.activity.MainActivity',\n          matches: '@Button[clickable=true] - [text=\"欢迎登录应用宝\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/29c109c2-7993-4b39-ba80-6ae6451ab533',\n          snapshotUrls: 'https://i.gkd.li/i/16012576',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.androidqqmail.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.androidqqmail',\n  name: 'QQ邮箱',\n  groups: [\n    {\n      key: 0,\n      name: '分段广告-列表卡片广告',\n      fastQuery: true,\n      activityIds: 'com.tencent.qqmail.fragment.base.MailFragmentActivity',\n      rules: [\n        {\n          key: 0,\n          name: '英文版邮箱广告-点击Ads',\n          matches: '[id=\"com.tencent.androidqqmail:id/advertise_view_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12842757',\n        },\n        {\n          name: '英文版邮箱广告-点击Not interested',\n          preKeys: [0],\n          matches: '@FrameLayout > TextView[text=\"Not interested\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12842775',\n        },\n        {\n          key: 1,\n          name: '点击[广告]',\n          matches:\n            'LinearLayout > TextView + @LinearLayout[id!=null][clickable=true] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12775857',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: '[vid=\"btn_advertise_click_area\"]',\n          exampleUrls: 'https://e.gkd.li/acce3df3-9773-4b42-b468-4724a7851efe',\n          snapshotUrls: 'https://i.gkd.li/i/17908070',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matches:\n            'ImageView < LinearLayout[width<130 && height<100][id!=null] < @FrameLayout[clickable=true][id!=null] - [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24559942',\n        },\n        {\n          preKeys: [0, 1, 2, 3], // https://github.com/gkd-kit/subscription/issues/1776\n          key: 9,\n          name: '点击[不感兴趣]',\n          matches: '[text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12775862',\n            'https://i.gkd.li/i/15051479',\n            'https://i.gkd.li/i/17908078',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tencent.qqmail.fragment.base.MailFragmentActivity',\n          matches: '[text=\"立刻开启\"] - [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13043069',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.cmocmna.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.cmocmna',\n  name: '腾讯手游加速器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.tencent.mocmna.activity.MainActivity',\n          matches:\n            'ViewGroup[childCount=2] > @ImageView[id!=null][clickable=true][childCount=0] + ImageView[childCount=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12847323',\n            'https://i.gkd.li/i/12847336',\n            'https://i.gkd.li/i/13063271', // 限定 [clickable=true] 防止在此快照中点击左上角头像\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-信息流内嵌广告',\n      rules: [\n        {\n          activityIds: 'com.tencent.mocmna.activity.MainActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][index=parent.childCount.minus(1)] -5 [text=\"下载\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12847340',\n            'https://i.gkd.li/i/12847364',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.djcity.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.djcity',\n  name: '掌上道聚城',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15137209',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tencent.djcity.activities.homepage.MainActivity',\n          matches:\n            '[vid=\"main_container\"] >7 View[childCount=7] > View[childCount=2] > @View[index=1][childCount=1][clickable=true] > ImageView[childCount=0] <<n [vid=\"main_container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/151fd8a5-8c44-4368-a8ba-3563df44e492',\n          snapshotUrls: 'https://i.gkd.li/i/14229532',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-\"签到成功\"弹窗',\n      desc: '点击\"好的\"',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tencent.djcity.activities.homepage.MainActivity',\n          matches: '@View[clickable=true] > [desc=\"好的\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/22ba335b-c225-41f0-97be-a91377ebc121',\n          snapshotUrls: 'https://i.gkd.li/i/14229554',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.docs.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.docs',\n  name: '腾讯文档',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@LinearLayout[clickable=true] - [text^=\"互动广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13198082',\n            'https://i.gkd.li/i/23557410',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.DocsFlutterActivity',\n          matches: '@[desc=\"暂不更新\"] + [desc=\"现在更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13198091',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          activityIds: 'com.tencent.docs.DocsFlutterActivity',\n          matches: '@ImageView[clickable=true] - [desc=\"限时购买\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13198097',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          actionDelay: 200,\n          activityIds: 'com.tencent.docs.DocsFlutterActivity',\n          matches:\n            'View[childCount=2] > @TextView[id=null][clickable=true] + View',\n          snapshotUrls: 'https://i.gkd.li/i/13242404',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.karaoke.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.karaoke',\n  name: '全民K歌',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '动态页面-卡片广告',\n          fastQuery: true,\n          activityIds: 'com.tencent.karaoke.module.main.ui.MainTabActivity',\n          matches: '@ImageView[clickable=true] - [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13334798',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 1,\n          name: '活动弹窗',\n          activityIds:\n            'com.tencent.karaoke.module.splash.ui.SplashBaseActivity',\n          matches:\n            'ViewGroup[childCount=0] < @ViewGroup[clickable=true][childCount=1] - ViewGroup > [desc*=\"双十一\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13363281',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.mm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.mm',\n  name: '微信',\n  groups: [\n    {\n      key: 0,\n      name: '分段广告-朋友圈广告',\n      desc: '警告⚠️：该规则有可能会误触，请谨慎开启',\n      activityIds: [\n        '.plugin.sns.ui.SnsTimeLineUI',\n        '.plugin.sns.ui.improve.ImproveSnsTimelineUI',\n        '.plugin.profile.ui.ContactInfoUI',\n      ],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: [\n            '@LinearLayout[clickable=true] > [text=\"广告\" || text=\"廣告\" || text=\"Sponsored\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13000395',\n            'https://i.gkd.li/i/12905837',\n            'https://i.gkd.li/i/13791200',\n            'https://i.gkd.li/i/16568338',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          actionDelay: 300,\n          position: {\n            left: 'width * 0.9223',\n            top: 'height * 0.5',\n          },\n          anyMatches: [\n            '@LinearLayout >2 [text=\"广告\"][visibleToUser=false]',\n            'RecyclerView > FrameLayout[childCount=1] > RelativeLayout > FrameLayout > LinearLayout > LinearLayout > LinearLayout > @LinearLayout[childCount=2][getChild(0).getChild(0).text!=null] > LinearLayout[index=1][clickable=false][visibleToUser=false]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14783802',\n            'https://i.gkd.li/i/15531539',\n            'https://i.gkd.li/i/19665911',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/19717709',\n        },\n        {\n          key: 2,\n          matches:\n            '[name$=\"RecyclerView\"||name$=\"ListView\"] >(1,2) RelativeLayout >3 LinearLayout > LinearLayout > LinearLayout[childCount=2] > LinearLayout[index=1][clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14647413',\n            'https://i.gkd.li/i/19633571',\n          ],\n        },\n\n        // 预留key\n        // 第二段\n        {\n          preKeys: [0, 1, 2],\n          key: 25,\n          name: '点击[关闭]',\n          fastQuery: true,\n          anyMatches: [\n            '[text^=\"关闭\" || text*=\"Close\" || text=\"關閉此廣告\"][clickable=true][visibleToUser=true]', //1\n            '@LinearLayout[clickable=true] > [text=\"关闭该广告\" || text*=\"Close\"][visibleToUser=true]', //2\n            '@LinearLayout[index=1][clickable=true] <2 * < * - [text*=\"广告\"]', //3\n            '@[text=\"关闭该广告\"] -2 [text^=\"对这条广告不感兴趣\"][visibleToUser=true]', //4\n          ],\n          snapshotUrls: [\n            //1\n            'https://i.gkd.li/i/13926578',\n            'https://i.gkd.li/i/15531274',\n            'https://i.gkd.li/i/14207480',\n            'https://i.gkd.li/i/15137016',\n            'https://i.gkd.li/i/13791202',\n            //2\n            'https://i.gkd.li/i/14783820',\n            'https://i.gkd.li/i/15284966',\n            //3\n            'https://i.gkd.li/i/14647839',\n            'https://i.gkd.li/i/19666176',\n            //4\n            'https://i.gkd.li/i/19633486',\n          ],\n        },\n\n        // 预留key\n        // 第三段\n        {\n          preKeys: [25],\n          key: 50,\n          name: '点击[关闭]',\n          matches: '[text*=\"关闭\" || text=\"Close\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12663984',\n            'https://i.gkd.li/i/12905846',\n            'https://i.gkd.li/i/14647940',\n            'https://i.gkd.li/i/14783534',\n          ],\n        },\n\n        // 预留key\n        // 第四段\n        {\n          preKeys: [50],\n          key: 75,\n          name: '点击[确认]',\n          fastQuery: true,\n          matches:\n            '@[text=\"确认\"][visibleToUser=true] -2 [text=\"不感兴趣原因\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14647940',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '功能类-电脑微信快捷自动登录',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: [\n            '.plugin.webwx.ui.ExtDeviceWXLoginUI',\n            '.ui.LauncherUI',\n          ],\n          matches: [\n            '[text=\"登录 Windows 微信\" || text^=\"Log in to Weixin for\"][visibleToUser=true]',\n            '[text=\"登录\" || text=\"Log In\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13522625',\n            'https://i.gkd.li/i/13522577',\n            'https://i.gkd.li/i/22356438',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-自动授权登录',\n      desc: '自动允许使用头像昵称等',\n      fastQuery: true,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.plugin.base.stub.UIEntryStub',\n            '.ui.LauncherUI',\n            '.plugin.webview.ui.tools.MMWebViewUI',\n            '.plugin.webview.ui.tools.SDKOAuthUI',\n          ],\n          matches: [\n            '[text^=\"获取你的\" || text^=\"取得你的\" || text^=\"你的昵称\"]',\n            '[text=\"允许\" || text=\"允許\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12663602',\n            'https://i.gkd.li/i/13065462',\n            'https://i.gkd.li/i/15271716',\n            'https://i.gkd.li/i/16972565',\n            'https://i.gkd.li/i/19496823',\n          ],\n        },\n        {\n          preKeys: [0],\n          activityIds: '.plugin.webview.ui.tools.SDKOAuthOtherUI',\n          matches: [\n            '[text=\"申请获得\"][visibleToUser=true]',\n            '[text=\"允许\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24560465',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-微信读书网页版扫码登录自动授权',\n      matchTime: 10000,\n      actionMaximum: 1,\n      activityIds: '.plugin.webview.ui.tools.MMWebViewUI',\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"微信读书网页版\"] +3 Button[text=\"登 录\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12506197',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          action: 'back',\n          matches: '[text=\"登录成功\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12506201',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-自动领取微信红包',\n      desc: '自动领取私聊红包,群聊红包',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          name: '点击别人发的红包',\n          activityIds: [\n            '.ui.LauncherUI',\n            '.ui.chatting.variants.ChattingMainUI',\n          ],\n          matches:\n            'LinearLayout[childCount=1] >2 @FrameLayout[clickable=true] >2 LinearLayout[getChild(1).childCount=1] +2 RelativeLayout > [text=\"微信红包\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18134826',\n            'https://i.gkd.li/i/24347101',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/18134823', // 自己发的， LinearLayout[childCount=1] 区分\n            'https://i.gkd.li/i/18134833', // 已领取的， getChild(1).childCount=1 区分\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          name: '点击红包-开',\n          matchRoot: true,\n          activityIds: '.plugin.luckymoney.ui.LuckyMoney',\n          matches: '@Button[desc=\"开\"] -3 LinearLayout >2 [text$=\"红包\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18134828',\n            'https://i.gkd.li/i/21177180',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/12567698', // 金币动画的快照\n        },\n        {\n          preKeys: [1, 2],\n          name: '从红包结算界面返回',\n          activityIds: '.plugin.luckymoney.ui.LuckyMoney',\n          matches: '@ImageView[desc=\"返回\"] +n LinearLayout >8 [text$=\"红包\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18134829',\n            'https://i.gkd.li/i/18135031',\n            'https://i.gkd.li/i/23825631',\n            'https://i.gkd.li/i/24414957',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-自动选中发送原图',\n      desc: '自动选中底部中间的发送原图，可手动取消勾选',\n      actionMaximum: 1,\n      activityIds: [\n        '.plugin.gallery.ui.AlbumPreviewUI',\n        '.plugin.gallery.ui.ImagePreviewUI',\n      ],\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          anyMatches: [\n            '@[desc=\"未选中,原图,复选框\"][visibleToUser=true] + [text=\"原图\"]',\n            '@[desc=\"未选中,原图,复选框\"][visibleToUser=true]',\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/32dc0943-e85f-416d-bb01-6ed610d4bdd8',\n            'https://e.gkd.li/93d41161-ab69-4c2d-83bb-637d7292f5e6',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/16987145', // 未选中\n            'https://i.gkd.li/i/16987144', // 未选中\n            'https://i.gkd.li/i/19625049', // 无法快速查询\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/16987141', // 已选中\n            'https://i.gkd.li/i/16987147', // 已选中\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-自动查看原图',\n      desc: '自动点击底部左侧[查看原图]按钮',\n      activityIds: ['.ui.chatting.gallery.ImageGalleryUI', '.ui.LauncherUI'],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            'Button[text^=\"查看\"][clickable=true][visibleToUser=true]',\n            'Button[clickable=true][text^=\"查看\"][visibleToUser=true]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/6bb9e68a-43f5-4482-96b1-899cc86fef32',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13523031',\n            'https://i.gkd.li/i/17698956',\n            'https://i.gkd.li/i/19515095',\n            'https://i.gkd.li/i/19645122', // 无法快速查询\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.ui.LauncherUI',\n          matches: '[text^=\"原图\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25009442',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '开屏广告-微信小程序',\n      fastQuery: true,\n      matchTime: 10000,\n      forcedTime: 10000,\n      // actionMaximum: 1, // 经常需要点2次，首次点击过早大概率跳不过\n      priorityTime: 10000,\n      activityIds: [\n        '.plugin.appbrand.ui.AppBrandUI',\n        '.plugin.appbrand.launching.AppBrandLaunchProxyUI',\n      ],\n      rules: [\n        {\n          actionDelay: 800, // 过早点击首次大概率跳不过\n          matches: [\n            '[text=\"广告\"][visibleToUser=true]',\n            '[text=\"跳过\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12785183',\n            'https://i.gkd.li/i/13306883',\n            'https://i.gkd.li/i/13407275',\n            'https://i.gkd.li/i/15108441',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-网页版文件传输助手扫码自动授权',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: '.ui.LauncherUI',\n          matches: '[text=\"打开网页版文件传输助手\"] + * > Button[text=\"打开\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12793745',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '青少年模式',\n      fastQuery: true,\n      matchTime: 20000,\n      actionMaximum: 1,\n      activityIds: ['.plugin.finder.', '.ui.LauncherUI'],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[text=\"我知道了\"][index=parent.childCount.minus(1)] <n LinearLayout > [text^=\"为呵护未成年人健康成长\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13538145',\n            'https://i.gkd.li/i/13575195',\n            'https://i.gkd.li/i/14735456',\n            'https://i.gkd.li/i/14896723',\n            'https://i.gkd.li/i/18135103',\n            'https://i.gkd.li/i/19683937',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '@[text=\"不再提醒\"][clickable=true] <2 [index=parent.childCount.minus(1)] -n [text^=\"为呵护未成年人健康成长\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24796791',\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '功能类-青少年模式自动点击验证密码',\n      desc: '点击“验证密码”以申请临时访问',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.plugin.teenmode.ui.AuthorizationRequestUI',\n          matches: '@LinearLayout[childCount=2] > TextView[text=\"验证密码\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13588338',\n        },\n        {\n          key: 1,\n          activityIds: '.plugin.webview.ui.tools.MMWebViewUI',\n          matches: 'View[desc=\"验证密码\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13631987',\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '功能类-订阅号-展开更早的消息',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.plugin.brandservice.ui.timeline.BizTimeLineUI',\n          matches: '@[clickable=true] > [text=\"展开更早的消息\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13790550',\n        },\n        {\n          key: 1,\n          matches: '[desc=\"展开更早的消息\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13790949',\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '功能类-开启青少年模式后的每日验证',\n      desc: '点击\"验证密码\"',\n      rules: [\n        {\n          activityIds: '.plugin.webview.ui.tools.MMWebViewUI',\n          matches:\n            'WebView[childCount=6] View[index=4] > [text=\"验证密码\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14050004',\n        },\n      ],\n    },\n    {\n      key: 25,\n      name: '局部广告-订阅号消息-推荐文章',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds:\n            '.plugin.brandservice.ui.flutter.BizFlutterTLFlutterViewActivity',\n          matches:\n            'View[childCount=2] > View[desc$=\"推​荐​\"][childCount=3] > ImageView[index=2][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14392392',\n        },\n      ],\n    },\n    {\n      key: 26,\n      name: '功能类-付款后自动点击完成/返回商家',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.framework.app.UIPageFragmentActivity',\n          matches:\n            '[vid=\"kinda_button_impl_wrapper\"][desc=\"完成\" || desc=\"返回商家\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a5177d9d-6745-443f-baf5-af57153430d8',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14399355',\n            'https://i.gkd.li/i/14662147',\n            'https://i.gkd.li/i/24157874',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14532946',\n        },\n        {\n          key: 1,\n          versionCode: { minimum: 2980 },\n          activityIds: '.plugin.lite.ui.WxaLiteAppTransparentLiteUI',\n          matches: 'Button[desc=\"返回商家\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e7acbb38-c602-4ea4-88ec-7604c3aeae06',\n          snapshotUrls: 'https://i.gkd.li/i/24141842',\n        },\n      ],\n    },\n    {\n      key: 28,\n      name: '分段广告-订阅号消息-视频推荐',\n      desc: '点击[X]-点击[不喜欢此类视频]-点击[确定]',\n      activityIds:\n        '.plugin.brandservice.ui.flutter.BizFlutterTLFlutterViewActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击[X]',\n          matches:\n            '[desc=\"订阅号消息\"] +3 View >2 [visibleToUser=true] - View >3 ImageView[index=2][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b777c0b1-f8ed-4712-afd6-2e1a72243475',\n          snapshotUrls: 'https://i.gkd.li/i/14436176',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          name: '点击[不喜欢此类视频]',\n          matches: '[desc=\"不喜欢此类视频\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/39e8b378-9b55-4838-92af-b28f04402ca4',\n          snapshotUrls: 'https://i.gkd.li/i/14444654',\n        },\n        {\n          preKeys: 1,\n          key: 2,\n          name: '点击[确定]',\n          matches: '[desc=\"确定\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/590eb619-9987-4edf-98a8-17146ffeda10',\n          snapshotUrls: 'https://i.gkd.li/i/14436190',\n        },\n      ],\n    },\n    {\n      key: 29,\n      name: '功能类-解锁 Windows 微信',\n      desc: '点击[解锁]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.plugin.webwx.ui.WebWXUnlockUI',\n          anyMatches: [\n            '[text=\"解锁\"][clickable=true][visibleToUser=true]',\n            '@[text=\"解锁\"][clickable=true] < LinearLayout -2 [text^=\"解锁\"][visibleToUser=true]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/85bb6dcd-0d04-46c1-af14-6e4b57ff4dca',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14490116',\n            'https://i.gkd.li/i/23688962',\n          ],\n        },\n      ],\n    },\n    {\n      key: 30,\n      name: '全屏广告-文档页面-腾讯文档APP弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.plugin.webview.ui.tools.MMWebViewUI',\n          matches:\n            '@TextView[clickable=true] + * > [visibleToUser=true][text^=\"使用 APP\"] <<n [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2228f99e-e0a1-4915-864f-d60e3d8580a6',\n          snapshotUrls: 'https://i.gkd.li/i/14533286',\n        },\n      ],\n    },\n    {\n      key: 31,\n      name: '分段广告-订阅号消息-推荐阅读',\n      desc: '点击关闭',\n      activityIds:\n        '.plugin.brandservice.ui.flutter.BizFlutterTLFlutterViewActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'View > Button > View[desc$=\"推​荐​\"] > ImageView[index=1][clickable=true][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/101449500/5b815528-1ca2-4016-930e-a3cfb4e5e7ea',\n          snapshotUrls: 'https://i.gkd.li/i/14548701',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[desc=\"不看此类内容\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14549566',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[desc=\"确定\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14549567',\n        },\n      ],\n    },\n    {\n      key: 32,\n      name: '权限提示-权限申请弹窗',\n      desc: '点击取消',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.pluginsdk.permission.PermissionActivity',\n          matches: ['[text=\"权限申请\"]', '[text=\"取消\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/43632b72-d389-4fe7-9708-dac78e900679',\n          snapshotUrls: 'https://i.gkd.li/i/14645385',\n        },\n      ],\n    },\n    {\n      key: 34,\n      name: '功能类-付款时自动点击[支付]',\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.framework.app.UIPageFragmentActivity',\n          matches:\n            'ViewGroup + ViewGroup > ViewGroup > [vid=\"kinda_button_impl_wrapper\"][desc=\"支付\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15144570',\n            'https://i.gkd.li/i/15144571',\n            'https://i.gkd.li/i/15360745',\n            'https://i.gkd.li/i/24157875',\n          ],\n        },\n        {\n          key: 1,\n          matchRoot: true,\n          forcedTime: 100000, // https://github.com/AIsouler/GKD_subscription/issues/1486\n          versionCode: { minimum: 2960 },\n          activityIds: '.plugin.lite.ui.WxaLiteAppTransparentLiteUI',\n          matches:\n            '[desc^=\"付款方式\"] + Button[desc=\"支付\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23746748',\n        },\n      ],\n    },\n    {\n      key: 35,\n      name: '分段广告-公众号文章内广告',\n      desc: '注意⚠️：该规则有概率误触，请谨慎开启',\n      activityIds: [\n        '.plugin.brandservice.ui.timeline.preload.ui.TmplWebView', //调整为TmplWebView, 同时兼容多种ID\n        '.plugin.webview.ui.tools.fts.MMSosWebViewUI',\n        '.plugin.webview.ui.tools.MMWebViewUI',\n      ],\n      rules: [\n        {\n          key: 0,\n          excludeMatches: [\n            // 防止在第二段、第三段出现时触发，防止在文章末尾广告关闭后触发\n            '[text=\"不感兴趣\" || text=\"与我无关\" || text=\"感谢你的反馈\"][visibleToUser=true]',\n          ],\n          matches:\n            '@View[childCount<5][bottom<2000] > [text^=\"广告\"][text.length<4][visibleToUser=true]', // 某些微信版本上该节点的`clickable=false`\n          exampleUrls: [\n            'https://e.gkd.li/e73bb653-cc79-455c-958b-38aff6687c37',\n            'https://e.gkd.li/5915f80b-66b9-4441-9d36-3caa3fe1be58',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642232', // ui.TmplWebViewMMUI\n            'https://i.gkd.li/i/13199281', // ui.TmplWebViewTooLMpUI\n            'https://i.gkd.li/i/14006180', // .plugin.webview.ui.tools.fts.MMSosWebViewUI\n            'https://i.gkd.li/i/17093010', // .plugin.webview.ui.tools.MMWebViewUI\n            'https://i.gkd.li/i/16796663', // 内容尾部广告\n            'https://i.gkd.li/i/16796725', // 内容中部广告\n            'https://i.gkd.li/i/16798663', // clickable=false\n            'https://i.gkd.li/i/15198455', // 无id\n            'https://i.gkd.li/i/17276697', // text=\"广告 \"，有空格\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/15198464', // 防止在文章末尾广告关闭后误触\n          ],\n        },\n        {\n          // 第二段-有“关闭此广告”按钮，则直接关闭该广告\n          preKeys: [0],\n          key: 20,\n          matches: '[text=\"关闭此广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16796729', // 内容中部广告\n            'https://i.gkd.li/i/17113565', // 在某些情况下，点击“不感兴趣”会导致无法执行下一步操作，因此点击“关闭此广告”\n          ],\n        },\n        {\n          // 第二段-无“关闭此广告”按钮，则点击“不感兴趣”，需继续执行第三段\n          preKeys: [0],\n          key: 25,\n          excludeMatches: [\n            '[text=\"感谢你的反馈\"][visibleToUser=true]',\n            '[text=\"关闭此广告\"][visibleToUser=true]',\n          ],\n          matches: '[text=\"不感兴趣\"][visibleToUser=true]', // 为确保能够关闭尾部广告，此处点击“不感兴趣”而非“关闭此广告”\n          snapshotUrls: [\n            'https://i.gkd.li/i/16796666', // 内容尾部广告\n            'https://i.gkd.li/i/16798661', // clickable=false\n            'https://i.gkd.li/i/15198459', // 无id\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/15061424', // 使用excludeMatches防止在文章末尾广告关闭后误触'\n            'https://i.gkd.li/i/16796729', // 内容中部广告，若同时存在“关闭此广告”与“不感兴趣”，则点击前者\n          ],\n        },\n        {\n          // 第三段\n          preKeys: [25],\n          key: 50,\n          matches: '[text=\"与我无关\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16796674', // 内容尾部广告\n            'https://i.gkd.li/i/16796732', // 内容中部广告\n            'https://i.gkd.li/i/16798658', // clickable=false\n            'https://i.gkd.li/i/15198461', // 无id\n          ],\n        },\n      ],\n    },\n    {\n      key: 36,\n      name: '功能类-自动点击[查看原视频]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.chatting.gallery.ImageGalleryUI',\n          matches: '[text^=\"查看原视频\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5332aff9-05bb-4b44-b832-5e2d9b1c1270',\n          snapshotUrls: 'https://i.gkd.li/i/16833732',\n        },\n      ],\n    },\n    {\n      key: 37,\n      name: '全屏广告-小程序弹窗广告',\n      desc: '点击关闭',\n      matchTime: 20000,\n      // actionMaximum: 1,\n      actionCd: 300, // 有时候需要点击多次\n      actionDelay: 300, // 过早触发有概率无效\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.plugin.appbrand.ui.AppBrandUI',\n          excludeMatches: '[text=\"跳过\"][visibleToUser=true]', // 防止提前触发\n          matches:\n            '@ImageView[visibleToUser=true][childCount=0][text=null] < FrameLayout[childCount=1] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] - FrameLayout >4 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/d2b12af6-c204-4da7-8553-4765ef8b8c31',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13459614',\n            'https://i.gkd.li/i/16943989',\n            'https://i.gkd.li/i/16920797',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16958795',\n        },\n      ],\n    },\n    {\n      key: 38,\n      name: '功能类-自动语音转文字',\n      desc: '点击语音旁边的转文字',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.ui.LauncherUI',\n            '.ui.chatting.ChattingUI',\n            '.ui.chatting.variants.ChattingMainUI',\n          ],\n          matches:\n            '@RelativeLayout[clickable=true] -2 FrameLayout >2 [desc^=\"语音\" && desc$=\"未播放\"] + [text^=\"0\" || text^=\"1\" || text^=\"2\" || text^=\"3\" || text^=\"4\" || text^=\"5\" || text^=\"6\" || text^=\"7\" || text^=\"8\" || text^=\"9\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18135057',\n            'https://i.gkd.li/i/24989479',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18135054',\n        },\n      ],\n    },\n    {\n      key: 39,\n      name: '功能类-语音/视频通话呼入10秒后自动点击接听',\n      rules: [\n        {\n          matchTime: 15000,\n          actionDelay: 10000,\n          activityIds: ['.plugin.voip.ui.VideoActivity', '.ui.LauncherUI'],\n          matches: 'Button[desc=\"接听\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fbfea6ba-ce43-4641-a919-9c21fa49dc73',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18225086',\n            'https://i.gkd.li/i/23295677',\n          ],\n        },\n      ],\n    },\n    {\n      key: 40,\n      name: '功能类-点击语音条菜单里的转文字',\n      desc: '点击 长按语音条后弹出的菜单 中的转文字',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.ui.LauncherUI',\n            '.ui.chatting.ChattingUI',\n            '.ui.chatting.variants.ChattingMainUI',\n          ],\n          matches: '@[clickable=true] >2 [text=\"转文字\"]',\n          exampleUrls: 'https://e.gkd.li/c35fafc8-9d96-4178-9aac-f16394d2c666',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19774491',\n            'https://i.gkd.li/i/19792042',\n            'https://i.gkd.li/i/25002786',\n          ],\n        },\n      ],\n    },\n    {\n      key: 41,\n      name: '功能类-自动接龙',\n      desc: '手动点接龙后点击加号再点击发送',\n      fastQuery: true,\n      activityIds: '.plugin.groupsolitaire.ui.GroupSolitatireEditUI',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[desc=\"添加\"] -n LinearLayout > [text^=\"由\"][text*=\"发起接龙\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5f446d2a-432f-4dca-9bb7-81eba83713c6',\n          snapshotUrls: 'https://i.gkd.li/i/21705413',\n        },\n        {\n          preKeys: [0],\n          matches:\n            '@[text=\"发送\"] < LinearLayout < LinearLayout < LinearLayout - [vid=\"actionbar_up_indicator\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/30f0f903-0a1a-422e-991c-02b7cbedc2da',\n          snapshotUrls: 'https://i.gkd.li/i/21705384',\n        },\n      ],\n    },\n    {\n      key: 42,\n      name: '功能类-自动点击未读消息（头像右上角为数字）',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.LauncherUI',\n          matches:\n            'TextView[childCount=0] - ImageView[childCount=0] < RelativeLayout[childCount=2] < LinearLayout < @LinearLayout[clickable=true][visibleToUser=true] <n ListView <n RelativeLayout < FrameLayout < FrameLayout < FrameLayout < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23737039',\n        },\n      ],\n    },\n    {\n      key: 43,\n      name: '功能类-自动点击未读消息（头像右上角为红点）',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.LauncherUI',\n          matches:\n            'ImageView[childCount=0] - ImageView[childCount=0] < RelativeLayout[childCount=2] < LinearLayout < @LinearLayout[clickable=true][visibleToUser=true] <n ListView <n RelativeLayout < FrameLayout < FrameLayout < FrameLayout < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23737039',\n        },\n      ],\n    },\n    {\n      key: 44,\n      name: '功能类-自动允许打开外部应用',\n      desc: '点击允许',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.plugin.webview.ui.tools.MMWebViewUI',\n          matches: [\n            '[text^=\"即将离开微信\"][visibleToUser=true]',\n            '[text=\"允许\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24161524',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.mobileqq.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.mobileqq',\n  name: 'QQ',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          excludeActivityIds: [\n            '.activity.ChatActivity', // 在聊天界面禁用\n            '.search.activity.UniteSearchActivity', // 在搜索页面禁用\n          ],\n          excludeMatches: '[vid=\"root\"]', // 在聊天界面禁用，若排除EditText[vid=\"input\"]则滑动消息时会造成误触\n          matches: 'TextView[text^=\"跳过\"][text.length<=10][!(vid=\"title\")]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13093155',\n            'https://i.gkd.li/i/13207731',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/13217807',\n            'https://i.gkd.li/i/13856647',\n            'https://i.gkd.li/i/13868177',\n            'https://i.gkd.li/i/14341023',\n            'https://i.gkd.li/i/15334565',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '好友动态详情页广告',\n          fastQuery: true,\n          activityIds: [\n            'com.qzone.reborn.base.QZoneTransparentShellActivity',\n            'com.qzone.reborn.base.QZoneShellActivity',\n          ],\n          matches:\n            '@[desc=\"关闭广告\"][visibleToUser=true] <4 RelativeLayout <2 LinearLayout <2 LinearLayout < FrameLayout <n RecyclerView < FrameLayout - FrameLayout >2 [text=\"详情\"]',\n          exampleUrls: 'https://e.gkd.li/b78a3e44-3bd9-445d-9199-e989269c2be3',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17009847',\n            'https://i.gkd.li/i/17815694',\n            'https://i.gkd.li/i/17827969',\n          ],\n        },\n        {\n          key: 1,\n          name: '推荐你试试这些玩法',\n          activityIds:\n            'com.qzone.reborn.feedx.activity.QZoneFriendFeedXActivity',\n          fastQuery: true,\n          matches: '@[desc=\"关闭\"] - [text=\"推荐你试试这些玩法\"]',\n          exampleUrls: 'https://e.gkd.li/6cf71a22-0e21-4877-86a7-69d84353ad5a',\n          snapshotUrls: 'https://i.gkd.li/i/18236745',\n        },\n        // 消息列表页面顶部广告\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.activity.SplashActivity',\n          matches:\n            '@ImageView[desc=\"关闭\"][clickable=true][childCount=0] -2 [text$=\"试用超级会员\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23837678',\n        },\n        {\n          key: 3,\n          activityIds: 'com.tencent.mobileqq.activity.SplashActivity',\n          matches:\n            '@ImageView[desc=\"关闭\"][clickable=true] <n RelativeLayout - RelativeLayout >3 ImageView[desc=\"快捷入口\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24230528',\n        },\n        {\n          key: 4,\n          activityIds: 'com.tencent.mobileqq.activity.SplashActivity',\n          matches:\n            '@ImageView[width<100 && height<100][clickable=true] - TextView[text!=null] <n * + * >3 ImageView[desc=\"快捷入口\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25235782',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.qzone.reborn.feedpro.activity.QzoneFriendFeedProActivity',\n            '.guild.base.QPublicFragmentActivityForMainWebActivity',\n          ],\n          matches: '@[clickable=true] > [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21947672',\n            'https://i.gkd.li/i/24404962',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.activity.SplashActivity',\n          matches:\n            '@[desc=\"更多\"][clickable=true] - [desc=\"广告\"][visibleToUser=true] - LinearLayout > [text=\"今天\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24381585',\n        },\n        {\n          preKeys: [0, 1],\n          activityIds: [\n            'com.qzone.reborn.feedpro.activity.QzoneFriendFeedProActivity',\n            '.activity.SplashActivity',\n            '.guild.base.QPublicFragmentActivityForMainWebActivity',\n          ],\n          matches: '@[clickable=true] >(1,2) [text=\"关闭此条广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21947698',\n            'https://i.gkd.li/i/24381598',\n            'https://i.gkd.li/i/24406932',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-登录授权',\n      desc: '自动点击登录',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matchRoot: true,\n          actionMaximum: 3,\n          actionCd: 500,\n          activityIds: [\n            'com.tencent.biz.qrcode.activity.QRLoginAuthActivity',\n            'com.tencent.open.agent.PublicFragmentActivityForOpenSDK',\n            'com.tencent.open.agent.QuickLoginAuthorityActivity',\n          ],\n          matches: [\n            '[text=\"登录确认\" || text$=\"申请使用\"][visibleToUser=true]',\n            'Button[text=\"登录\" || text=\"同意\" || text=\"确认\"][clickable=true][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/20737721',\n            'https://i.gkd.li/i/20737651',\n            'https://i.gkd.li/i/20737675',\n            'https://i.gkd.li/i/20737673',\n            'https://i.gkd.li/i/22631619',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-自动勾选原图',\n      desc: '发送图片时自动勾选原图，可手动取消勾选',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.activity.SplashActivity',\n            'com.tencent.qqnt.qbasealbum.WinkHomeActivity',\n            '.activity.photo.album.NewPhotoListActivity',\n          ],\n          matches: '@CheckBox[checked=false] + [text=\"原图\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12705556', // 未勾选原图\n            'https://i.gkd.li/i/12705559', // 已勾选原图\n            'https://i.gkd.li/i/13295142',\n            'https://i.gkd.li/i/13476247',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-自动点击查看原图',\n      desc: '查看图片时自动点击原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tencent.richframework.gallery.QQGalleryActivity',\n          anyMatches: [\n            '[text^=\"查看原图\"][clickable=true][visibleToUser=true]',\n            '@[clickable=true] > [text^=\"查看原图\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14757735',\n            'https://i.gkd.li/i/24489364',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '开屏广告-QQ小程序开屏广告',\n      desc: '点击右下角跳过',\n      fastQuery: true,\n      actionMaximum: 1,\n      priorityTime: 10000,\n      rules: [\n        {\n          activityIds: [\n            '.mini.appbrand.ui.AppBrandUI',\n            '.activity.miniaio.MiniChatActivity',\n          ],\n          matches: [\n            '[text=\"广告\"][visibleToUser=true]',\n            '[text=\"跳过\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12877215',\n            'https://i.gkd.li/i/12919195',\n            'https://i.gkd.li/i/15130235',\n          ],\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.activity.SplashActivity',\n            '.upgrade.ui.dialog.UpgradeActivity',\n            '.upgrade.activity.UpgradeActivity',\n          ],\n          matches:\n            '@[desc=\"关闭\"] <2 * >2 Button[text^=\"立即\" || text=\"马上升级\"][text.length=4]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13386719',\n            'https://i.gkd.li/i/13526551',\n            'https://i.gkd.li/i/22455760',\n            'https://i.gkd.li/i/23393647',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.upgrade.activity.UpgradeActivity',\n          matches: ['[text=\"立即升级\"]', '[text=\"稍后处理\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/14724108',\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '更新提示-消息页面-顶部',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.activity.SplashActivity',\n          matches:\n            '@ImageView[clickable=true][text=null][visibleToUser=true] - [text*=\"版本更新\" || text=\"点击下载\" || text=\"立即安装\" || text=\"点击更新\"][text.length<15]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13255493',\n            'https://i.gkd.li/i/13843140',\n            'https://i.gkd.li/i/14138340',\n            'https://i.gkd.li/i/13931212',\n            'https://i.gkd.li/i/16323755',\n            'https://i.gkd.li/i/17529150',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/17920550',\n        },\n      ],\n    },\n    {\n      key: 24,\n      name: '局部广告-聊天页面广告',\n      rules: [\n        {\n          key: 1,\n          name: '关键词广告',\n          fastQuery: true,\n          activityIds: [\n            '.profilecard.activity.FriendProfileCardActivity',\n            '.activity.ChatActivity',\n            '.activity.SplashActivity',\n          ],\n          matches:\n            'FrameLayout[childCount=2] >2 FrameLayout[childCount=2] >3 FrameLayout[childCount=2] > [text=\"跳过\" || text=\"关闭\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/4cf5bc02-d2c3-4ca4-833e-522a194e3131',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14183188',\n            'https://i.gkd.li/i/16549500',\n            'https://i.gkd.li/i/16555184',\n          ],\n        },\n      ],\n    },\n    {\n      key: 27,\n      name: '功能类-自动领取群聊红包',\n      desc: '自己发的红包、专属红包、口令红包、私聊红包不领',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.activity.SplashActivity',\n          matches:\n            'ImageView[childCount=0] <<(1,2) RelativeLayout < FrameLayout +2 LinearLayout >3 @ViewGroup[clickable=true][!(getChild(childCount.minus(1)).text^=\"已\")] + TextView[text=\"拼手气红包\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7a933a7f-dc5a-4eb7-8a6f-fe3cc4e8fb5e',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14221309',\n            'https://i.gkd.li/i/18574530',\n            'https://i.gkd.li/i/18725007',\n            'https://i.gkd.li/i/24551887',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'cooperation.qwallet.plugin.QWalletToolFragmentActivity',\n            'com.tencent.biz.TenpayActivity',\n          ],\n          anyMatches: [\n            '@[desc=\"关闭\"][clickable=true] < RelativeLayout -2 ViewGroup >4 [text^=\"来晚一步\"][visibleToUser=true]',\n            '[desc=\"拆红包\"][visibleToUser=true]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/61006833-9806-45b2-b3a1-55b9b248958f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14221242',\n            'https://i.gkd.li/i/18724880',\n            'https://i.gkd.li/i/24551748',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            'cooperation.qwallet.plugin.QWalletToolFragmentActivity',\n            'com.tencent.biz.TenpayActivity',\n          ],\n          matches: '@[desc=\"返回\"] +n [text=\"红包记录\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b90e6a69-ac57-41a5-bd2c-c500b92a58ba',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14221279',\n            'https://i.gkd.li/i/24551886',\n          ],\n        },\n      ],\n    },\n    {\n      key: 29,\n      name: '功能类-申请入群后自动点击右上角关闭',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.QQBrowserActivity',\n          matches: [\n            'TextView[text=\"入群申请中\"][visibleToUser=true]',\n            'TextView[text=\"关闭\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/14235163',\n        },\n      ],\n    },\n    {\n      key: 31,\n      name: '功能类-授权登录时关闭获取QQ好友关系',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.tencent.open.agent.PublicFragmentActivityForOpenSDK',\n          matches:\n            '@CompoundButton[checked=true] - RelativeLayout > [text=\"你的QQ好友关系\"]',\n          exampleUrls: 'https://e.gkd.li/4d69a243-6a57-47ca-bc25-0a5353d80179',\n          snapshotUrls: 'https://i.gkd.li/i/16929347',\n        },\n      ],\n    },\n    {\n      key: 32,\n      name: '其他-联系人页面-顶部可能认识的人推荐',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.SplashActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] -2 [text=\"开启推荐，发现可能认识的人。\"]',\n          exampleUrls: 'https://e.gkd.li/7922ab73-cc99-4559-b18c-5ab54dd9633a',\n          snapshotUrls: 'https://i.gkd.li/i/18237415',\n        },\n      ],\n    },\n    {\n      key: 33,\n      name: '功能类-自动解锁 Windows QQ',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds:\n            'com.tencent.biz.qrcode.activity.UnlockPCQuickVerifyActivity',\n          matches: '[text=\"解锁\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15360265',\n        },\n      ],\n    },\n    {\n      key: 34,\n      name: '功能类-关闭体验模式提醒',\n      desc: '点击[我知道了]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.QPublicFragmentActivity',\n          matches: [\n            '[text^=\"当前处于\"][text*=\"体验模式\"][visibleToUser=true]',\n            '[text=\"我知道了\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24561058',\n        },\n      ],\n    },\n    {\n      key: 35,\n      name: '功能类-自动跳转第三方应用',\n      desc: '点击[允许]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.QQBrowserActivity',\n          matches: [\n            '[text$=\"打开其他应用\"]',\n            '[text=\"允许\"][clickable=true][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/25142977',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.mtt.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.mtt',\n  name: 'QQ浏览器',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          matches: '@LinearLayout[clickable=true] > TextView[text=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12472630',\n        },\n        {\n          key: 1,\n          matches:\n            '@View[clickable=true][childCount=0] +2 * >3 [text^=\"向上滑动\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14819586',\n            'https://i.gkd.li/i/23743205',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '分段广告-小说阅读页面-卡片广告',\n      activityIds: 'com.tencent.mtt.MainActivity',\n      rules: [\n        {\n          actionCd: 3000,\n          key: 0,\n          name: '点击广告按钮',\n          excludeMatches: '[desc=\"屏蔽此广告\"||desc=\"不感兴趣\"]',\n          matches:\n            '@ViewGroup[clickable=true][visibleToUser=true] > ViewGroup > [desc=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12907446',\n            'https://i.gkd.li/i/12907445', // 限定 visibleToUser=true，防止在节点不可见时触发规则\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击[屏蔽此广告]/[直接关闭]',\n          forcedTime: 10000,\n          matches:\n            '@ViewGroup[childCount=1 || childCount=3] > [desc=\"屏蔽此广告\" || desc=\"直接关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12907654',\n            'https://i.gkd.li/i/12907651',\n            'https://i.gkd.li/i/12907655',\n            'https://i.gkd.li/i/12907653',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '分段广告-小说阅读页面-视频广告',\n      activityIds: 'com.qq.e.tg.RewardvideoPortraitADActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"腾讯广告\"] >n [id^=\"button_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12909822',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[id=\"com.tencent.mtt:id/reward_dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12908955',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.news.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.news',\n  name: '腾讯新闻',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-信息流广告',\n      desc: '自动点击\"更多\"->\"不感兴趣\"',\n      activityIds: 'com.tencent.news.activity.SplashActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击\"更多\"按钮',\n          matches:\n            'FrameLayout[id=\"android:id/content\"][childCount=1] >n [text=\"广告\"] +n [id=\"com.tencent.news:id/dislike_streamAd_more\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12755834',\n            'https://i.gkd.li/i/12755852', // 使用 FrameLayout[id=\"android:id/content\"][childCount=1] 进行限定，防止点击\"更多\"按钮后继续触发规则\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击\"不感兴趣\"按钮',\n          matches:\n            '[id=\"com.tencent.news:id/dislike_reason_view\"] >n [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755852',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-广告、活动弹窗',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.tencent.news.activity.SplashActivity',\n          matches: '@[text=\"关闭\"] + [text=\"查看活动详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755872',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.SplashActivity',\n          matches: '[text=\"开启通知\"] + [text=\"先不了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755824',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qqlive.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qqlive',\n  name: '腾讯视频',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          matches: 'TextView[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/14049316',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ona.update.trunk.client.TrunkUpdateActivity',\n          matches: '[text=\"暂不升级\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/19666787',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-卡片广告',\n      activityIds: [\n        '.ona.activity.SplashHomeActivity',\n        '.ona.activity.VideoDetailActivity',\n        '.ona.activity.origin.OriginIconHomeActivity',\n        '.kmm.VideoDetailKmmActivityBk',\n        '.ona.activity.HomeActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] - FrameLayout >4 ViewGroup > [vid=\"player_sub_title_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d0fb9740-defa-437a-882e-b3c5d6a2d231',\n          snapshotUrls: 'https://i.gkd.li/i/19666783',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '[desc=\"the ad tag\"] < @FrameLayout[clickable=true] < RelativeLayout < RelativeLayout +(1,2) * >(4,5) [text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\"][text.length<6][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19667010',\n            'https://i.gkd.li/i/19667126',\n            'https://i.gkd.li/i/19667028',\n            'https://i.gkd.li/i/19667404',\n            'https://i.gkd.li/i/19667413',\n            'https://i.gkd.li/i/19667494',\n            'https://i.gkd.li/i/19667496',\n            'https://i.gkd.li/i/19667620',\n            'https://i.gkd.li/i/19667647',\n            'https://i.gkd.li/i/21139117',\n            'https://i.gkd.li/i/21152861',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@ImageView[text=null][desc=null][childCount=0][clickable=true][visibleToUser=true][width<250 && height<150] - * >(1,2) [text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19666328',\n            'https://i.gkd.li/i/19693394',\n          ],\n        },\n        {\n          key: 3,\n          matches:\n            '[desc=\"poster_inner_round_cell\"] >5 RelativeLayout[childCount=5] > ImageView[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)][width<180 && height<80]',\n          exampleUrls: 'https://e.gkd.li/18c89ee9-fcd5-43eb-805a-ac9e223e3cdc',\n          snapshotUrls: 'https://i.gkd.li/i/21139064',\n        },\n        {\n          key: 4,\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true][width<60 && height<60] -(4,5) [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/1d81db1b-a722-4800-b6b7-4e5edb470984',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21139431',\n            'https://i.gkd.li/i/21152859',\n          ],\n        },\n        {\n          key: 5,\n          matches:\n            'View[childCount=0][width<180 && height<80] < @View[clickable=true][childCount=1][visibleToUser=true] +2 [text*=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/21152960',\n        },\n        {\n          key: 6,\n          matches:\n            'DetachableComposeView >2 ScrollView > View[childCount=4][visibleToUser=true] > View + TextView[childCount=1][text!=null][getChild(0).width<120][getChild(0).height<80] + View[childCount=1][getChild(0).text!=null] + View[clickable=true][childCount=0]',\n          exampleUrls: 'https://e.gkd.li/e4e6aca1-e7cb-4346-980b-638f26f61864',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21379340',\n            'https://i.gkd.li/i/21410460',\n            'https://i.gkd.li/i/21410716',\n          ],\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] <(1,2,3) View[checkable=true] <<4 [name*=\"KMMChannelNormalFragment\"] < FrameLayout <(2,3,4) ViewPager <<4 FrameLayout <(1,2) FrameLayout <(2,3,5) [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23431044',\n            'https://i.gkd.li/i/24339351',\n            'https://i.gkd.li/i/24588850',\n            'https://i.gkd.li/i/24693451',\n            'https://i.gkd.li/i/24693465',\n          ],\n        },\n        {\n          key: 8,\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true][width<250 && height<150] <n RelativeLayout < RelativeLayout < RecyclerView < RelativeLayout < RelativeLayout < LinearLayout[desc=\"poster_inner_round_cell\"] < RecyclerView <2 ViewGroup <2 FrameLayout <2 ScrollView <(2,3) RelativeLayout < ViewPager < FrameLayout < FrameLayout < FrameLayout < FrameLayout <(1,2) FrameLayout <2 [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23625987',\n            'https://i.gkd.li/i/23625990',\n            'https://i.gkd.li/i/24077457',\n          ],\n        },\n        {\n          key: 9,\n          matches:\n            'DetachableComposeView >2 ScrollView > View[childCount=1][getChild(0).text.length>0] + View[clickable=true][childCount=0][visibleToUser=true][width=height]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23599723',\n            'https://i.gkd.li/i/23625826',\n          ],\n        },\n        {\n          key: 10,\n          matches:\n            '@View[clickable=true][childCount=0][width<90 && height<90] <n View + [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24715171',\n        },\n        {\n          preKeys: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10],\n          key: 50,\n          fastQuery: true,\n          anyMatches: [\n            '[text=\"直接关闭\"][visibleToUser=true]',\n            '@View[clickable=true] > [visibleToUser=true][text=\"直接关闭\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/19667198',\n            'https://i.gkd.li/i/19667244',\n            'https://i.gkd.li/i/21139034',\n            'https://i.gkd.li/i/24715184', // 不能快速查询\n          ],\n        },\n        {\n          preKeys: [50],\n          fastQuery: true,\n          anyMatches: [\n            '[text=\"确认\"][visibleToUser=true]',\n            '@View[clickable=true] > [visibleToUser=true][text=\"确认\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/19667102',\n            'https://i.gkd.li/i/19666759',\n            'https://i.gkd.li/i/21152903',\n            'https://i.gkd.li/i/24715184', // 不能快速查询\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-视频播放时的广告',\n      desc: '自动点击 跳过/关闭广告',\n      activityIds: [\n        '.ona.activity.VideoDetailActivity',\n        '.kmm.VideoDetailKmmActivityBk',\n      ],\n      rules: [\n        {\n          key: 2,\n          name: '全屏广告2',\n          fastQuery: true,\n          matches:\n            '[text$=\"关闭广告\" || text=\"关闭VIP热剧推荐\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13526547',\n            'https://i.gkd.li/i/20691266',\n            'https://i.gkd.li/i/21152927',\n          ],\n        },\n        {\n          key: 3,\n          name: '居中广告-1',\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][childCount=0][width<150&&height<150] - * >(3,4) [text^=\"摇动或点击\" || text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18476380',\n            'https://i.gkd.li/i/18476384',\n            'https://i.gkd.li/i/19667827',\n          ],\n        },\n        {\n          key: 4,\n          name: '居中广告-2',\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][childCount=0] +2 [text^=\"摇动或点击\" || text*=\"应用\" || text*=\"立即\" || text*=\"下载\" || text*=\"了解\" || text*=\"查看\" || text*=\"详情\" || text=\"去微信看看\" || text*=\"小程序\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4bf0ff94-239d-4b43-900f-a375b44922e0',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13946107',\n            'https://i.gkd.li/i/14318385',\n            'https://i.gkd.li/i/18476383',\n            'https://i.gkd.li/i/20038310',\n            'https://i.gkd.li/i/24689566',\n          ],\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          matches:\n            '@View[clickable=true][childCount=0][width<100 && height<100] <8 View < DetachableComposeView < FrameLayout <2 [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/b0f4982a-ac12-481c-bccb-f8b7a8b14c46',\n          snapshotUrls: 'https://i.gkd.li/i/21175698',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.tencent.qqlive.redpacket.rain.OpenRedPacketActivity',\n          matches:\n            '@ImageView[clickable=true] < ViewGroup[childCount=5] < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/05606ba5-1a89-470c-bcca-bd52561a634d',\n          snapshotUrls: 'https://i.gkd.li/i/13842643',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqlive.ona.activity.SplashHomeActivity',\n          matches: '@RelativeLayout[clickable=true] + * >3 [text=\"立即预约\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c8131a06-837a-4c42-9a70-9e8a7fe21334',\n          snapshotUrls: 'https://i.gkd.li/i/14567294',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.ona.activity.SplashHomeActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] -3 LinearLayout >2 [text=\"立即免费领取\"]',\n          exampleUrls: 'https://e.gkd.li/8b128ebc-ce9c-4345-8094-769f9afa8cd6',\n          snapshotUrls: 'https://i.gkd.li/i/17088095',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.ona.activity.SplashHomeActivity',\n          matches: '[text=\"暂不需要，稍后领取\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3256ed8e-752c-426d-9d64-26c9fdea9b09',\n          snapshotUrls: 'https://i.gkd.li/i/17542869',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.ona.activity.VideoDetailActivity',\n          matches: '[text=\"放弃权益\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/37d3d077-1d3b-4b4d-87c2-4e0fa00d423e',\n          snapshotUrls: 'https://i.gkd.li/i/19666924',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.ona.activity.SplashHomeActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true][width<200 && height<200] <2 RelativeLayout < RelativeLayout < RelativeLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/afb17212-1dcb-4d07-a9ce-b4f775ccd6fc',\n          snapshotUrls: 'https://i.gkd.li/i/19666714',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: '.ona.activity.SplashHomeActivity',\n          matches:\n            'TextView[text^=\"暂不需要\"] < @View[clickable=true] <6 View < ComposeView < FrameLayout <2 FrameLayout < FrameLayout <2 FrameLayout <2 [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/4f48767f-9cfa-4507-89ab-eb24f483d05e',\n          snapshotUrls: 'https://i.gkd.li/i/20148077',\n        },\n        {\n          key: 7,\n          activityIds: '.ona.activity.origin.OriginIconHomeActivity',\n          matches:\n            '@TextView[text=\"x\"][clickable=true][childCount=0] + View >2 [text^=\"下载并领取\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/3a524370-1dbc-4017-a357-6728f809bd9c',\n          snapshotUrls: 'https://i.gkd.li/i/23763930',\n        },\n      ],\n    },\n    {\n      key: 20,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ona.activity.SplashHomeActivity',\n          matches: '@[clickable=true] - [text*=\"开启通知\"]',\n          exampleUrls: 'https://e.gkd.li/d16d04cb-8838-455c-9bc5-acebc936637b',\n          snapshotUrls: 'https://i.gkd.li/i/20368590',\n        },\n      ],\n    },\n    {\n      key: 21,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '投屏页面广告',\n          fastQuery: true,\n          activityIds: 'com.tencent.qqlive.ona.activity.VideoDetailActivity',\n          matches: '@[clickable=true] - [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1b7518c9-4ca7-4905-8929-6f0130abf19f',\n          snapshotUrls: 'https://i.gkd.li/i/14358913',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            '.ona.activity.SplashHomeActivity',\n            '.ona.activity.origin.OriginIconHomeActivity',\n          ],\n          matches:\n            '@[name$=\"ImageView\" || name$=\"FrameLayout\" ][childCount<2][clickable=true][visibleToUser=true][width<250 && height<150] <3 RelativeLayout < FrameLayout <2 FrameLayout < FrameLayout <2 ViewGroup < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout <n [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/0ea465ad-e4e4-4af5-92a4-2d71e44845f4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19667104',\n            'https://i.gkd.li/i/21327634',\n            'https://i.gkd.li/i/23121852',\n            'https://i.gkd.li/i/23764004',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: [\n            '.ona.activity.VideoDetailActivity',\n            '.kmm.VideoDetailKmmActivityBk',\n          ],\n          matches:\n            'RelativeLayout > ComposeView > View > View[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)]',\n          exampleUrls: 'https://e.gkd.li/23606b5d-a8e9-4848-9b5a-059e7ecb08af',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22870972',\n            'https://i.gkd.li/i/22894605',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.ona.activity.origin.OriginIconHomeActivity',\n          matches: '[text=\"关闭广告\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/17ea1473-f4b9-4622-b6ed-60486d6208f1',\n          snapshotUrls: 'https://i.gkd.li/i/23619869',\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.ona.activity.SplashHomeActivity',\n            '.ona.activity.VideoDetailActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true] + [text^=\"免费看\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5f6447c1-39f6-4711-a907-fdf36f502ec6',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17542913',\n            'https://i.gkd.li/i/19667010',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.ona.activity.VideoDetailActivity',\n          matches:\n            '@ImageView[id=null][text=null][desc=null][clickable=true][visibleToUser=true][width<150&&height<150] <2 FrameLayout[desc=\"float_widget_activity\"] < FrameLayout <3 FrameLayout <3 [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/8cac3233-7ead-4f5e-9126-51a195788276',\n          snapshotUrls: 'https://i.gkd.li/i/19667028',\n        },\n        {\n          key: 2,\n          activityIds: '.ona.activity.origin.OriginIconHomeActivity',\n          matches:\n            '@RelativeLayout[clickable=true][childCount=2] < [desc=\"float_attent_banner_float_view_id\"]',\n          exampleUrls: 'https://e.gkd.li/ad4ea4f1-22e7-4e9b-b194-8cdddda5c069',\n          snapshotUrls: 'https://i.gkd.li/i/21139028',\n        },\n      ],\n    },\n    {\n      key: 23,\n      name: '其他-视频播放时的评价悬浮窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          actionDelay: 1000,\n          fastQuery: true,\n          activityIds: '.ona.activity.VideoDetailActivity',\n          matches:\n            '@View[clickable=true] + RecyclerView[childCount=5] > ViewGroup[childCount=2] > TextView[text=\"不推荐\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b10125fa-5b1f-4a64-b258-392c57f4a1d8',\n          snapshotUrls: 'https://i.gkd.li/i/20271517',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qqmusic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qqmusic',\n  name: 'QQ音乐',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bde5c1a5-3259-45d3-a6b8-8482f7818c6f',\n          snapshotUrls: 'https://i.gkd.li/i/17056504',\n        },\n        {\n          key: 1,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6537da92-f5f6-4ee8-9219-5f39f7c5e8a2',\n          snapshotUrls: 'https://i.gkd.li/i/17068758',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.tencent.qqmusic.business.playernew.view.NewPlayerActivity',\n          matches:\n            '[text^=\"广告\"] + [text=\"跳过\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13985169', // 播放界面\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',\n          matches:\n            '@[desc=\"关闭\"][clickable=true] -(1,2) [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13206534', //歌单页\n            'https://i.gkd.li/i/13797001', //我的页\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',\n          matches:\n            '@ImageView - ImageView - RelativeLayout >n [text=\"听歌入会赢绿钻\"||text=\"摇动点击广告跳转\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13206982',\n            'https://i.gkd.li/i/13218134',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',\n          matches:\n            '@[clickable=true][visibleToUser=true] > [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15041019',\n            'https://i.gkd.li/i/18227243',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/18219557',\n        },\n        {\n          key: 5,\n          activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',\n          matches:\n            'RecyclerView > LinearLayout[childCount=3] >5 ViewGroup[childCount=3] > @ViewGroup[clickable=true] >2 ImageView[text=null][desc=null][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15756931',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: '.activity.AppStarterActivity',\n          matches:\n            '@ImageView[clickable=true] - [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/17450309',\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          activityIds: '.activity.AppStarterActivity',\n          matches: '[text=\"广告 | 关闭\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/18227204',\n        },\n        {\n          key: 8,\n          matchTime: 10000,\n          activityIds: '.activity.AppStarterActivity',\n          matches:\n            'RecyclerView > FrameLayout[desc!=null] >3 LinearLayout[id!=null] > ViewPager > FrameLayout[visibleToUser=true] > ImageView[childCount=0][clickable=true][width<150 && height<100][index=parent.childCount.minus(1)]',\n          exampleUrls: 'https://e.gkd.li/c7b25408-26ed-4010-8506-88f614dccd26',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23623581',\n            'https://i.gkd.li/i/23623677',\n          ],\n        },\n        {\n          key: 9,\n          activityIds: '.activity.AppStarterActivity',\n          matches:\n            'ImageView[width<80 && height<80] <<2 @ViewGroup[clickable=true] - [text^=\"hi~\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23930716',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.activity.TranslucentWebViewActivity',\n            '.activity.AppStarterActivity',\n            '.business.playernew.view.NewPlayerActivity',\n          ],\n          matches: '[desc=\"关闭\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13115121',\n            'https://i.gkd.li/i/14549936',\n            'https://i.gkd.li/i/14798904',\n            'https://i.gkd.li/i/15209764',\n            'https://i.gkd.li/i/15261116',\n            'https://i.gkd.li/i/17459008',\n            'https://i.gkd.li/i/23930628',\n            'https://i.gkd.li/i/23930853',\n          ],\n        },\n        {\n          key: 1,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: [\n            '.activity.AppStarterActivity',\n            'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',\n          ],\n          matches: '[desc^=\"关闭弹窗\"][clickable=true][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/47107dd3-b19a-4486-a0d1-6d9aa62ee722',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17057551',\n            'https://i.gkd.li/i/23495699',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          activityIds: [\n            '.activity.AppStarterActivity',\n            '.business.playernew.view.NewPlayerActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true][width<130 && height<130] <n FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/881cddd2-e4ec-472e-8bf8-00f26f61cbc4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18439138',\n            'https://i.gkd.li/i/22924866',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.activity.AppStarterActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true][width<120 && height<120] < FrameLayout < FrameLayout < FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/20745872',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.activity.AppStarterActivity',\n          matches:\n            '@ViewGroup[childCount=0][clickable=true][visibleToUser=true][width<150 && height<150] < ViewGroup[childCount=1] < ViewGroup < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/f1c596e5-36b6-485b-aa55-a235d57bddf9',\n          snapshotUrls: 'https://i.gkd.li/i/22699207',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.activity.AppStarterActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true][width<150 && height<150] < FrameLayout <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/eb920de7-7f15-4398-b9a9-99ece0ab4ed6',\n          snapshotUrls: 'https://i.gkd.li/i/22699223',\n        },\n        {\n          key: 6,\n          name: '免流弹窗',\n          fastQuery: true,\n          activityIds: [\n            'com.tencent.qqmusic.activity.AppStarterActivity',\n            'com.tencent.qqmusic.business.playernew.view.NewPlayerActivity',\n          ],\n          matches: '[text=\"流量够用\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13197868',\n            'https://i.gkd.li/i/15285647',\n          ],\n        },\n        {\n          key: 7,\n          name: '看广告免费听歌弹窗',\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiccommon.hybrid.HybridViewActivity',\n          matches:\n            '@ViewGroup[desc=\"关闭按钮\"] - [desc^=\"看广告\"] <2 ViewGroup < ViewGroup < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806773',\n        },\n        {\n          key: 8,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusic.activity.AppStarterActivity',\n          matches:\n            '@ViewGroup[childCount=0][clickable=true] <2 ViewGroup[childCount=2] < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13806782',\n        },\n        {\n          key: 9,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.activity.AppStarterActivity',\n          matches: '[desc$=\"不再提示\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e3d904e1-dfe5-4d12-b8c8-b1eead8459c9',\n          snapshotUrls: 'https://i.gkd.li/i/18428240',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示-内测体验弹窗',\n      desc: '点击[不再提醒]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.AppStarterActivity',\n          matches: '[text=\"抢先体验\"] -2 [text=\"不再提醒\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13178485',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '评价提示-好评弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.AppStarterActivity',\n          matches: '@[vid=\"close_btn\"] - * > [text*=\"好评\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14881903',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '分段广告-评论区广告',\n      desc: '点击右下角展开-点击[不感兴趣]',\n      activityIds:\n        'com.tencent.qqmusic.activity.base.FragmentActivityWithMinibar',\n      rules: [\n        {\n          key: 0,\n          matches:\n            'RecyclerView > ViewGroup > ViewGroup[childCount=6] > @ViewGroup[clickable=true][childCount=1] > ViewGroup > View',\n          snapshotUrls: 'https://i.gkd.li/i/15010210',\n        },\n        {\n          preKeys: [0],\n          key: 99,\n          fastQuery: true,\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15010226',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '其他-播放页[猜你也会喜欢]推荐',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.business.playernew.view.NewPlayerActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true] -2 [text=\"猜你也会喜欢\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/40846baf-4638-4740-970a-30924cbd9414',\n          snapshotUrls: 'https://i.gkd.li/i/18410610',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qqmusiccar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qqmusiccar',\n  name: 'QQ音乐车机版',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiccar.app.activity.AppStarterActivity',\n          matches: [\n            '[text$=\"版本升级\"]',\n            '[vid=\"dialog_button_close\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23792987',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qqmusiclite.universal.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qqmusiclite.universal',\n  name: '音乐',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.tencent.qqmusiclite.activity.MainActivity',\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2b50621d-8425-4b5f-aed7-aa767cf5eecf',\n          snapshotUrls: 'https://i.gkd.li/i/18699697',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.tencent.qqmusiclite.activity.player.MusicPlayerActivity',\n          matches: '[vid=\"ad_skip_text\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0b1ba9a0-03a9-421c-88f2-cc3bd8d6be3c',\n          snapshotUrls: 'https://i.gkd.li/i/18699710',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qqsports.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qqsports',\n  name: '腾讯体育',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          matches: 'TextView[text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/14032883',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qt.qtl.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qt.qtl',\n  name: '掌上英雄联盟',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/8e923c51-48e7-431c-abf8-e564761b772e',\n          snapshotUrls: 'https://i.gkd.li/i/16568456',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.tencent.qt.module_appupdate.soft_update.impl.SoftUpdateConfirmActivity',\n          matches: '[id=\"com.tencent.qt.qtl:id/btn_update_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13611286',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tencent.zone.main.MainZoneHomeActivity',\n          matches: '[vid=\"notice_close_pic\"]',\n          exampleUrls: 'https://e.gkd.li/d1747892-c416-4877-a706-fb3c16e5b049',\n          snapshotUrls: 'https://i.gkd.li/i/16581606',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.qt.sns.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.qt.sns',\n  name: '掌上穿越火线',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页活动弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[id=\"com.tencent.qt.sns:id/closebtn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13497978',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tencent.gamehelper.ui.main.MainActivity',\n          matches: [\n            '[text=\"版本更新\" || text=\"现在升级\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13713478',\n            'https://i.gkd.li/i/20851162',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.tim.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.tim',\n  name: 'TIM',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击查看原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.tencent.mobileqq.richmediabrowser.AIOGalleryActivity',\n            'com.tencent.richframework.gallery.QQGalleryActivity',\n          ],\n          matches: '[text^=\"查看原图\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/894c5e7b-aab1-452c-a2a7-67a605506c89',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15197486',\n            'https://i.gkd.li/i/17987327',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-发送图片时自动勾选[原图]',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.tencent.mobileqq.activity.SplashActivity',\n            'com.tencent.qqnt.qbasealbum.WinkHomeActivity',\n          ],\n          matches: '@[checked=false] + [text=\"原图\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/57b4e39f-ba48-4e57-a5de-3a461a583e60',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15209768',\n            'https://i.gkd.li/i/17987325',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.tmgp.kgame.ppcr.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.tmgp.kgame.ppcr',\n  name: '全民泡泡超人',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.tencent.ysdkcore:id/com_tencent_ysdk_icon_h5_xx\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13276317',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.wemeet.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.wemeet.app',\n  name: '腾讯会议',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.StartupActivity',\n          matches: '[text^=\"腾讯会议新版本\"] +3 * > [text=\"下次安装\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14332625',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '评价提示-通话质量评价',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.tencent.wemeet.sdk.meeting.aftermeeting.AfterMeetingFeedbackMeetingExperienceActivity',\n          matches: [\n            '[text=\"通话品质如何\"]',\n            '[vid=\"closeBtn\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23786665',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.tencent.wemeet.sdk.meeting.premeeting.home.HomeActivity',\n          matches:\n            '@Button[clickable=true][childCount=1] > ImageView[childCount=0][width<80 && height<80] <<n [vid=\"operatingBannerContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23786670',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.tencent.wemeet.sdk.meeting.aftermeeting.AfterMeetingPictureActivity',\n          matches: '[vid=\"btnClose\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23787037',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.weread.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.weread',\n  name: '微信读书',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matchTime: 30000,\n          activityIds: [\n            '.module.bottomSheet.BottomSheetForFragment',\n            '.WeReadFragmentActivity',\n          ],\n          matches: '[id=\"com.tencent.weread:id/open_notification_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12642247',\n            'https://i.gkd.li/i/13233735',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.WeReadFragmentActivity',\n          matches:\n            '[text=\"开启推送通知\"] +3 [clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14190089',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tencent.wework.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tencent.wework',\n  name: '企业微信',\n  groups: [\n    {\n      // 节点id疑似随机生成,尽量不用id属性\n      key: 1,\n      name: '功能类-自动领红包',\n      desc: '自己发的红包不领',\n      rules: [\n        {\n          key: 0,\n          name: '点击别人发的红包',\n          fastQuery: true,\n          activityIds: [\n            '.msg.controller.ExternalContactMessageListActivity',\n            '.msg.controller.MessageListActivity',\n          ],\n          matches:\n            'RelativeLayout[childCount=2] > ImageView[childCount=0] + RelativeLayout >2 @RelativeLayout[clickable=true][childCount=4] > LinearLayout[index=1][getChild(0).childCount=1] + RelativeLayout[childCount=1] > TextView[text=\"红包\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14151095',\n            'https://i.gkd.li/i/24560890',\n            'https://i.gkd.li/i/24577241',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14151131', // 已领取的红包、自己的红包\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '开红包',\n          activityIds:\n            '.enterprise.redenvelopes.controller.RedEnvelopeCollectorActivity',\n          matches:\n            'RelativeLayout[childCount=3] > FrameLayout + RelativeLayout[childCount=3] + ImageView[clickable=true][childCount=0][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24560289',\n            'https://i.gkd.li/i/24588743',\n          ],\n        },\n        {\n          preKeys: [0, 1],\n          key: 2,\n          name: '从金额页面返回到聊天页面',\n          fastQuery: true,\n          action: 'back',\n          activityIds:\n            '.enterprise.redenvelopes.controller.RedEnvelopeDetailActivity',\n          matches: '[text=\"已存入绑定的微信零钱账户\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14151120',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-顶部卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.tencent.wework.launch.WwMainActivity',\n          matches:\n            'ImageView[clickable=true][childCount=0] < ViewFlipper[childCount=1] + @ImageView[clickable=true][visibleToUser=true][width<140 && height<140] <n RelativeLayout <<n RecyclerView[childCount>10] <n FrameLayout <n ViewGroup - RelativeLayout >4 [text=\"工作台\"]',\n          exampleUrls: 'https://e.gkd.li/e0c4aa4a-fd8b-4440-920b-f96eec60baa1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16977927',\n            'https://i.gkd.li/i/24099806',\n          ],\n        },\n        {\n          preKeys: [0],\n          fastQuery: true,\n          activityIds: 'com.tencent.wework.launch.WwMainActivity',\n          matches: '[text=\"关闭\"]',\n          exampleUrls: 'https://e.gkd.li/e4a71c0c-c0ce-4822-ae69-4a3330a28a84',\n          snapshotUrls: 'https://i.gkd.li/i/16977929',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-悬浮窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.tencent.wework.common.controller.DialogActivityUtil',\n          matches: ['[text^=\"请开启悬浮窗\"]', '[text=\"取消\"][clickable=true]'],\n          snapshotUrls: 'https://i.gkd.li/i/24230054',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.thestore.main.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.thestore.main',\n  name: '1号会员店',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '关闭弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.thestore.main.app.home.HomeActivity',\n          matches:\n            '@TextView[clickable=true][childCount=0] <2 RelativeLayout[childCount=2] < FrameLayout < [parent=null]',\n          snapshotUrls: 'https://i.gkd.li/i/13163686',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tianqi2345.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tianqi2345',\n  name: '2345天气王',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.biz2345.shell.activity.holder.CloudInterstitialActivity',\n          matches:\n            '@TextView[id=\"com.biz2345.adware:id/cloud_interstitial_close_tv\"][clickable=true][childCount=0] < RelativeLayout[childCount=2] < RelativeLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1535a559-f2cd-49c5-8c19-b2bc16709f55',\n          snapshotUrls: 'https://i.gkd.li/i/14391796',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tianqi2345.activity.NewMainActivity',\n          matches:\n            '@[id=\"com.biz2345.adware:id/native_express_close_iv\"] + LinearLayout > [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a2ce856a-78e8-4b81-bc1f-64a5db81913f',\n          snapshotUrls: 'https://i.gkd.li/i/14391799',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tima.carnet.m.main.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tima.carnet.m.main',\n  name: '钛马星',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-每日弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        'com.tima.carnet.m.main.lib.common.dialog.TimaLoadingDialog',\n        'com.tima.carnet.m.main.app.main.NoticeActivity',\n        'com.tima.carnet.m.main.app.main.MainActivity',\n        'com.tima.carnet.m.main.LaunchActivity',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"今天内不显示\"][checked=false]',\n          exampleUrls: 'https://e.gkd.li/66af6710-ec2e-472b-a589-cac40ac6ea6d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12654432',\n            'https://i.gkd.li/i/13507746',\n            'https://i.gkd.li/i/13508074',\n            'https://i.gkd.li/i/13508041',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '@ImageButton[clickable=true] - [text=\"今天内不显示\"]',\n          exampleUrls: 'https://e.gkd.li/66af6710-ec2e-472b-a589-cac40ac6ea6d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12654432',\n            'https://i.gkd.li/i/13507746',\n            'https://i.gkd.li/i/13508074',\n            'https://i.gkd.li/i/13508041',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-设备界面顶部广告',\n      activityIds: 'com.tima.carnet.m.main.app.main.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            '@Image[childCount=0][visibleToUser=true] < View[childCount=1] + View >2 [visibleToUser=true][text=\"广告\"] <<n [id=\"com.tima.carnet.m.main:id/fl_ad_banner\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13508030',\n            'https://i.gkd.li/i/13508115',\n          ],\n        },\n        {\n          key: 3,\n          preKeys: [1],\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13508102',\n        },\n        {\n          key: 4, //有时存在加载不出来的情况\n          preKeys: [1],\n          action: 'back',\n          matches:\n            'ListView[id=\"com.byted.pangle:id/tt_filer_words_lv\"][childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/13508072',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tingfeng.tool.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tingfeng.tool',\n  name: '囧次元',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.windmill.sdk.widget.InterstitialView',\n            'app.video.guoguo.MainActivity',\n          ],\n          matches:\n            '[vid=\"tobid_interstitial_skip_ll\" || vid=\"tobid_splash_skip_ll\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/64670315-c171-42f9-a55a-5bedf29f24c3',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21278557',\n            'https://i.gkd.li/i/21282765',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tipsoon.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tipsoon.android',\n  name: '简讯',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7ba2a5cd-12e8-4ac3-a867-8d0f81247d93',\n          snapshotUrls: 'https://i.gkd.li/i/14568317',\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.tipsoon.android.activity.MainActivity',\n          matches:\n            '[id=\"com.tipsoon.android:id/cardview\"] + [id=\"com.tipsoon.android:id/img_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13426997',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tmall.campus.and.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tmall.campus.and',\n  name: '天猫校园',\n  groups: [\n    {\n      key: 7,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.tmall.campus.and.main.MainActivity',\n            'com.tmall.campus.bizwebview.ui.CampusWebActivity',\n          ],\n          matches: '[vid=\"close_btn\" || vid=\"iv_close\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22399316',\n            'https://i.gkd.li/i/22425649',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.tmall.campus.scancode.activity.ToolsCaptureActivity',\n            'com.tmall.campus.bizwebview.ui.CampusWebActivity',\n          ],\n          matches: '[vid=\"iv_close_ad\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22558370',\n            'https://i.gkd.li/i/22871032',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-打开应用自动点击扫一扫',\n      desc: '仅开屏后触发一次',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tmall.campus.and.main.MainActivity',\n          matches: '[vid=\"iv_top_scan\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22871147',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.main.MainActivity',\n            'com.tmall.campus.launcher.SplashActivity',\n          ],\n          matches: ['[text=\"获取通知权限\"]', '[text=\"再想想\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23124558',\n            'https://i.gkd.li/i/23254348',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tmall.wireless.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tmall.wireless',\n  name: '手机天猫',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.splash.TMSplashActivity',\n            '.maintab.module.TMMainTabActivity',\n            '.webview.TMCommonWebViewActivity',\n            '.themis.container.TMThemisActivity',\n          ],\n          matches: '[id=\"com.tmall.wireless:id/update_button_cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13162603',\n            'https://i.gkd.li/i/13258201',\n            'https://i.gkd.li/i/13399536',\n            'https://i.gkd.li/i/19881137',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          activityIds: [\n            'com.tmall.wireless.maintab.module.TMMainTabActivity',\n            'com.tmall.wireless.turboweb.container.TurboWebViewActivity',\n            'com.tmall.wireless.webview.TMCommonWebViewActivity',\n          ],\n          matches:\n            'Image[id=null][clickable=false] < View + Image[id=null][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13222394',\n            'https://i.gkd.li/i/13222500',\n            'https://i.gkd.li/i/13222510',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.messagebox.activity.TMMsgboxMainActivity',\n          matches: 'View[text=\"开启系统通知\"] - View[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13258215',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tmri.app.main.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tmri.app.main',\n  name: '交管12123',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6bbf28ed-9e78-4006-9225-49c07954ee45',\n          snapshotUrls: 'https://i.gkd.li/i/25207240',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.tmri.app.ui.activity.main.MainTabHostNewActivity',\n            'com.tmri.app.ui.activity.main.TmriNewActivity',\n          ],\n          matches: 'ImageButton[id=\"com.tmri.app.main:id/btn_cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13315944',\n            'https://i.gkd.li/i/13779215',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-确认退出',\n      desc: '点击[确认]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.tmri.app.ui.activity.main.MainTabHostNewActivity',\n          matches: ['[text=\"是否确认退出?\"]', '[text=\"确认\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/15597285',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.tmri.app.ui.activity.main.MainTabHostNewActivity',\n          matches: ['[text=\"立即更新\"]', '[text=\"以后再说\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/15751656',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tnscreen.main.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tnscreen.main',\n  name: '多屏互动',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 2, // https://github.com/AIsouler/GKD_subscription/issues/694\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          excludeMatches: [\n            '[!(vid=\"welcome_ad_view_skip\")] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n            '@[desc=\"close_button\"] - [text=\"|\"][visibleToUser=true]',\n          ],\n          matches:\n            'LinearLayout[childCount>0] + LinearLayout[vid=\"welcome_ad_view_skip\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d14f7876-892f-4a25-aa1f-0f7500be52cb',\n          snapshotUrls: 'https://i.gkd.li/i/18368988',\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/18370963', // LinearLayout[childCount>0] 防止提前触发\n            'https://i.gkd.li/i/21383354',\n            'https://i.gkd.li/i/23921822',\n            'https://i.gkd.li/i/23922767',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '[!(vid=\"welcome_ad_view_skip\")] > [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/243c2920-9761-41c6-a142-9f6f53ab78fe',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21383354',\n            'https://i.gkd.li/i/23921822',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: '@[desc=\"close_button\"] - [text=\"|\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23922767',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',\n          exampleUrls: 'https://e.gkd.li/be4513a1-fdf8-4889-a65d-55e2e0664afc',\n          snapshotUrls: 'https://i.gkd.li/i/18371332',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.tcl.tcast.snapshot.view.ShotPicActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/93834d55-142f-4371-ae5b-db65b168db7f',\n          snapshotUrls: 'https://i.gkd.li/i/20123436',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tongcheng.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tongcheng.android',\n  name: '同程旅行',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.TongchengMainActivity',\n          matches: '[vid=\"iv_home_ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/25369e74-1527-4ca5-9f39-77930ee84d1e',\n          snapshotUrls: 'https://i.gkd.li/i/20921290',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.TongchengMainActivity',\n          matches: [\n            '[text=\"给个好评鼓励下吧\"][visibleToUser=true]',\n            '[vid=\"iv_close\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/60949e51-3d07-4eda-ab2d-9ff561d8b58c',\n          snapshotUrls: 'https://i.gkd.li/i/20921292',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tongtongsuo.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tongtongsuo.app',\n  name: '通通锁',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          actionDelay: 2000, // https://github.com/AIsouler/GKD_subscription/issues/680\n          activityIds:\n            'com.scaf.android.client.activity.DoorkeyControlPanelActivity',\n          matches:\n            'ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < @FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/09628cf0-3004-439f-9bfd-68a085b0bda6',\n          snapshotUrls: 'https://i.gkd.li/i/18296115',\n        },\n        {\n          key: 2,\n          actionDelay: 2000,\n          activityIds:\n            'com.scaf.android.client.activity.DoorkeyControlPanelActivity',\n          matches:\n            'ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < @FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/d4ce9699-27f6-4191-92fd-7cab78632299',\n          snapshotUrls: 'https://i.gkd.li/i/18309574',\n        },\n        {\n          key: 3,\n          actionDelay: 2000,\n          activityIds:\n            'com.scaf.android.client.activity.DoorkeyControlPanelActivity',\n          matches:\n            'ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < @FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/0d576ac2-9821-4e7e-b398-fef3427ad7c2',\n          snapshotUrls: 'https://i.gkd.li/i/18309593',\n        },\n        {\n          key: 4,\n          actionDelay: 2000,\n          activityIds:\n            'com.scaf.android.client.activity.DoorkeyControlPanelActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] < FrameLayout - FrameLayout >6 [text^=\"点击\"]',\n          exampleUrls: 'https://e.gkd.li/4e62c701-43cc-49a1-acd8-fb9604cad328',\n          snapshotUrls: 'https://i.gkd.li/i/18309739',\n        },\n        {\n          key: 5,\n          actionDelay: 2000,\n          activityIds:\n            'com.beizi.ad.internal.activity.BeiZiInterstitialActivity',\n          matches: '[vid=\"beizi_interstitial_ad_close_iv\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4a608829-51f8-439c-93b3-9e78cd036e0c',\n          snapshotUrls: 'https://i.gkd.li/i/18309693',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.topgether.sixfoot.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.topgether.sixfoot',\n  name: '六只脚',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'Pro.biz.home.ProMainActivity',\n          matches: '[vid=\"iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/fc4a468d-407f-4a70-add8-26487f35933f',\n          snapshotUrls: 'https://i.gkd.li/i/17265831',\n        },\n        {\n          key: 1,\n          activityIds: 'Pro.biz.record.RecordMainActivity',\n          matches:\n            '[id=\"android:id/content\"] >4 FrameLayout[childCount=2] > FrameLayout[childCount=3] > FrameLayout[childCount=1] > ImageView[childCount=0][text=null]',\n          exampleUrls: 'https://e.gkd.li/01fd3dff-c1e9-42b3-bdb1-05124a67504b',\n          snapshotUrls: 'https://i.gkd.li/i/17265832',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'Pro.biz.home.ProMainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null] < FrameLayout[childCount=1] - LinearLayout > [text=\"下载应用\" || text=\"立即申请\"]',\n          exampleUrls: 'https://e.gkd.li/32475c6e-888a-4048-b7ed-5b3bc3c1c580',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17268235',\n            'https://i.gkd.li/i/17303774',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tradingview.tradingviewapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tradingview.tradingviewapp',\n  name: 'TradingView',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.root.view.RootActivity',\n          matches: '@[clickable=true][text=\"关闭广告\"] <<n [vid=\"chart_wbv\"]',\n          exampleUrls: 'https://e.gkd.li/3798ab1b-2cd3-471e-8303-b8124746e9d8',\n          snapshotUrls: 'https://i.gkd.li/i/16725697',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.root.view.RootActivity',\n          matches: '[vid=\"friday_fl_layout\"] > [vid=\"friday_iv_close\"]',\n          exampleUrls: 'https://e.gkd.li/9cc35e84-1b27-4aa5-a74b-ace7cf42d943',\n          snapshotUrls: 'https://i.gkd.li/i/18222211',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tt.turbo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tt.turbo',\n  name: '甜糖',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '@[desc=\"取消\"] + [desc=\"更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14292907',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.tuying.kuimg.rjm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.tuying.kuimg.rjm',\n  name: '热剧猫',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.tuying.kuimg.rjm.MainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13166088',\n        },\n        {\n          key: 1,\n          activityIds: 'com.tuying.kuimg.rjm.MainActivity',\n          matches: ['[text=\"广告\"]', '@ViewGroup > [text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13166086',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.twitter.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.twitter.android',\n  name: 'X(推特)',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-主页信息流广告',\n      desc: '点击右上角关闭,点击我不喜欢',\n      actionCd: 3000, // https://github.com/gkd-kit/subscription/issues/832\n      fastQuery: true,\n      activityIds: [\n        'com.twitter.app.main.MainActivity',\n        'com.twitter.app.profiles.ProfileActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '视频广告-点击右上角关闭',\n          matches:\n            '@[vid=\"tweet_curation_action\"] <2 * + * >3 [text=\"视频将在广告后播放\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12798795',\n            'https://i.gkd.li/i/14782884',\n          ],\n        },\n        {\n          key: 1,\n          name: '推荐广告-点击右上角关闭',\n          matches: '@[vid=\"tweet_curation_action\"] <2 * + * > [text$=\"推荐\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12813235',\n            'https://i.gkd.li/i/14782897',\n            'https://i.gkd.li/i/17182889',\n          ],\n        },\n        {\n          key: 2,\n          matches:\n            '[vid=\"tweet_curation_action\"] - [vid=\"tweet_ad_badge_top_right\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/705dd827-ff04-4233-af38-60d92439e1f3',\n          snapshotUrls: 'https://i.gkd.li/i/24359526',\n        },\n        {\n          preKeys: [0, 1, 2],\n          key: 10,\n          name: '点击[我不喜欢这个广告]',\n          matches:\n            '@ViewGroup[clickable=true] > [text=\"我不喜欢这个广告\" || text^=\"屏蔽\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12798810',\n            'https://i.gkd.li/i/14782902',\n            'https://i.gkd.li/i/20239421',\n            'https://i.gkd.li/i/24359537',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-帖子详情页、搜索页信息流广告',\n      desc: '点击右上角关闭,点击屏蔽用户,确认屏蔽.点击[我不喜欢]会返回主页,因此点击[屏蔽]',\n      fastQuery: true,\n      activityIds: [\n        'com.twitter.tweetdetail.TweetDetailActivity',\n        'com.twitter.android.search.implementation.results.SearchActivity',\n      ],\n      actionCd: 3000,\n      rules: [\n        {\n          name: '点击右上角关闭-1',\n          key: 0,\n          matches:\n            '@[id=\"com.twitter.android:id/tweet_curation_action\"] +n [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text=\"推荐\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12825969',\n            'https://i.gkd.li/i/12847584',\n          ],\n        },\n        {\n          name: '点击右上角关闭-2',\n          key: 1,\n          matches:\n            '@[id=\"com.twitter.android:id/tweet_curation_action\"] <2 * + [id=\"com.twitter.android:id/tweet_auto_playable_content_parent\"] > [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text$=\"推荐\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12882676',\n            'https://i.gkd.li/i/12904603',\n          ],\n        },\n        {\n          name: '点击右上角关闭-英文',\n          key: 2,\n          matches:\n            '[id=\"com.twitter.android:id/tweet_ad_badge_top_right\"] + [id=\"com.twitter.android:id/tweet_curation_action\"]',\n          snapshotUrls: ['https://i.gkd.li/i/13680756'],\n        },\n        {\n          preKeys: [0, 1, 2],\n          key: 10,\n          name: '点击屏蔽',\n          matches:\n            '@ViewGroup > [id=\"com.twitter.android:id/action_sheet_item_title\"][text^=\"屏蔽\"||text^=\"屏蔽\"||text^=\"Block\"||text^=\"隐藏 @\"||text^=\"Hide @\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12828815',\n            'https://i.gkd.li/i/12847600',\n            'https://i.gkd.li/i/12904602',\n            'https://i.gkd.li/i/13680783',\n            'https://i.gkd.li/i/25089665',\n          ],\n        },\n        {\n          preKeys: [10],\n          key: 11,\n          matches:\n            '[text=\"取消\"||text^=\"Cancel\"] + [text=\"屏蔽\"||text^=\"Block\"||text=\"是的，我确定\"||text^=\"Yes\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12828832',\n            'https://i.gkd.li/i/12904601',\n            'https://i.gkd.li/i/13680798',\n            'https://i.gkd.li/i/25089666',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-用户资料页信息流广告',\n      desc: '点击右上角关闭,点击我不喜欢',\n      fastQuery: true,\n      activityIds: 'com.twitter.app.profiles.ProfileActivity',\n      actionCd: 3000,\n      rules: [\n        {\n          name: '点击右上角关闭-1',\n          key: 0,\n          matches:\n            '@[id=\"com.twitter.android:id/tweet_curation_action\"] +n [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text=\"推荐\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12825969',\n            'https://i.gkd.li/i/12847584',\n          ],\n        },\n        {\n          name: '点击右上角关闭-2',\n          key: 1,\n          matches:\n            '@[id=\"com.twitter.android:id/tweet_curation_action\"] <2 * + [id=\"com.twitter.android:id/tweet_auto_playable_content_parent\"] > [id=\"com.twitter.android:id/tweet_promoted_badge_bottom\"][text$=\"推荐\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12882676',\n            'https://i.gkd.li/i/12904603',\n          ],\n        },\n        {\n          preKeys: [0, 1],\n          key: 10,\n          name: '点击[我不喜欢这个广告]',\n          matches:\n            '@ViewGroup > [id=\"com.twitter.android:id/action_sheet_item_title\"][text=\"我不喜欢这个广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12798810',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '评价提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.twitter.app.main.MainActivity',\n          matches: '[id=\"com.twitter.android:id/app_rating_button_never\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13774150',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      desc: '点击\"Not now\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.twitter.app.main.MainActivity',\n          matches:\n            '@[clickable=true] > [visibleToUser=true][text=\"Not now\"] <<n [vid=\"half_cover_recycler_view_holder\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13930126',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-自动点击翻译',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.twitter.tweetdetail.TweetDetailActivity',\n          matches: '[vid=\"translation_link\"][text^=\"翻译\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/40ece44f-883f-429a-aa0c-17dac15a50e4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14189817',\n            'https://i.gkd.li/i/14615911',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-自动点击\"显示更多帖子\"',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.twitter.app.main.MainActivity',\n          matches: '@FrameLayout[clickable=true] > [text=\"显示更多帖子\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7efa8af7-90d3-42b4-bf5d-3d83775f175a',\n          snapshotUrls: 'https://i.gkd.li/i/14189847',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '其他-关闭[开启个性化广告]弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.twitter.app.main.MainActivity',\n          matches:\n            '[vid=\"secondary_button\"][clickable=true][getChild(0).getChild(0).getChild(0).text=\"保留更少相关广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25150279',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ukids.client.phone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ukids.client.phone',\n  name: '小小优趣',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ukids.client.phone.parent.ParentClientHomeActivity',\n          matches: '[id=\"com.ukids.client.phone:id/dialog_dismiss_btn_two\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13400238',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.umetrip.android.msky.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.umetrip.android.msky.app',\n  name: '航旅纵横',\n  groups: [\n    {\n      key: 10,\n      name: '其他-进入飞行模式-提示弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.umetrip.android.msky.homepage.activity.UmeHomeActivity',\n          matches:\n            '[id=\"com.umetrip.android.msky.app:id/imageView\"] + [id=\"com.umetrip.android.msky.app:id/iv_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12750185',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-首页右侧悬浮广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.umetrip.android.msky.homepage.activity.UmeHomeActivity',\n          matches:\n            '@[id=\"com.umetrip.android.msky.app:id/iv_close_envelope\"] + [id=\"com.umetrip.android.msky.app:id/media_view_envelope\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12783264',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true][width=height] < FrameLayout <2 FrameLayout <3 FrameLayout < [vid=\"operation_dialog_weex_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24706615',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.unionpay.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.unionpay',\n  name: '云闪付',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-支付完成界面卡片广告',\n      fastQuery: true,\n      activityIds: 'com.unionpay.activity.react.UPActivityReactNative',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"bannerBox\"] > @View[clickable=true] > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13070564',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"关闭广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13070974',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '局部广告-右侧悬浮广告',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          position: {\n            left: 'width * 0.8893',\n            top: 'width * 0.4607',\n          },\n          activityIds: 'com.unionpay.activity.UPActivityMain',\n          matches:\n            '@[vid=\"frog_float\"][visibleToUser=true] >2 [vid=\"close_view\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/0f4f6a7f-55ce-4f87-a4cb-97e9c7107359',\n          snapshotUrls: 'https://i.gkd.li/i/14586427',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-定位权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.activity.UPActivityMain',\n          matches: '[id=\"com.unionpay:id/view_locate_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13634882',\n        },\n        {\n          key: 1,\n          activityIds: ['.activity.UPActivityMain', '.base.UPDialog'],\n          matches: ['[text*=\"访问您的位置信息\"]', '[text=\"不允许\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12695773',\n            'https://i.gkd.li/i/14209001',\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.base.UPDialog',\n          matches:\n            '[text=\"开启消息通知\"] < * + [id=\"com.unionpay:id/view_alert_cancel\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12695736',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-天天签到-获得新勋章提示',\n      desc: '点击左上角返回',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.unionpay.cordova.UPActivityCordovaWeb',\n          matches:\n            'WebView[text=\"天天签到\"] TextView[text=\"炫耀一下\"] + TextView[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13440341',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '全屏广告-领取优惠弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.unionpay.cordova.UPActivityCordovaWeb',\n          matches:\n            '@View[clickable=true][text=\"关闭按钮\"] <<n [vid=\"view_content_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13848688',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.upupoo.apu.mobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.upupoo.apu.mobile',\n  name: 'UPUPOO动态壁纸',\n  groups: [\n    {\n      key: 1,\n      name: '青少年模式',\n      desc: '点击\"我知道了\"',\n      matchTime: 10000,\n      resetMatch: 'app',\n      actionMaximum: 1,\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"青少年模式\"] +3 [desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14052188',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.upxjwb.xrq.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.upxjwb.xrq',\n  name: '番喜视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] < * - View > [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23519200',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] +(1,2) View[childCount=1] > Image[childCount=0][text=\"\"][width<60 && height<60]',\n          exampleUrls: 'https://e.gkd.li/793d0e85-db69-4d31-bfd9-7ffbd518b962',\n          snapshotUrls: 'https://i.gkd.li/i/23905532',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.uroad.carclub.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.uroad.carclub',\n  name: 'ETC车宝',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.uroad.carclub.main.activity.MainActivity',\n          matches:\n            'View[childCount=4] > @TextView[index=2][clickable=true] <<n [vid=\"ad_container_fl\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13800067',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.uzero.baimiao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.uzero.baimiao',\n  name: '白描',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动点击截取全屏',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.screen.ScreenCaptureActivity',\n          matches: '[text=\"截取全屏\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23054772',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.v2ray.bizer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.v2ray.bizer',\n  name: '灯塔加速器',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          matches: '@[vid=\"close\"] - [text*=\"公告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6dde3a1f-0428-4110-918e-f4b5853d5c04',\n          snapshotUrls: 'https://i.gkd.li/i/23834355',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vehicles.activities.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vehicles.activities',\n  name: '车旺大卡',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '卡片弹窗',\n          fastQuery: true,\n          activityIds: [\n            'com.sinoiov.cwza.discovery.activity.SpyDetailFragmentActivity',\n            'com.vehicles.activities.activity.MainActivity',\n            'com.sinoiov.cwza.discovery.activity.TrackDetailActivity',\n          ],\n          matches: '[vid=\"iv_close\" || vid=\"iv_cancle\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13952578',\n            'https://i.gkd.li/i/13952509',\n            'https://i.gkd.li/i/13952532',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.sinoiov.cwza.discovery.activity.DrivingDynamicsActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\" || text=\"打开快应用\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13952519',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vgjump.jump.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vgjump.jump',\n  name: 'Jump',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 2,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.ui.my.favorite.FavoriteActivity',\n            '.ui.game.detail.GameDetailActivity',\n            '.ui.content.msg.MsgIndexActivity',\n          ],\n          matches: [\n            '[text=\"开启推送通知\"][visibleToUser=true]',\n            '[vid=\"ivClose\" || vid=\"tvClose\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ce574950-4233-477e-b0cc-a4b0d18df249',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17828834',\n            'https://i.gkd.li/i/17949205',\n            'https://i.gkd.li/i/18022146',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-信息流广告/卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.ui.game.detail.GameDetailActivity',\n            '.ui.content.detail.ContentDetailActivity',\n            '.ui.main.MainActivity',\n          ],\n          matches: '[vid=\"ivSDKClose\"][visibleToUser=true]',\n          exampleUrls: [\n            'https://e.gkd.li/388a915b-5b91-4a4a-8bd3-330b346b2864',\n            'https://e.gkd.li/d68c487b-ce63-4d9f-afc3-cc94b3490a33',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/17949888',\n            'https://i.gkd.li/i/17949885',\n            'https://i.gkd.li/i/18004837',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.videogo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.videogo',\n  name: '萤石云视频',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-主页广告',\n      fastQuery: true,\n      activityIds: 'com.videogo.main.MainTabActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[id=\"com.videogo:id/ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13255684',\n        },\n        {\n          preKeys: [0],\n          matches: '[id=\"com.videogo:id/ad_closead_nointerest\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13255697',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      activityIds: ['.main.MainTabActivity', '.login.LoadingActivity'],\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          action: 'back',\n          matches: 'TextView[text=\"了解并试用服务\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/15338834',\n        },\n        {\n          key: 1,\n          action: 'back',\n          matches: '[text=\"新机礼包专享\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/b9045305-ce34-43f7-ab86-b48a672281cb',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18843418',\n            'https://i.gkd.li/i/20139706',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.viva.note.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.viva.note',\n  name: '囧次元',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches: '[desc=\"不再显示\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12888361',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.sigmob.sdk.base.common.TransparentAdActivity',\n          matches: '[id=\"ad_area\"] [id=\"close_btn\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12888388',\n            'https://i.gkd.li/i/12888419',\n            'https://i.gkd.li/i/12888578',\n            'https://i.gkd.li/i/12888647',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            'TextView[text=\"反馈\"] + @ImageView[clickable=true] + TextView',\n          snapshotUrls: 'https://i.gkd.li/i/12888945',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] +n FrameLayout >(1,2) [text^=\"立即\" || text=\"查看详情\" || text=\"了解更多\" || text=\"去微信看看\" || text$=\"第三方应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\" || text=\"下载应用\" || text=\"打开快应用\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13213661',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.viva.time_todo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.viva.time_todo',\n  name: 'CliCli动漫',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'com.maoyun.guoguo.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13759356',\n        },\n        {\n          key: 1,\n          name: '百度广告',\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] - RelativeLayout >3 [text^=\"摇动手机\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13761232',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.viva.timeplan.p5.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.viva.timeplan.p5',\n  name: '烟花动漫',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true] - RelativeLayout > [text=\"反馈\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3bfe1e95-56ed-43f7-b40c-e523953e71f6',\n          snapshotUrls: 'https://i.gkd.li/i/14481496',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.viva.todo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.viva.todo',\n  name: '泰剧兔',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭/跳过',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.maoyun.guoguo.MainActivity',\n          matches:\n            '[text=\"反馈\"] + View[childCount=2] > [text$=\"跳过\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/e4490664-3a73-473f-9f4e-79da3cb53a68',\n          snapshotUrls: 'https://i.gkd.li/i/14370321',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] -4 View[index=0][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7802b75c-f75a-4375-9f10-26b822ccc4f1',\n          snapshotUrls: 'https://i.gkd.li/i/14370332',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] < View + View > [text$=\"跳过\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/541565b5-6f3e-412d-ad1c-731bab1ee2e8',\n          snapshotUrls: 'https://i.gkd.li/i/14406445',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vivo.browser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vivo.browser',\n  name: 'vivo浏览器',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-免流提示',\n      rules: [\n        {\n          activityIds: 'com.vivo.browser.pendant.PendantActivity',\n          matches:\n            '[id=\"com.vivo.browser:id/dialog_button_right\"][text=\"继续浏览\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12847431',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-天气详情页面',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.vivo.browser.lightweb.LightWebNomalStartActivity',\n          matches: '[text$=\"广告\"] +5 * > Image',\n          snapshotUrls: 'https://i.gkd.li/i/14392332',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vivo.remoteassistant.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vivo.remoteassistant',\n  name: '远程协助',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动同意远程协助请求',\n      desc: '发来远程协助请求，点击同意',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.InviteeActivity',\n          matches: [\n            '[text=\"发来远程协助请求\"][visibleToUser=true]',\n            'Button[vid=\"inviteeAgree\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/20768251',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vivo.space.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vivo.space',\n  name: 'vivo 官网',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[vid=\"timer\" || vid=\"jump_over\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e531ea4e-874f-4da4-bcf1-f585887f753c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16775800',\n            'https://i.gkd.li/i/19499311',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-活动广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.vivo.space.ui.VivoSpaceTabActivity',\n          matches:\n            'View[childCount=2] > @[index=1][clickable=true][visibleToUser=true][childCount=0] <<n [id=\"com.vivo.space:id/floating_window_web\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13218155',\n            'https://i.gkd.li/i/13292907',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.VivoSpaceTabActivity',\n          matches: 'Button[id=\"com.vivo.space:id/vbutton_title\"][text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13771581',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vivo.wallet.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vivo.wallet',\n  name: '钱包',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.bookkeep.activity.BookKeepMainActivity',\n          matches: '@[clickable=true] > [text=\"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13440881',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vlending.apps.mubeat.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vlending.apps.mubeat',\n  name: 'Mubeat',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.LauncherActivity',\n          matches: '@[desc=\"Close Ad\"][visibleToUser=true] > [text*=\"Ad\"]',\n          exampleUrls: 'https://e.gkd.li/86c7a56e-190d-4063-9b38-e8cfd71381e2',\n          snapshotUrls: 'https://i.gkd.li/i/18053470',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vmos.pro.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vmos.pro',\n  name: 'VMOS Pro',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.vmos.pro.activities.main.MainActivity',\n          matches: '[text=\"不再显示本活动\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13536416',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vo.icea.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vo.icea',\n  name: '飞韵听书',\n  groups: [\n    {\n      key: 5,\n      name: '分段广告-播放界面卡片广告',\n      desc: '需点击二次弹窗关闭原因',\n      activityIds: [\n        'com.vo.icea.MainActivity',\n        'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击\"反馈\"',\n          matches: 'WebView @[text=\"反馈\"] - View > Image',\n          snapshotUrls: 'https://i.gkd.li/i/13510973',\n        },\n        {\n          preKeys: [0],\n          name: '原因选\"不感兴趣\"',\n          fastQuery: true,\n          matches: '@LinearLayout[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13510972',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-首页弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[id=\"com.byted.pangle:id/tt_reward_full_count_down\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13511052',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13511059',\n            'https://i.gkd.li/i/13511065',\n          ],\n        },\n        {\n          key: 2,\n          name: '类型2',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] -n View > Image[text=\"\"][width<60]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13511052',\n            'https://i.gkd.li/i/13511765',\n          ],\n        },\n        {\n          key: 3,\n          name: '类型3',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] < View [text*=\"跳过\"][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/13446063',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/396d9536-af27-4470-9d80-0a11456fc9ea',\n          snapshotUrls: 'https://i.gkd.li/i/17691639',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/c5d254c2-97cb-4ab1-a271-d409b9841e94',\n          snapshotUrls: 'https://i.gkd.li/i/13511708',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.voyah.fassistant.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.voyah.fassistant',\n  name: '岚图汽车',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[text=\"签到\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/80aa2e89-de9e-45aa-b2cb-5194eaac849a',\n          snapshotUrls: 'https://i.gkd.li/i/20742927',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20727658',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vphonegaga.titan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vphonegaga.titan',\n  name: '光速虚拟机',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MyNativeActivity',\n          matches:\n            '@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/ef6b8242-76d7-4ce5-b0fc-4444f72b9b39',\n          snapshotUrls: 'https://i.gkd.li/i/13292911',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.vson.smarthome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.vson.smarthome',\n  name: '小美智能',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          matches: '[text^=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15526571',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wacai365.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wacai365',\n  name: '挖财记账',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.wacai365.HomeActivity',\n            'com.wacai.android.wind.splash.WindDialogActivity',\n          ],\n          matches:\n            '@ImageView[id=\"com.wacai365:id/tv_cancel\"] - TextView[text^=\"新版本\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13249620',\n            'https://i.gkd.li/i/13772291',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.wacai365.HomeActivity',\n          matches: '[id^=\"com.wacai365:id/promote_banner_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13249666',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.waimaiii.waimaiii.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.waimaiii.waimaiii',\n  name: '歪麦霸王餐',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.sangshen.ad_jg_flutter_sdk.SplashAdActivity',\n      rules: [\n        {\n          matches:\n            'View > View[childCount=2] > ImageView[clickable=true] + ImageView[id=\"\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13346187',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '[id$=\"ksad_ad_dislike\"] <n RelativeLayout - FrameLayout >3 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/5559308c-b40c-484f-a4ee-c162b507fb27',\n          snapshotUrls: 'https://i.gkd.li/i/24790719',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] <2 ViewGroup <2 ViewGroup <2 ViewGroup - ViewGroup >3 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24656915',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wallstreetcn.news.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wallstreetcn.news',\n  name: '华尔街见闻',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          matches:\n            '@[vid=\"iv_jump_parent\" || vid=\"iv_jump\"] -2 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/94576b14-ad13-4fae-8d49-6b6d1b5096a7',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14525329',\n            'https://i.gkd.li/i/20430632',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.wallstreetcn.news.ProxyMainActivity',\n          matches:\n            '[text=\"广告\" || text=\"活动\"] + [id=\"com.wallstreetcn.news:id/close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13262717',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wan.tools.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wan.tools',\n  name: '下载工具箱',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.one.downloadtools.ui.activity.HomeActivity',\n          matches:\n            'LinearLayout[childCount=2] > @[text=\"取消\"] + [text=\"确认\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13392027',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-自动识别解析链接',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.one.downloadtools.ui.activity.HomeActivity',\n          matches: '[text=\"识别解析\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13392085',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-开通会员弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.one.downloadtools.ui.activity.HomeActivity',\n          matches: ['[text^=\"开通会员\"]', '[text=\"暂不\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13392112',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wanbangauto.chargepile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wanbangauto.chargepile',\n  name: '星星充电',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.newhome.MainActivity',\n          matches: '@[vid=\"image_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ce4838fb-0f0d-4b20-bab3-565bd80bbc93',\n          snapshotUrls: 'https://i.gkd.li/i/18421090',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-签到提示',\n      desc: '点击[忽略]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.newhome.MainActivity',\n          matches: [\n            '[text^=\"小星提醒您\"][visibleToUser=true]',\n            '[text=\"忽略\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/542507c4-57dd-46f5-b354-78cdbacb3191',\n          snapshotUrls: 'https://i.gkd.li/i/18421092',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.webank.wemoney.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.webank.wemoney',\n  name: '微众银行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@[desc=\"关闭\"][clickable=true] +2 Button > [text^=\"立即\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/320f2c46-fd24-45b6-8031-8a4bae46558b',\n          snapshotUrls: 'https://i.gkd.li/i/23280589',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wedobest.shudu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wedobest.shudu',\n  name: '数独',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告',\n      desc: 'x掉',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.GameAct',\n          matches:\n            '@Button[clickable=true] +2 [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24967577',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.weico.international.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.weico.international',\n  name: '微博轻享版',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          order: -1,\n          anyMatches: [\n            '@[clickable=true][visibleToUser=true] + ViewGroup > [text=\"跳过\"]',\n            '@[clickable=true] - [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]', // https://github.com/AIsouler/GKD_subscription/issues/1024\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14549281',\n            'https://i.gkd.li/i/14549328', // 小窗模式下全局规则触发无效\n            'https://i.gkd.li/i/18792649', // visibleToUser=false\n            'https://i.gkd.li/i/20990401',\n          ],\n        },\n        {\n          key: 1,\n          excludeMatches: [\n            '@[clickable=true] - [text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n            '@[clickable=true][visibleToUser=true] + ViewGroup > [text=\"跳过\"]',\n          ],\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14661654',\n            'https://i.gkd.li/i/14661622',\n          ],\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '分段广告-信息流广告',\n      desc: '出现在主页,搜索页',\n      fastQuery: true,\n      matchRoot: true,\n      forcedTime: 10000,\n      activityIds: [\n        'com.google.android.material.bottomsheet.BottomSheetDialog',\n        'com.weico.international.activity.MainFragmentActivity',\n        'com.weico.international.ui.search.SearchActivity',\n        'com.weico.international.ui.detail.StatusDetailV3Activity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击卡片广告右上角[x]',\n          matches: '[vid=\"item_timeline_ad_action\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12857202',\n            'https://i.gkd.li/i/14444744',\n            'https://i.gkd.li/i/16667201',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击不感兴趣',\n          matches:\n            '@View[clickable=true] > [visibleToUser=true][text=\"不感兴趣\"] <<n [vid=\"design_bottom_sheet\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12505755',\n            'https://i.gkd.li/i/12505764',\n            'https://i.gkd.li/i/14798365',\n            'https://i.gkd.li/i/16667202',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.weilaishanhai.oopz.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.weilaishanhai.oopz',\n  name: 'Oopz',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      desc: '该软件部分开屏广告存在虚假跳过按钮，若点击会误触广告，因此该规则无法适配所有情况',\n      matchTime: 10000,\n      actionMaximum: 2,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[name!$=\"RelativeLayout\"] > [text*=\"跳过\"][index=0][text.length<10][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fbb3e3c2-74d7-4b1b-8daa-48bab63189a4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21202366',\n            'https://i.gkd.li/i/21202363',\n            'https://i.gkd.li/i/21202366',\n            'https://i.gkd.li/i/21503107',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/21202513', // 虚假跳过按钮 https://github.com/AIsouler/GKD_subscription/issues/1043\n        },\n        {\n          preKeys: [0], // 处理开屏广告的第二段\n          fastQuery: true,\n          matches:\n            '@ImageView[id=\"com.wangmai.allmodules:id/wm_image_clear\"] <2 RelativeLayout[childCount=2] < FrameLayout < [vid=\"wm_reward_main\"]',\n          exampleUrls: 'https://e.gkd.li/c1299341-66bf-4702-885c-3fbe5d648675',\n          snapshotUrls: 'https://i.gkd.li/i/21202940',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'cn.jy.ad.sdk.activity.AdDetailActivity',\n          matches:\n            '@View[clickable=true][childCount=0][width<120 && height<120] < RelativeLayout[childCount=1] <2 RelativeLayout[childCount=2] < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/cd81effe-cd18-4e17-92e1-599ea4400126',\n          snapshotUrls: 'https://i.gkd.li/i/21502302',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wenhua.bamboo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wenhua.bamboo',\n  name: '随身行',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击稍后再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.screen.activity.MarketOptionActivity',\n          matches: '@Button[text=\"稍后再说\"] +2 Button[text=\"马上开启\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13407555',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wepie.ivy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wepie.ivy',\n  name: '青藤之恋',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示-好评弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          action: 'back',\n          activityIds: '.module.start.MainActivity',\n          matches: '[text=\"我要吐槽\"] + [text=\"五星好评\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14602933',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.whale.whaleshop.ced.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.whale.whaleshop.ced',\n  name: '追剧达人',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击[我知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"我知道了\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c74158b2-c8d9-4ab2-aeb8-e87289fa49e0',\n          snapshotUrls: 'https://i.gkd.li/i/17498241',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.whpe.qrcode.hunan_xiangtan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.whpe.qrcode.hunan_xiangtan',\n  name: '湘潭出行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: 'com.whpe.qrcode.hunan_xiangtan.MainActivity',\n          matches:\n            '[id=\"com.whpe.qrcode.hunan_xiangtan:id/interact_ad_root\"] > [id=\"com.whpe.qrcode.hunan_xiangtan:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476265',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wibo.bigbang.ocr.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wibo.bigbang.ocr',\n  name: '布丁扫描',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.vivo.upgradelibrary.upmode.appdialog.VivoUpgradeActivityDialog',\n          matches:\n            '[id=\"com.wibo.bigbang.ocr:id/vivo_upgrade_negative_btn\"][text=\"忽略本次\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13360281',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wifi.masterkey.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wifi.masterkey.lite',\n  name: '万能钥匙',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页卡片广告',\n      fastQuery: true,\n      activityIds: 'com.wifitutu.ui.main.HomeMainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[id=\"com.zm.wfsdk:id/wf_sdk_native_express_close_rl\"] - FrameLayout >2 [text=\"免费直连\"]',\n          exampleUrls: 'https://e.gkd.li/87fe7de1-ba4b-4922-941b-96a88e67f1b0',\n          snapshotUrls: 'https://i.gkd.li/i/22801665',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"不感兴趣\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/1b66dbd9-85b7-4287-bf3c-7d6723b8afe8',\n          snapshotUrls: 'https://i.gkd.li/i/22801668',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wifitutu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wifitutu',\n  name: 'WiFi万能钥匙',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页-WiFi列表广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.main.MainActivity',\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13233916',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.wifitutu.ui.main.MainActivity',\n          matches:\n            '@Image[text=\"\"] < View +n View > View > TextView[visibleToUser=true][text=\"广告\"] <<n [id=\"com.wifitutu:id/ad_part\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13234048',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wisedu.cpdaily.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wisedu.cpdaily',\n  name: '今日校园',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.wisorg.wisedu.home.ui.HomeActivity',\n          matches:\n            '[id=\"com.wisedu.cpdaily:id/btn_update\"] + [id=\"com.wisedu.cpdaily:id/tv_ignore\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13643565',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wisentsoft.chinapost.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wisentsoft.chinapost.android',\n  name: '中国邮政',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '@ImageView[clickable=true] <2 LinearLayout <3 ViewGroup < [vid=\"ll_main\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15914347',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wm.dmall.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wm.dmall',\n  name: '多点',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[id=\"com.wm.dmall:id/advert_close\"]',\n          exampleUrls: 'https://e.gkd.li/60b65af4-7efa-4e82-b294-d96d5b426953',\n          snapshotUrls: 'https://i.gkd.li/i/13197627',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: [\n            '[id=\"com.wm.dmall:id/coupon_activity\"][text=\"去使用\"]',\n            '[id=\"com.wm.dmall:id/iv_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13331283',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-首页-浮窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.wm.dmall.MainActivity',\n          anyMatches: [\n            '@[id=\"com.wm.dmall:id/iv_close\"] + [id=\"com.wm.dmall:id/view_float\"]',\n            '[id=\"com.wm.dmall:id/close_iV\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13197634',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/13246242',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: [\n            '[id=\"com.wm.dmall:id/update_confirm_btn\"]',\n            '[id=\"com.wm.dmall:id/close_btn\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13234668',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wn.app.bl.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wn.app.bl',\n  name: '布蕾4K',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击[我知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '@[desc=\"我知道了\"][clickable=true] + [desc=\"了解更多\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/405a7072-bae5-4db7-8743-608ab3750c1c',\n          snapshotUrls: 'https://i.gkd.li/i/14228688',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wn.app.np.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wn.app.np',\n  name: 'NP管理器',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'player.normal.np.activity.CommonEditActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b75f4ba1-7e40-4ea2-9f65-20b61f018720',\n          snapshotUrls: 'https://i.gkd.li/i/14722550',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.woaika.kashen.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.woaika.kashen',\n  name: '我爱卡',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-定位权限',\n      desc: '点击\"暂不\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.woaika.kashen.ui.WIKHomeActivity',\n          matches: '[id=\"android:id/button2\"][text=\"暂不\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ae172e3f-42e2-4de2-8bd5-de7eb624c359',\n          snapshotUrls: 'https://i.gkd.li/i/14070846',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-请求位置、存储权限',\n      desc: '点击\"我知道了\"',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[vid=\"tvPermissionDescDialogConfirm\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6faf1f01-5b77-414b-91d8-98dcb5673f7c',\n          snapshotUrls: 'https://i.gkd.li/i/14070836',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wondertek.paper.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wondertek.paper',\n  name: '澎湃新闻',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.thepaper.paper.ui.main.MainActivity',\n          matches:\n            '[id=\"com.wondertek.paper:id/relative_layout\"] + [id=\"com.wondertek.paper:id/close_photo\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12899226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wuba.zhuanzhuan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wuba.zhuanzhuan',\n  name: '转转',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[text=\"下次再说\" || text=\"残忍拒绝\"] < * > [text^=\"立即\"][text.length=4]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14292849',\n            'https://i.gkd.li/i/14392301',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.zhuanzhuan.module.reach.channel.impl.uicode.ReachDialogActivity',\n          matches:\n            '[id=\"android:id/content\"] > ViewGroup[childCount=3] >2 ViewGroup[childCount>1] > ImageView[clickable=true][index=parent.childCount.minus(1)]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14927441',\n            'https://i.gkd.li/i/15140820',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MainActivity',\n          matches:\n            '@ImageView[clickable=true] - ViewGroup > [text=\"喜欢就给个好评吧\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15881026',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wudaokou.hippo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wudaokou.hippo',\n  name: '盒马',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.launcher.splash.SplashActivity',\n          matches: '[vid=\"home_pop_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7719d496-8331-4ddd-996d-5e1b5a88d7b7',\n          snapshotUrls: 'https://i.gkd.li/i/22988411',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wujie.connect.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wujie.connect',\n  name: '无界趣连',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[vid=\"no_update_tv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14296122',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wwwscn.yuexingbao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wwwscn.yuexingbao',\n  name: '悦通行',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-扫码确认解锁',\n      desc: '扫码成功后点击[确认并解锁]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.qrcode.ScanResultActivity',\n          matches: ['[text=\"扫码成功\"]', '[text=\"确认并解锁\"]'],\n          exampleUrls: 'https://e.gkd.li/31a62ba3-9329-4abe-ab30-99006ffa04d4',\n          snapshotUrls: 'https://i.gkd.li/i/17632893',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.wzwh.bzpaipan.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.wzwh.bzpaipan',\n  name: '问真八字排盘',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.qq.e.ads.PortraitADActivity',\n          matches:\n            '@ImageView[clickable=true] < LinearLayout[childCount=1] <2 FrameLayout[childCount=2] < [id=\"android:id/content\"][childCount=1]',\n          snapshotUrls: 'https://i.gkd.li/i/13162912',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.x.istar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.x.istar',\n  name: '观星',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.x.istar.view.main.MainActivity',\n          matches: '[text=\"关闭广告\"][vid=\"btn_negative\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13974606',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.x2era.xcloud.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\nexport default defineGkdApp({\n  id: 'com.x2era.xcloud.app',\n  name: 'Fa米家',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      desc: '关闭升级弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: [\n            '[id=\"com.x2era.xcloud.app:id/tv_upgrade\"]',\n            '[id=\"com.x2era.xcloud.app:id/iv_cancel\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13420706',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xbxxhz.box.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xbxxhz.box',\n  name: '小白学习打印',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '红包弹窗',\n          fastQuery: true,\n          activityIds: 'com.mango.login.main.MainAct',\n          matches: '[vid=\"dg_dialog_frag_ads_popup_x\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/9137cb2d-fb8d-4782-b3c9-88b89b79c8a0',\n          snapshotUrls: 'https://i.gkd.li/i/14433386',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '@View +4 [text=\"反馈\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1fa3e6e6-ce24-42a6-a4af-911eed7392e1',\n          snapshotUrls: 'https://i.gkd.li/i/14459191',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.mango.appfile.print_finish.PrintFinishAct',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/b0c3be3a-64a7-477e-a022-8a503ebd2cf6',\n          snapshotUrls: 'https://i.gkd.li/i/14741407',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.mango.bridge.ui.update.AppUpdateTransAct',\n          matches: '[vid=\"base_uav3_dlg_hide\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24192680',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xfani.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xfani.app',\n  name: '稀饭动漫',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xfani.app.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13188550',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xfinity.digitalhome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xfinity.digitalhome',\n  name: 'Xfinity',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.features.overview.activities.MainActivity',\n          matches:\n            '@[clickable=true][visibleToUser=true] > [desc=\"close\"] <<n [vid=\"details_modal_compose_body\"]',\n          exampleUrls: 'https://e.gkd.li/23c04f23-efb1-4562-a376-151ee4749e8d',\n          snapshotUrls: 'https://i.gkd.li/i/18563031',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xhgd.jx.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xhgd.jx',\n  name: '柠檬解析',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          key: 0,\n          name: '腾讯SDK',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13762226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiachufang.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiachufang',\n  name: '下厨房',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '[vid=\"skip_container\"][visibleToUser=true]', // https://github.com/AIsouler/GKD_subscription/issues/749\n          exampleUrls: 'https://e.gkd.li/5f3509d5-0b0b-4d79-b0e6-275a591ef2f5',\n          snapshotUrls: 'https://i.gkd.li/i/18587428',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]) || ([visibleToUser=true][text*=\"跳过\"][text.length<10][width<500 && height<200])',\n          exampleUrls: 'https://e.gkd.li/5c6579f4-77bb-4970-851f-087c2f86d6ad',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19724959', // 无法快速查询\n            'https://i.gkd.li/i/19724417',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.xiachufang.activity.recipe.RecipeDetailActivity',\n          matches: '[id=\"com.xiachufang:id/ad_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13348710',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.xiachufang.activity.recipe.RecipeDetailActivity',\n          matches:\n            '[id=\"com.xiachufang:id/jad_feed_close\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13363079',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.xiachufang.activity.recipe.RecipeDetailActivity',\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13454534',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.xiachufang.activity.recipe.RecipeDetailActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] - LinearLayout[childCount=2] > [text=\"下载应用\" || text=\"立即下载\" || text=\"查看详情\" || text=\"领取优惠\" || text=\"进入小程序\" || text=\"了解更多\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13484117',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: '.activity.recipe.RecipeDetailActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout +2 FrameLayout[childCount=2] > LinearLayout[childCount=2] > [text^=\"立即\"]',\n          exampleUrls: 'https://e.gkd.li/f9b63d84-3363-4330-93b9-156d6f3d3d32',\n          snapshotUrls: 'https://i.gkd.li/i/18249193',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-厨房问卷',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.xiachufang.activity.recipe.RecipeDetailActivity',\n          matches: '@[desc=\"关闭\"] - [text^=\"厨房问卷\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13363042',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xianfengniao.vanguardbird.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xianfengniao.vanguardbird',\n  name: '先锋鸟',\n  groups: [\n    {\n      key: 0,\n      name: '功能类-今日任务自动点击签到',\n      desc: '首页-今日任务-点击签到',\n      fastQuery: true,\n      activityIds: '.ui.common.activity.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"签到\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24839618',\n        },\n        {\n          preKeys: [1],\n          matches: '[vid=\"tv_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24839655',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '功能类-个人页面自动点击签到',\n      desc: '个人页点击签到',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.common.activity.MainActivity',\n          matches: '@[clickable=true] > [text=\"点击签到\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24839732',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaoe.client.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaoe.client',\n  name: '小鹅通',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示-版本更新弹窗',\n      desc: '点击暂不更新',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaoe.app.ui.main.XiaoeMainActivity',\n          matches: 'FrameLayout[vid=\"centerPopupContainer\"] [text=\"暂不更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13832282',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaoenai.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaoenai.app',\n  name: '小恩爱',\n  groups: [\n    {\n      key: 6,\n      name: '全屏广告',\n      matchTime: 15000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.presentation.home.view.activity.HomeActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/3997eac2-4b0d-4adc-a00c-d7551ea4f364',\n          snapshotUrls: 'https://i.gkd.li/i/13728018',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.mzd.feature.launcher.view.activity.LauncherActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/e11364ec-62dc-483b-b8c9-28feab2563fb',\n          snapshotUrls: 'https://i.gkd.li/i/13867878',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-信息流广告',\n      rules: [\n        {\n          name: '字节广告SDK',\n          fastQuery: true,\n          activityIds:\n            'com.xiaoenai.app.presentation.home.view.activity.HomeActivity',\n          matches:\n            '@ImageView[clickable=true][width<90][height<90] -3 ImageView <<n [id=\"com.xiaoenai.app:id/view_ad_tpl\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13728026',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaofeiji.app.disk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaofeiji.app.disk',\n  name: '小飞机网盘',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告',\n      desc: '点击关闭-点击不感兴趣',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.xiaofeiji.app.disk.MainActivity',\n          matches: '@Image[visibleToUser=true] < View + View >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13857392',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.xiaofeiji.app.disk.MainActivity',\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13857537',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaohu.olevodmobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaohu.olevodmobile',\n  name: '欧乐影院',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '@[id=\"com.xiaohu.olevodmobile:id/init_time_text\"] + [text=\"跳过\"]', // 这个 app 的开屏广告需要点击倒计时按钮才能跳过\n          snapshotUrls: 'https://i.gkd.li/i/12826256',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaolan.tv.chat.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaolan.tv.chat',\n  name: '真不卡',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-温馨提示弹窗',\n      desc: '点击[确定]',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.xiaolan.tv.chat.MainActivity',\n          matches: '[desc=\"确定\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/884dc3b4-e60d-4b21-90c9-a68b96632070',\n          snapshotUrls: 'https://i.gkd.li/i/15484133',\n        },\n        {\n          key: 1,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.xiaolan.tv.chat.MainActivity',\n          matches: '[desc=\"我知道了\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fe0403ee-0ffb-4921-a06a-ccefa5c26bcc',\n          snapshotUrls: 'https://i.gkd.li/i/16476930',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-看视频领奖励广告',\n      desc: '点击关闭-点击[放弃奖励离开]',\n      fastQuery: true,\n      activityIds: 'com.qq.e.ads.PortraitADActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@ImageView[visibleToUser=true] < FrameLayout -2 * > [text*=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15484070',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[text=\"放弃奖励离开\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15484521',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaolan.tv.chat.MainActivity',\n          matches:\n            '@[desc$=\"dislike\"][clickable=true] <2 FrameLayout +4 [text=\"立即下载\"]',\n          exampleUrls: 'https://e.gkd.li/ff11b8f3-16d8-4613-a113-827f6389c30e',\n          snapshotUrls: 'https://i.gkd.li/i/16476931',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] + @View[childCount=1] > Image[childCount=0][text=\"\"]',\n          exampleUrls: 'https://e.gkd.li/bbb19188-567d-4e5c-8ffd-f9576b5e1188',\n          snapshotUrls: 'https://i.gkd.li/i/16476933',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaolian.prometheus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaolian.prometheus',\n  name: '智慧笑联',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaolian.home.ui.HomeActivity',\n          matches: '@[vid=\"close_rel\"] - * > [text=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14292788',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-关注公众号弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaolian.home.ui.HomeActivity',\n          matches: '@[vid=\"close_img\"] + [text=\"关注\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14292789',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.bluetooth.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.bluetooth',\n  name: '小米蓝牙扩展 (Bluetooth Extension)',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-耳机配对弹窗（仅限澎湃os3）',\n      desc: '点击右上角的x',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.android.bluetooth.ble.app.fastconnect.MiuiFastConnectActivity',\n          matches: '[vid=\"pairingClosable\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22922962',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.gamecenter.sdk.service.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.gamecenter.sdk.service',\n  name: '小米游戏服务',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.gamecenter.sdk.ui.actlayout.ViewUpgrade',\n          matches: '[text=\"升级提示\"] < * + [vid=\"btn_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14188929',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.gamecenter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.gamecenter',\n  name: '小米游戏中心',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页右侧悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.gamecenter.ui.MainTabActivity',\n          matches:\n            '[id=\"com.xiaomi.gamecenter:id/ad_view\"] + [id=\"com.xiaomi.gamecenter:id/close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12715800',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.hm.health.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.hm.health',\n  name: 'Zepp Life',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页-底部广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.hm.health.activity.ChannelMainTabActivity',\n          matches: 'ImageView[id=\"com.xiaomi.hm.health:id/close_icon\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13695424',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.market',\n  name: '小米应用商店',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      matchRoot: true,\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter', // clickNode 可能无效\n          activityIds: ['.ui.FloatWebActivity', '.ui.HomeFloatWebActivity'],\n          matches:\n            '@Button[text=\"关闭\" || desc=\"关闭\"][clickable=true][visibleToUser=true] <<n [vid=\"webview\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16323123',\n            'https://i.gkd.li/i/20946336',\n            'https://i.gkd.li/i/23249365',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.market.ui.UpdateListActivity',\n          matches: '[id=\"com.xiaomi.market:id/iv_close_tip\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13197334',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '功能类-忽略升级',\n      desc: '应用升级界面-自动点击忽略',\n      fastQuery: true,\n      activityIds: 'com.xiaomi.market.ui.UpdateListActivity',\n      rules: [\n        {\n          key: 1,\n          excludeMatches: '[text=\"忽略本次\"][visibleToUser=true]',\n          matches: '[vid=\"expand_button\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14931577',\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[text=\"忽略本次\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/14931578',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '权限提示-通知权限',\n      desc: '自动点击关闭按钮',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '升级软件后的\"开启推送\"弹窗',\n          activityIds: '.ui.UpdateListActivity',\n          matches:\n            '[vid=\"dialog_cancel\" || text=\"不再提醒\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14814456',\n            'https://i.gkd.li/i/19643114',\n          ],\n        },\n        {\n          key: 1,\n          name: '开启通知栏提醒',\n          matchTime: 10000,\n          activityIds: '.business_ui.main.MarketTabActivity',\n          matches: ['[text=\"开启通知栏提醒\"]', '[text=\"不了，谢谢\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13691701',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '局部广告-个性化推荐卡片',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.market.business_ui.main.MarketTabActivity',\n          matches: '[id=\"com.xiaomi.market:id/close_float_recommend\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13624971',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '功能类-自动点击[查看全部升级]',\n      desc: '应用升级页面',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.xiaomi.market.ui.UpdateListActivity',\n            '.ui.UpdateAppsActivity',\n          ],\n          matches:\n            '@[clickable=true] > [text^=\"查看全部升级\" || text^=\"查看全部更新\"]',\n          exampleUrls: [\n            'https://m.gkd.li/57941037/8549db1e-17a5-44e3-b657-1d2d712efd2a',\n            'https://e.gkd.li/e1a4d832-e582-4185-b93e-08ca41f46d92',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/14782814',\n            'https://i.gkd.li/i/24461973',\n          ],\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '功能类-移动数据更新弹窗点击继续',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.market.ui.UpdateListActivity',\n          matches:\n            '@[text=\"继续\"] <n * - * >4 [text^=\"您在使用数据网络，升级应用可能产生流量费用\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22927652',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.mico.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.mico',\n  name: '小爱音箱',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches:\n            '[id=\"com.xiaomi.mico:id/adImage\"] + [id=\"com.xiaomi.mico:id/ivCloseAd\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12745621',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-请求开启定位权限弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.main.MainActivity',\n          matches: ['[text*=\"开启位置服务\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/15284753',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.mimobile.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.mimobile',\n  name: '小米移动',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示',\n      rules: [\n        {\n          activityIds: '.activity.XiaomiMobileMainActivity',\n          matches: '@ImageView[desc=null] < [desc=\"「小米移动」使用体验调查\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23227230',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.scanner.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.scanner',\n  name: '小爱视觉',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.ScanActivity',\n          matches: '@[text=\"以后再说\"] + [text=\"立即更新\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14332513',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.shop.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.shop',\n  name: '小米商城',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.xiaomi.shop2.activity.MainActivity',\n            'com.xiaomi.shop.plugin.homepage.utils.AdDialog',\n          ],\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true] <2 LinearLayout[childCount=2] < RelativeLayout < [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12649330',\n            'https://i.gkd.li/i/14393039',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.xiaomi.shop2.activity.MainActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true] <2 FrameLayout[childCount=2] < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22550140',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.shop2.activity.MainActivity',\n          matches:\n            '[id=\"com.xiaomi.shop.plugin.homepage:id/home_bottom_float_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15528092',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          position: {\n            left: 'width * 0.3509',\n            top: 'width * 1.4046',\n          },\n          activityIds: '.lib.ForceUpdateActivity',\n          matches:\n            '@LinearLayout[childCount=0] < [id=\"android:id/content\"][childCount=1] < [vid=\"action_bar_root\"]',\n          snapshotUrls: 'https://i.gkd.li/i/19547338',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '评价提示-客服',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.miot.store.mirn.RNMainActivity',\n          matches:\n            'ImageView < @ViewGroup[clickable=true] - [text^=\"请对\"][text$=\"进行评价\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23206873',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.smarthome.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.smarthome',\n  name: '米家',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.smarthome.SmartHomeMainActivity',\n          matches:\n            'RelativeLayout[childCount=2] > ImageView[id!=null] + ImageView[clickable=true][id!=null]',\n          snapshotUrls: 'https://i.gkd.li/i/12639658',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '更新提示-设备固件升级提示弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches:\n            '[text*=\"检测到\"&&text*=\"升级\"] < ViewGroup + ViewGroup > Button > [text = \"取消\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12639671',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.vipaccount.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.vipaccount',\n  name: '小米社区',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'miuix.appcompat.app.AlertDialog',\n          matches:\n            '@[text=\"稍后安装\"] < LinearLayout - ScrollView >(4) [text=\"发现新版本\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12642466',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-评论区卡片广告',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.vipaccount.newbrowser.NormalWebActivity',\n          matches: '[text=\"closeGray\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12642459',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-签到弹窗',\n      rules: [\n        {\n          activityIds: 'com.xiaomi.vipaccount.newbrowser.NormalWebActivity',\n          matches: '[text=\"签到赢权益\"] +n Image[text*=\"cancel_circle\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13328271',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-公告板弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.xiaomi.vipaccount.ui.home.page.HomeFrameActivity',\n            'com.xiaomi.vipaccount.newbrowser.NormalWebActivity',\n          ],\n          anyMatches: [\n            '[desc=\"公告版弹窗\"] +2 [id=\"com.xiaomi.vipaccount:id/close\"]',\n            '[desc=\"公告版弹窗\"] + ViewGroup[vid=\"image_container\"] > [id=\"com.xiaomi.vipaccount:id/close\"]',\n          ],\n          exampleUrls: 'https://e.gkd.li/46e16bc5-2f13-408e-9c34-927a13ba3e9c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13400617',\n            'https://i.gkd.li/i/24289621',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaomi.youpin.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaomi.youpin',\n  name: '小米有品',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          activityIds:\n            'com.xiaomi.youpin.globalpopwindow.popwindow.PopWindowActivity',\n          matches:\n            'WebView[text=\"有品\"] > View > View[childCount=2] > Image[index=1][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14964897',\n            'https://i.gkd.li/i/12836727',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示-版本升级弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.globalpopwindow.popwindow.PopWindowActivity',\n          matches: '[id=\"com.xiaomi.youpin:id/ypd_alert_close_image\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12836775',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-主页贴片广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xiaomi.youpin.activity.YouPinMainTabActivity',\n          matches: '[vid=\"iv_float_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15879481',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaote.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaote',\n  name: '小特',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"com.xiaote:id/ad_close\"][text*=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14035706',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xiaoxiongyhh.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xiaoxiongyhh',\n  name: '小熊有好货',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: 'com.uzmap.pkg.EntranceActivity',\n          matches:\n            'View[childCount=2] > ImageView + Button[childCount=0][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13401975',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xifeng.fun.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xifeng.fun',\n  name: 'OmoFun',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.xifeng.fun.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14050836',\n            'https://i.gkd.li/i/14235476',\n            'https://i.gkd.li/i/14235479',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: 'com.xifeng.fun.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14235478',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-公告弹窗',\n      desc: '点击\"我知道了\"',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[desc=\"我知道了\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/971c3631-a9cc-4aec-992e-6cf1166eea1b',\n          snapshotUrls: 'https://i.gkd.li/i/14235411',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ximalaya.ting.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ximalaya.ting.android',\n  name: '喜马拉雅',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-播放页广告',\n      rules: [\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.host.activity.MainActivity',\n          matches:\n            '@[visibleToUser=true] < ViewGroup[childCount=1] - ViewGroup[childCount=6] > [text=\"广告\"] ',\n          exampleUrls: 'https://e.gkd.li/bbf93e2c-08b8-4155-b82c-89a629a62737',\n          snapshotUrls: 'https://i.gkd.li/i/18500523',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.host.activity.MainActivity',\n          matches:\n            '[vid=\"main_buy_view_yellow_zone_btn_close\" || vid=\"main_play_ad_close_real\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/bf820eed-00ad-47a0-9581-8cdb3d76bde5',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18683999',\n            'https://i.gkd.li/i/24330967',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '分段广告-信息流广告',\n      desc: '点击关闭-点击屏蔽',\n      fastQuery: true,\n      activityIds: [\n        '.host.activity.MainActivity',\n        '.adsdk.view.DislikeDialog.DislikeBottomDialog',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[vid=\"xm_ad_close_real\" || vid=\"main_close_layout\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17112326',\n            'https://i.gkd.li/i/17112313',\n          ],\n        },\n        {\n          preKeys: [0],\n          matches:\n            '@[clickable=true] > [text=\"屏蔽\" || text=\"直接关闭\" || text=\"不喜欢此内容\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13260487',\n            'https://i.gkd.li/i/13275928',\n            'https://i.gkd.li/i/17111444',\n            'https://i.gkd.li/i/17111452',\n            'https://i.gkd.li/i/24589005',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '青少年模式',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.host.activity.MainActivity',\n          matches: [\n            '[text*=\"青少年模式\"][id=\"com.ximalaya.ting.android:id/host_btn_set\"]',\n            '[id=\"com.ximalaya.ting.android:id/host_dialog_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/12506209',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-首页-专辑订阅推荐弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ximalaya.ting.android.host.activity.MainActivity',\n          matches:\n            '[text=\"你可能感兴趣的专辑\"] + [id=\"com.ximalaya.ting.android:id/main_iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13251713',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ximalaya.ting.android.host.activity.MainActivity',\n          matches:\n            '@[id=\"com.ximalaya.ting.android:id/host_close_firework\"] +2 [id=\"com.ximalaya.ting.android:id/host_firework_ad_tag\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13263421',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '权限提示-通知权限',\n      desc: '取消推送通知',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.host.activity.MainActivity',\n          matches: [\n            '[text*=\"通知权限\"][visibleToUser=true]',\n            '[text=\"取消\" || text=\"暂不开启\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/ab40c096-d024-4b7c-9c6f-245beafd373a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13389145',\n            'https://i.gkd.li/i/18391977',\n            'https://i.gkd.li/i/20499323',\n          ],\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-免流提示',\n      desc: '关闭[开免流送会员]弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.host.activity.MainActivity',\n          matches: '[vid=\"host_iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2a7e189b-b935-4bbd-9672-c18f2bf454e9',\n          snapshotUrls: 'https://i.gkd.li/i/18326083',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ximalaya.ting.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ximalaya.ting.lite',\n  name: '喜马拉雅极速版',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image < View + View + View > View > View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13218286',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-小说推荐弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ximalaya.ting.android.host.activity.MainActivity',\n          matches: '[id=\"com.ximalaya.ting.lite:id/main_iv_novel_back\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13229127',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-支付宝提现弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ximalaya.ting.android.host.activity.MainActivity',\n          matches: '[id=\"com.ximalaya.ting.lite:id/main_login_guide_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13256447',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.ximalaya.ting.android.host.activity.WelComeActivity',\n          matches:\n            '[text=\"立即开启\"] + [id=\"com.ximalaya.ting.lite:id/host_dialog_cancel_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13256505',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xingin.xhs.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xingin.xhs',\n  name: '小红书',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          excludeActivityIds: [\n            'com.xingin.alioth.search.GlobalSearchActivity',\n            'com.xingin.growth.ob.FloatingObPageActivity',\n            'com.xingin.matrix.notedetail.NoteDetailActivity',\n          ],\n          excludeMatches:\n            '[text=\"首页\" || text=\"选择兴趣推荐更精准\"][visibleToUser=true]',\n          matches:\n            '[text*=\"跳过\" || text^=\"Skip Ad\"][text.length<10][!(vid=\"tv_user_name\")][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/9733ada7-4961-4a9f-b48d-3398ecd05508',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17452158',\n            'https://i.gkd.li/i/22951606', // 英语版\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/19035037',\n            'https://i.gkd.li/i/20585457',\n            'https://i.gkd.li/i/21937254',\n          ],\n        },\n        {\n          key: 1,\n          matches: '[vid=\"splash_count_down_view\"]',\n          exampleUrls: 'https://e.gkd.li/6ed22307-ce1d-479e-8a8d-a6fe4ffa614c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17109105',\n            'https://i.gkd.li/i/17108010', // 全局规则在此误触\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.index.v2.IndexActivityV2',\n            '.notification.NotificationAuthorizationTranslucentActivity',\n            'com.xingin.matrix.notedetail.r10.comment.r10.NoteCommentActivity',\n            'com.xingin.authorization.NotificationAuthorizationTranslucentActivity',\n          ],\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] - LinearLayout > [text^=\"打开通知\" || text^=\"Enable notifications\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13195753',\n            'https://i.gkd.li/i/13222356',\n            'https://i.gkd.li/i/13255627',\n            'https://i.gkd.li/i/16918033',\n            'https://i.gkd.li/i/18417785',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.index.v2.IndexActivityV2',\n          matches: '@ImageView <2 FrameLayout - [text^=\"打开通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13250418',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      activityIds: [\n        '.index.v2.IndexActivityV2',\n        'com.xingin.update.UpdateDialogActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches: '@ImageView <2 * + * > [text=\"NEW\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13246890',\n            'https://i.gkd.li/i/13741680',\n            'https://i.gkd.li/i/14445193',\n          ],\n        },\n        {\n          key: 1,\n          matches: 'Button[text=\"立即安装\"] + Button[text=\"稍后再说\"]',\n          exampleUrls: 'https://e.gkd.li/7064a569-fcdd-44e2-b4d1-c55e093f4a02',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15283162',\n            'https://i.gkd.li/i/18289347',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告-信息流广告',\n      desc: '长按\"赞助\"/\"广告\"标识的卡片-点\"不感兴趣\"',\n      fastQuery: true,\n      activityIds: 'com.xingin.xhs.index.v2.IndexActivityV2',\n      rules: [\n        {\n          key: 0,\n          action: 'longClick',\n          name: '长按\"赞助\"/\"广告\"卡片',\n          excludeMatches: 'RecyclerView > LinearLayout > [text^=\"不喜欢\"]',\n          matches:\n            '@FrameLayout[clickable=true] > LinearLayout TextView[text=\"赞助\"||text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13455503',\n            'https://i.gkd.li/i/13470690',\n            'https://i.gkd.li/i/14392171', // 使用 excludeMatches 防止反复触发规则\n          ],\n        },\n        {\n          preKeys: [0],\n          name: '点\"不感兴趣\"',\n          matches:\n            'RecyclerView > @LinearLayout[index=0] > TextView[text^=\"不喜欢\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13455500',\n            'https://i.gkd.li/i/14392187',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-优惠券弹窗',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.xingin.reactnative.ui.XhsReactTranslucentActivity',\n          matches:\n            '@ImageView[visibleToUser=true] < * -2 * > [text=\"你有新人券待领取\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14391484',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '评价提示-评分弹窗',\n      desc: '返回关闭弹窗',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          activityIds: 'com.xingin.lurker.appscore.ui.AppScoreDialogActivity',\n          matches: '[text=\"您对小红书的评分如何?\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/9727815d-b881-4904-bbdc-19ade426977e',\n          snapshotUrls: 'https://i.gkd.li/i/15281458',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-评论区-自动展开回复',\n      desc: '自动展开更多回复',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xingin.matrix.notedetail.NoteDetailActivity',\n          matches:\n            '@[clickable=true] > [vid=\"loadMoreTV\"][text^=\"展开\"][text$=\"回复\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25048251',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-你可能感兴趣的人',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xingin.xhs.index.v2.IndexActivityV2',\n          matches: '[text=\"你可能感兴趣的人\"] +2 Button[text=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25244655',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-关闭首页信息流中推荐博主',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xingin.xhs.index.v2.IndexActivityV2',\n          matches:\n            '[vid=\"recommend_close\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25245325',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '局部广告-直播间各种卡片',\n      activityIds: 'com.xingin.alpha.audience.v2.AlphaAudienceActivityV2',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@ViewGroup[clickable=true][visibleToUser=true] - ViewGroup <<n [vid=\"canvasLayout\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25245250',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xingluo.allcolor.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xingluo.allcolor',\n  name: '一起来涂色',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-底部穿山甲广告',\n      desc: '点击卡片广告x关闭按钮-关闭反馈理由弹窗',\n      activityIds: [\n        'com.cccgame.android.MainActivity',\n        'com.bytedance.sdk.openadsdk.core.dislike.ui.c',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches:\n            '@Image[childCount=0][visibleToUser=true] < View[childCount=1] + View[childCount=2] >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12640359',\n        },\n        {\n          key: 2,\n          matches:\n            '@Image[id=null] < View -2 View > View > View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12640362',\n        },\n        {\n          key: 3,\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] + FrameLayout >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12640374',\n        },\n        {\n          key: 4,\n          matches:\n            '@Image[id=null] < View - View > View + View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12640406',\n        },\n        {\n          preKeys: [1, 2, 3, 4],\n          name: '穿山甲广告-反馈理由',\n          matches: '[id=\"com.byted.pangle:id/tt_item_tv\"][text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12640358',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xingye.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xingye.app',\n  name: '星野',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.weaver.app.MainSplashActivity',\n          matches: '[vid=\"settingUpdateCancelTv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14137987',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xinhang.mobileclient.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xinhang.mobileclient',\n  name: '中国移动河南',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      activityIds: 'com.xinhang.mobileclient.home.activity.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          matches: 'View[desc^=\"close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13024867',\n        },\n        {\n          key: 1,\n          matches: 'View > View > TextView + TextView[text=\"\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13024869',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-右侧悬浮广告',\n      rules: [\n        {\n          activityIds: 'com.xinhang.mobileclient.home.activity.HomeActivity',\n          matches:\n            '@[id=\"com.xinhang.mobileclient:id/iv_close\"] + [id=\"com.xinhang.mobileclient:id/iv_advert\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13024863',\n            'https://i.gkd.li/i/13024872',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xishang.jihua.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xishang.jihua',\n  name: '加班',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches:\n            '@ImageView[childCount=0][width<100 && height<100] < ViewGroup < ViewGroup < ViewGroup < ViewGroup +2 ViewGroup >3 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5a9d8d4c-a638-46d9-ab67-9b3b115b96e1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21480268',\n            'https://i.gkd.li/i/21487176',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: '.MainActivity',\n          matches:\n            '@Image[childCount=0][width<80 && height<80] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22092803',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xmcy.hykb.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xmcy.hykb',\n  name: '好游快爆',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.app.dialog.UpdateDialog',\n          matches:\n            '@[id=\"com.xmcy.hykb:id/iv_inner_button_close\"] - RelativeLayout >n [id=\"com.xmcy.hykb:id/text_update_tip\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12870604',\n            'https://i.gkd.li/i/13297450',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xmcy.hykb.app.ui.main.MainActivity',\n          matches: '[id=\"com.xmcy.hykb:id/dialog_home_notice_image_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13259427',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xpx365.projphoto.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xpx365.projphoto',\n  name: '工程相机',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13827755',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16030619',\n            'https://i.gkd.li/i/16030620',\n            'https://i.gkd.li/i/16030622',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] - [text=\"|\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16030413',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '字节广告SDK',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@LinearLayout[clickable=true] - FrameLayout[childCount=1] > [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13762195',\n        },\n        {\n          key: 1,\n          name: '腾讯广告SDK',\n          activityIds: 'com.xpx365.projphoto.FirstActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13762196',\n        },\n        {\n          key: 2,\n          name: '快手广告SDK',\n          activityIds: 'com.xpx365.projphoto.AdKS2AutoCloseActivity',\n          matches:\n            '[id=\"com.kwad.dy.sdk:id/ksad_tk_view\"] @ViewGroup[clickable=true] > TextView[text=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13695668',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xs.fm.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xs.fm.lite',\n  name: '番茄音乐（原畅听音乐）',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.dragon.read.pages.main.MainFragmentActivity',\n            'com.bytedance.polaris.impl.view.BulletSingleContainerActivity',\n          ],\n          matches:\n            'FlattenUIImage[clickable=true] -(1,2) FlattenUIText[text=\"开心收下\" || text=\"前往领取\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/25246321',\n            'https://i.gkd.li/i/25246625',\n            'https://i.gkd.li/i/25245765',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.dragon.read.pages.main.MainFragmentActivity',\n          matches:\n            '@ImageView[clickable=true] - [text=\"添加番茄音乐组件\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25246270',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.dragon.read.pages.main.MainFragmentActivity',\n          matches:\n            '@ImageView[clickable=true] <3 ViewGroup[childCount=3] < ViewGroup < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24908945',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            '[text^=\"领取成功\"][clickable=true][visibleToUser=true][childCount=1]',\n          snapshotUrls: 'https://i.gkd.li/i/25246506',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          activityIds: 'com.ss.android.excitingvideo.ExcitingVideoActivity',\n          matches:\n            '@View[clickable=true][width<90 && height<90] -2 ScrollView < View[childCount=3]',\n          snapshotUrls: 'https://i.gkd.li/i/25246616',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '功能类-自动展开回复',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xs.fm.karaoke.impl.cover.KaraokeCoverActivity',\n          matches:\n            '@ViewGroup[clickable=true] > TextView[text^=\"展开\"][text$=\"回复\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25246736',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xsj.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xsj.app',\n  name: '星影视频',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          name: '腾讯广告',\n          activityIds: ['com.xsj.app.MainActivity', 'com.qq.e.ads.ADActivity'],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13625504',\n            'https://i.gkd.li/i/13761165',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.qq.e.ads.ADActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] - [text*=\"送福利啦\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13670176',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-公告弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13875711',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xstore.sevenfresh.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xstore.sevenfresh',\n  name: '七鲜',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.modules.MainActivity',\n          matches: '[vid=\"closed_img\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fd3abb40-d339-49cf-a6c8-83eedf1451b4',\n          snapshotUrls: 'https://i.gkd.li/i/23021853',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xt.retouch.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xt.retouch',\n  name: '醒图',\n  groups: [\n    {\n      key: 5,\n      name: '评价提示-好评反馈',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.uilauncher.MainActivity',\n          matches: '[id=\"com.xt.retouch:id/market_feedback_dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13062637',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xtc.watch.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xtc.watch',\n  name: '小天才',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xtc.widget.phone.popup.activity.CustomActivity14',\n          matches: [\n            '[text=\"App功能更新了\"]',\n            '[id=\"com.xtc.watch:id/iv_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13197390',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.xtc.widget.phone.popup.activity.CustomActivity13',\n          matches: [\n            '[text*=\"开启消息通知\"]',\n            '[id=\"com.xtc.watch:id/iv_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13063274',\n        },\n        {\n          key: 1,\n          activityIds: '.view.home.activity.XtcHomeActivity',\n          matches: '[id=\"com.xtc.watch:id/iv_notify_permission_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13059965',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xtuone.android.syllabus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xtuone.android.syllabus',\n  name: '超级课程表',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-首页卡片广告',\n      rules: [\n        {\n          activityIds: 'com.xtuone.android.friday.MainFragmentActivity',\n          matches:\n            '[id=\"com.xtuone.android.syllabus:id/treehole_banner_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12840733',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-课程表界面广告',\n      rules: [\n        {\n          activityIds: 'com.xtuone.android.friday.MainFragmentActivity',\n          matches: '[id=\"com.xtuone.android.syllabus:id/imgv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12999642',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xtuone.android.friday.MainFragmentActivity',\n          matches: '[id=\"com.xtuone.android.syllabus:id/dialog_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13166501',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xtuone.android.friday.UpdateActivity',\n          matches: '@[vid=\"update_cancel\"] + [vid=\"go_to_update\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14292875',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xueqiu.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xueqiu.android',\n  name: '雪球',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-信息流广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.xueqiu.android.mainnesting.view.MainNestingActivity',\n          matches: '[id=\"com.xueqiu.android:id/ad_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/33366298/d05d1eec-cda5-4d37-a494-8eef7b7871dd',\n          snapshotUrls: 'https://i.gkd.li/i/13388227',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-评论区广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xueqiu.android.community.StatusDetailActivity',\n          matches: '[id=\"com.xueqiu.android:id/ad_card_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/33366298/b223cc74-fd4f-45a2-89ab-4a18ddffc01c',\n          snapshotUrls: 'https://i.gkd.li/i/13388361',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.mainnesting.view.MainNestingActivity',\n          matches: '[vid=\"image_cancel\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5229142b-49d5-4985-ab75-104e46ede45e',\n          snapshotUrls: 'https://i.gkd.li/i/22995479',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xueqiu.fund.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xueqiu.fund',\n  name: '雪球基金',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-基金页面弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xueqiu.fund.commonlib.FundHomeActivityV2',\n          matches: '[id=\"com.xueqiu.fund:id/image_cancel\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c43d58ab-a18c-4249-bc35-1c7aeab4c3ff',\n          snapshotUrls: 'https://i.gkd.li/i/14163901',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xuexiaoyi.xxy.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xuexiaoyi.xxy',\n  name: '学小易',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-首页-底部广告',\n      activityIds: [\n        'com.xuexiaoyi.entrance.main.MainActivity',\n        'com.xuexiaoyi.platform.base.arch.RouterFragmentActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击在下方的X',\n          matches:\n            'View[text=\"广告\"&&longClickable=null] < View <n View <n View > View > Image[text.length=0]', // longClickable=null为了与 key:3 区别防止误触\n          snapshotUrls: [\n            'https://i.gkd.li/i/13068836',\n            'https://i.gkd.li/i/13375502',\n            'https://i.gkd.li/i/13375559',\n          ],\n        },\n        {\n          key: 1,\n          name: '点击在上方的X-类型1',\n          matches:\n            'Image[text.length>=20] < View < View + View > Image[text.length=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13068811',\n            'https://i.gkd.li/i/13202990',\n            'https://i.gkd.li/i/13266356',\n            'https://i.gkd.li/i/13266362',\n            'https://i.gkd.li/i/13457114',\n            'https://i.gkd.li/i/13457204',\n          ],\n        },\n        {\n          key: 2,\n          name: '点击在上方的X-类型2',\n          matches:\n            '[text.length>=2&&text.length<=6] < FrameLayout -n FrameLayout > View',\n          snapshotUrls: 'https://i.gkd.li/i/13266689',\n        },\n        {\n          key: 3,\n          name: '点击在内部的X',\n          matches: 'View[text.length=4] - View > View > Image[text.length=0]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13457210',\n            'https://i.gkd.li/i/13457302',\n          ],\n        },\n        {\n          preKeys: [0, 1, 2, 3],\n          key: 10,\n          name: '点击不感兴趣',\n          matches: 'TextView[text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13068819',\n            'https://i.gkd.li/i/13457380',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '更新提示',\n      desc: '点击以后再说',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xuexiaoyi.entrance.main.MainActivity',\n          matches: '[text=\"立即体验\"] + [text=\"以后再说\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13203105',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xunlei.downloadprovider.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xunlei.downloadprovider',\n  name: '迅雷',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          excludeActivityIds: '.search.ui.search.SearchOperateActivity',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15048443',\n            'https://i.gkd.li/i/15048416',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16388942',\n        },\n        {\n          key: 1,\n          position: {\n            left: 'width * 0.9055',\n            top: 'width * 0.1611',\n          },\n          excludeMatches: '[text*=\"跳过\"]',\n          matches: '[vid=\"native_container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15048354',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/15048376',\n        },\n        {\n          key: 2,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24539634',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '分段广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            '.frame.MainTabActivity',\n            '.download.taskdetails.newui.DownloadDetailsActivity',\n          ],\n          matches:\n            '[vid=\"hermes_ad_banner_negative\" || vid=\"close_iv\"  || vid=\"btn_ad_feedback\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/95d56e24-3223-4112-9222-de6d489aa79b',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23762793',\n            'https://i.gkd.li/i/23845066',\n          ],\n        },\n        {\n          preKeys: [0],\n          fastQuery: true,\n          activityIds: [\n            '.frame.MainTabActivity',\n            '.download.taskdetails.newui.DownloadDetailsActivity',\n          ],\n          matches: '[text=\"不感兴趣\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/490bd679-86a5-432e-b0de-427da5513484',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23762972',\n            'https://i.gkd.li/i/23845065',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.xunlei.downloadprovider.frame.MainTabActivity',\n          matches: '[vid=\"close_btn\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/71c2dc44-a976-4910-8e44-26e39865406e',\n          snapshotUrls: 'https://i.gkd.li/i/16388890',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12868667',\n            'https://i.gkd.li/i/12881946',\n            'https://i.gkd.li/i/13295179',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            'com.xunlei.downloadprovider.frame.MainTabActivity',\n            'com.xunlei.downloadprovider.launch.LaunchActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12882132',\n            'https://i.gkd.li/i/12901374',\n            'https://i.gkd.li/i/12882237',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.xunlei.web.XLWebViewActivity$XLWebViewActivityImpl',\n          matches:\n            '[text$=\"专属惊喜价\"] + View > @[desc^=\"javascript\"][clickable=true][childCount=0][width<120&&height<120][visibleToUser=true] <<n [vid=\"refreshLayout\"]',\n          exampleUrls: 'https://e.gkd.li/ade9ca8a-b7a5-4a22-8c1f-d14423a34136',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16914136',\n            'https://i.gkd.li/i/23833175',\n            'https://i.gkd.li/i/23845039',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: '.download.center.DownloadCenterActivity',\n          matches: ['[text=\"开通超级会员\"]', '[vid=\"close_btn\"]'],\n          exampleUrls: 'https://e.gkd.li/6448cedc-2bad-4aa5-846c-9ad82c310545',\n          snapshotUrls: 'https://i.gkd.li/i/17658831',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches:\n            '@ImageView[childCount=0] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] +2 ViewGroup >3 [text=\"广告\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23762955',\n            'https://i.gkd.li/i/24541418',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xunlei.upgrade.XUpgradeActivity',\n          matches: '[id=\"com.xunlei.downloadprovider:id/x_upgrade_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13228920',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.xunlei.downloadprovider.frame.MainTabActivity',\n          matches:\n            '[text=\"立即领取\" || text=\"点击领取\" || text^=\"此云盘为您的私人云盘\"] + [vid=\"close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12882939',\n            'https://i.gkd.li/i/15048352',\n            'https://i.gkd.li/i/15048355',\n            'https://i.gkd.li/i/15048357',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.search.ui.search.SearchOperateActivity',\n          matches: '[vid=\"search_banner_ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d9e25fc3-249f-4fb9-8606-606ed0c9c893',\n          snapshotUrls: 'https://i.gkd.li/i/17725350',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.frame.MainTabActivity',\n          matches:\n            '[vid=\"home_flow_item_close_iv\" || vid=\"ad_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23762842',\n            'https://i.gkd.li/i/23762864',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.xpan.pan.activity.XPanFileBrowserActivity',\n          matches: '[vid=\"btn_ad_feedback\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23795248',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xunlei.uikit.activity.TransformActivity',\n          matches: ['[text=\"是否打开系统通知\"]', '[vid=\"btn_close\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/bf1ee4f5-126c-46c7-bac1-5e41ec4546e3',\n          snapshotUrls: 'https://i.gkd.li/i/15322046',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xunmeng.pinduoduo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xunmeng.pinduoduo',\n  name: '拼多多',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: [\n            '.ui.activity.HomeActivity',\n            '.ui.activity.MainFrameActivity',\n          ],\n          matches: '@Image[clickable=true] +5 [text=\"立即升级\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13195645',\n            'https://i.gkd.li/i/23936506',\n            'https://i.gkd.li/i/24786015',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 3,\n          fastQuery: true,\n          action: 'back',\n          activityIds: [\n            '.ui.activity.HomeActivity',\n            '.ui.activity.MainFrameActivity',\n          ],\n          excludeMatches:\n            '[text=\"我的订单\" || text=\"聊天\"][bottom<500][visibleToUser=true]',\n          matches:\n            '[text=\"开心收下\" || text=\"去抢购\" || text=\"立即抽免单\" || text=\"去刮奖\" || text=\"立即领取\" || text=\"去领大额金币\" || text=\"送你大额现金\" || text*=\"红包助手\" || text=\"刮刮卡发来的消息通知\" || text=\"立即充值\" || text=\"打款金额\"][top>600][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13625441',\n            'https://i.gkd.li/i/13761182',\n            'https://i.gkd.li/i/13944165',\n            'https://i.gkd.li/i/14456101',\n            'https://i.gkd.li/i/14596990',\n            'https://i.gkd.li/i/14614135',\n            'https://i.gkd.li/i/15360330',\n            'https://i.gkd.li/i/15032649',\n            'https://i.gkd.li/i/15076322',\n            'https://i.gkd.li/i/17564786',\n            'https://i.gkd.li/i/17585645',\n            'https://i.gkd.li/i/17625608',\n            'https://i.gkd.li/i/18481318',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/23352586',\n            'https://i.gkd.li/i/23607429',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n          matches:\n            '@ViewGroup[clickable=true] - ViewGroup[childCount=3] >2 [text=\"其他\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15103543',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: 'com.xunmeng.pinduoduo.activity.NewPageMaskActivity',\n          matches: [\n            '[text=\"继续拼单\"]',\n            '@[clickable=true] > [text=\"先去逛逛\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/15197527',\n            'https://i.gkd.li/i/15211473',\n          ],\n        },\n        {\n          key: 7,\n          activityIds: [\n            '.ui.activity.HomeActivity',\n            '.ui.activity.MainFrameActivity',\n          ],\n          matches:\n            'ImageView[childCount=0][width<130&&height<130] < ViewGroup[childCount=1] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] <(1,2) ViewGroup <(1,2) ViewGroup < ViewGroup < FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout <(1,2,3) [parent=null]',\n          exampleUrls: 'https://e.gkd.li/f74b5f58-e518-4e33-bbb4-0bf28e2b79d8',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17528782',\n            'https://i.gkd.li/i/17655498',\n            'https://i.gkd.li/i/17893977',\n            'https://i.gkd.li/i/22741566',\n          ],\n        },\n        {\n          key: 8,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.ui.activity.HomeActivity',\n          matches:\n            '@ViewGroup[childCount=1][clickable=true] < ViewGroup[childCount=2] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] < [childCount=1] <2 FrameLayout <2 [parent=null]',\n          exampleUrls: 'https://e.gkd.li/e5428072-9ee3-47e9-87ad-d8b47e24f173',\n          snapshotUrls: 'https://i.gkd.li/i/17773799',\n        },\n        {\n          key: 9,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.ui.activity.HomeActivity',\n          matches:\n            '@ImageView[index=0][vid=\"pdd\"][childCount=0][visibleToUser=true][width<120&&height<120] < RelativeLayout[childCount=2] < FrameLayout[childCount=1] < FrameLayout[childCount=1] < [parent=null]',\n          exampleUrls: 'https://e.gkd.li/64f35ab7-37e1-4060-aa91-468116a42cae',\n          snapshotUrls: 'https://i.gkd.li/i/18375615',\n        },\n        {\n          key: 10,\n          activityIds: '.activity.NewPageActivity',\n          matches: '[desc=\"关闭按钮\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23383792',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      activityIds: 'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@TextView[id=null][clickable=true] + Image[id=null][text=\"webp\"]',\n          exampleUrls: 'https://e.gkd.li/20f77125-b223-4d65-b61e-826871e0032b',\n          snapshotUrls: 'https://i.gkd.li/i/12642058',\n        },\n        {\n          key: 1,\n          matches:\n            '[id=\"unactive_watch_video_pendant\"] > TextView[clickable=true][text=\"\"][childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/12642058',\n        },\n        {\n          key: 2,\n          activityIds: 'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n          matches:\n            'RelativeLayout[childCount=2] > RelativeLayout[vid=\"pdd\"] + @FrameLayout[childCount=1][clickable=true][visibleToUser=true][text=null][vid=\"pdd\"] > ImageView[childCount=0][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/0f850878-2b6a-46c7-86aa-28329df0993c',\n          snapshotUrls: 'https://i.gkd.li/i/15140800',\n        },\n        {\n          key: 3,\n          name: '多多视频金币提示',\n          activityIds: '.ui.activity.HomeActivity',\n          matches: '[text^=\"看5分钟视频\"] -2 Image',\n          snapshotUrls: 'https://i.gkd.li/i/25088623',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-商品详情页视频讲解窗口',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.xunmeng.pinduoduo.activity.NewPageActivity',\n          matches: '[vid=\"iv_float_window_close\"]',\n          exampleUrls: 'https://e.gkd.li/f81a45e4-09b4-498f-be72-ca84cdd0db83',\n          snapshotUrls: 'https://i.gkd.li/i/14549415',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-多多视频每日自动签到',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      activityIds: 'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          name: '自动签到',\n          matches:\n            '@[clickable=true] >2 [text=\"领取今日现金\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13201422',\n            'https://i.gkd.li/i/13372677',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '在签到后关闭弹窗',\n          matches:\n            '@[clickable=true] >2 [text=\"明日继续来领\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13205634',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-多多视频划到广告自动跳过',\n      desc: '点击返回自动刷新，从而跳过广告',\n      fastQuery: true,\n      activityIds: 'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          matches: [\n            'TextView[text=\"正在直播\"]',\n            '@ImageView[desc=\"返回\"] <4 ViewGroup < * < * < [id=\"android:id/content\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13446291',\n        },\n        {\n          key: 1,\n          matches: [\n            'TextView[text=\"查看更多低价商品\"]',\n            '@ImageView[desc=\"返回\"] <4 ViewGroup < * < * < [id=\"android:id/content\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13791119',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '功能类-发送图片时自动勾选原图',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds:\n            'com.xunmeng.pinduoduo.app_album.album.MultiImageSelectorActivity',\n          matches: '@[text=\"原图\"][checked=false] + [text=\"发送\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13925378', // checked=false\n            'https://i.gkd.li/i/13925380', // checked=true\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '全屏广告-下单后出现的弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.xunmeng.pinduoduo.activity.NewPageMaskActivity',\n            'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n          ],\n          action: 'clickCenter',\n          matches: 'Button[text=\"关闭弹窗\" || desc=\"关闭弹窗\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13927594',\n            'https://i.gkd.li/i/14434154',\n            'https://i.gkd.li/i/14456017',\n            'https://i.gkd.li/i/13308175',\n            'https://i.gkd.li/i/23256823',\n          ],\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '青少年模式',\n      desc: '点击[我知道了]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.ui.activity.HomeActivity',\n          matches:\n            '[text=\"青少年模式\"] < FrameLayout +5 ViewGroup [text=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13809053',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '权限提示-通知权限',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: '.ui.activity.HomeActivity',\n          matches:\n            'FrameLayout > ViewGroup[vid=\"pdd\"] > ViewGroup > ViewGroup[childCount<3] > ViewGroup[childCount=3 || childCount=2] >(1,2) ImageView[clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14109435',\n            'https://i.gkd.li/i/14549423',\n            'https://i.gkd.li/i/14662202', // 避免在此页面误触\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          action: 'back',\n          activityIds: [\n            '.ui.activity.HomeActivity',\n            '.activity.NewPageActivity',\n            '.ui.activity.MainFrameActivity',\n          ],\n          matches:\n            '[text=\"及时获取物流消息\" || text=\"开启通知\" || text=\"允许通知\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15004580',\n            'https://i.gkd.li/i/15048085',\n            'https://i.gkd.li/i/16643295',\n            'https://i.gkd.li/i/18371979',\n          ],\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '全屏广告-[个性化推荐]弹窗',\n      desc: '点击[取消]',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.xunmeng.pinduoduo.ui.activity.HomeActivity',\n          matches: ['[text=\"个性化推荐未开启\"]', '[text=\"取消\"]'],\n          exampleUrls: 'https://e.gkd.li/816070f2-035d-4702-87e3-441cca8b5430',\n          snapshotUrls: 'https://i.gkd.li/i/14964851',\n        },\n      ],\n    },\n    {\n      key: 20,\n      name: '其他-登录提现页面点击[跳过]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.login.LoginActivity',\n          matches: ['[text=\"已获得现金\"]', '[text=\"跳过\"]'],\n          exampleUrls: 'https://e.gkd.li/4197b363-3492-4f87-a9dd-109da67bb3bf',\n          snapshotUrls: 'https://i.gkd.li/i/17450614',\n        },\n      ],\n    },\n    {\n      key: 21,\n      name: '功能类-关闭截图后的弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          action: 'back', // 点击取消会导致 MIUI 截图悬浮窗收起\n          activityIds: '.activity.NewPageActivity',\n          matches: '[text=\"搜索图片同款商品\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/19340768',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xwg.cc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xwg.cc',\n  name: '希望谷',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.other.YLHAdvertActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/ed6e343a-7a53-4d22-84b8-a2da1da5b241',\n          snapshotUrls: 'https://i.gkd.li/i/23228410',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.xyhui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.xyhui',\n  name: 'PU口袋校园',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 1,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: [\n            'com.xyhui.start.PUMainActivity',\n            'com.xyhui.start.LoadingActivity',\n            '.lut.act.LutMainActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14472097',\n            'https://i.gkd.li/i/13695488',\n            'https://i.gkd.li/i/23325238',\n          ],\n        },\n        {\n          key: 2,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: [\n            'com.xyhui.start.PUMainActivity',\n            'com.xyhui.start.LoadingActivity',\n          ],\n          matches:\n            'ImageView < @ViewGroup[clickable=true] < * <2 * +n * >(1,3) [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/1d51a37a-0444-4850-983c-3646b494204a',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16837806',\n            'https://i.gkd.li/i/13259196',\n            'https://i.gkd.li/i/13259198',\n          ],\n        },\n        {\n          key: 3,\n          name: '字节广告',\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: 'View[clickable=true] < FrameLayout +4 * >2 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13259183',\n        },\n        {\n          key: 4,\n          name: '美数广告',\n          fastQuery: true,\n          activityIds: 'com.meishu.sdk.activity.SdkInterstitialActivity',\n          matches: '[id=\"com.xyhui:id/ms_activity_sdk_interstitial_cacel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13458692',\n        },\n        {\n          key: 5,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text=\"反馈\"] + @View[visibleToUser=true] > Image',\n          snapshotUrls: 'https://i.gkd.li/i/14560546',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: [\n            'com.xyhui.start.PUMainActivity',\n            'com.xyhui.start.LoadingActivity',\n            '.lut.act.LutMainActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14472098',\n            'https://i.gkd.li/i/14766902',\n            'https://i.gkd.li/i/23146070',\n            'https://i.gkd.li/i/23304106',\n            'https://i.gkd.li/i/24488993',\n          ],\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          activityIds: '.lut.act.LutMainActivity',\n          matches:\n            'ImageView[childCount=0][text=null] < @ViewGroup[childCount=1][clickable=true][visibleToUser=true] < ViewGroup +n ViewGroup[childCount=2] > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/240494b6-026f-49f7-a77d-986e70077218',\n          snapshotUrls: 'https://i.gkd.li/i/18245369',\n        },\n        {\n          key: 8,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n          matches:\n            '@Image[childCount=0][text=\"\"] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22863858',\n        },\n        {\n          key: 9,\n          fastQuery: true,\n          activityIds: [\n            'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n            'com.smartdigimkt.sdk.basead.ui.ATPortraitTranslucentActivity',\n            'com.beizi.ad.v2.activity.BeiZiNewInterstitialActivity',\n          ],\n          matches:\n            '[vid=\"anythink_myoffer_btn_close_id\" || vid=\"sdm_myoffer_btn_close_id\" || vid=\"beizi_interstitial_ad_close_iv\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22868736',\n            'https://i.gkd.li/i/23293759',\n            'https://i.gkd.li/i/23577343',\n          ],\n        },\n        {\n          key: 10,\n          fastQuery: true,\n          activityIds: '.lut.act.LutMainActivity',\n          matches: '@[text=\"关闭\"] < * +n * >(1,2) [text*=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23125533',\n            'https://i.gkd.li/i/23577305',\n          ],\n        },\n        {\n          key: 11,\n          fastQuery: true,\n          activityIds: '.lut.act.LutMainActivity',\n          matches:\n            '@ImageView[width<140 && height<140] - * > [text^=\"请允许\"][text$=\"安装应用\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23125594',\n        },\n        {\n          key: 12,\n          name: '京东广告',\n          fastQuery: true,\n          activityIds: '.lut.act.LutMainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23325124',\n        },\n        {\n          key: 13,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n          matches:\n            '@ImageView[width<100 && height<100] <<4 * + * >4 [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23567050',\n        },\n        {\n          key: 14,\n          fastQuery: true,\n          activityIds: '.lut.act.LutMainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23937136',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-首页-右侧浮窗广告',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            '.lut.act.LutMainActivity',\n            'com.xyhui.start.PUMainActivity',\n            'com.xyhui.start.LoadingActivity',\n          ],\n          matches: 'ImageView[id=\"com.xyhui:id/deleteIv\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22863860',\n            'https://i.gkd.li/i/12846543',\n            'https://i.gkd.li/i/12868119',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.pu.activity.act.ActivityApplyResult',\n          matches: ['[text^=\"打开系统消息通知\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/23206833',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-打开应用自动进入部落',\n      desc: '点击我的-我的部落-已通过-部落详情（如果有多个则点击第一个，仅开屏时触发一次）',\n      rules: [\n        // 部分规则不使用 preKeys，因为中途可能会有广告打断\n        {\n          key: 0,\n          name: '点击导航栏[我的]',\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.lut.act.LutMainActivity',\n          matches:\n            '@ViewGroup[clickable=true][visibleToUser=true] > [text=\"我的\"] <<n [vid=\"mCustomTabView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23303536',\n        },\n        {\n          key: 1,\n          name: '点击[我的部落]',\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.lut.act.LutMainActivity',\n          matches:\n            '@LinearLayout[vid=\"itemView\"][visibleToUser=true] > [text=\"我的部落\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23303537',\n        },\n        {\n          key: 2,\n          name: '点击[已通过]',\n          fastQuery: true,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.lut.tribe.act.MyLutTribeAct',\n          matches:\n            '@RelativeLayout[clickable=true][visibleToUser=true] > [text=\"已通过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23303538',\n        },\n        {\n          preKeys: [2],\n          name: '进入部落详情',\n          fastQuery: true,\n          activityIds: 'com.lut.tribe.act.MyLutTribeAct',\n          matches:\n            '@LinearLayout[clickable=true][visibleToUser=true] < [vid=\"mRecyclerView\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23303539',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yaxisvip.pubgtool.iueg.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yaxisvip.pubgtool.iueg',\n  name: '次元城动画',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告',\n      rules: [\n        {\n          activityIds: 'top.cycdm.cycapp.MainActivity',\n          matches:\n            '[text=\"我知道了\"] < @[clickable=true] -n * > [text=\"重要通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24331012',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/24331009',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ydtx.camera.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ydtx.camera',\n  name: '元道经纬相机',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true][top<600]',\n          exampleUrls: 'https://e.gkd.li/a2e4b32b-dfee-4626-9612-6df0cb530f9e',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20882921',\n            'https://i.gkd.li/i/20896758',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20882935', // 左下角的跳过按钮是一个假按钮，点击会误触广告\n        },\n        {\n          key: 1, // 字节SDK\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/20883248',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yek.android.uniqlo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yek.android.uniqlo',\n  name: '优衣库',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.yek.android.uniqlo.uiux.Home.activity.HomeActivity',\n          matches: 'ImageView[id=\"com.yek.android.uniqlo:id/pop_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13212320',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击取消',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.WelcomeActivity',\n          matches: '@TextView[text=\"取消\"] + TextView[text=\"确定\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13446421',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yfoo.listen.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yfoo.listen',\n  name: '聆听音乐',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.yfoo.listenx.activity.HomeActivity',\n          matches: '@[text=\"取消\"] < * > [text=\"下载\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15856014',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ygkj.chelaile.standard.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ygkj.chelaile.standard',\n  name: '车来了',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'dev.xesam.chelaile.app.module.func.SplashActivity',\n            'dev.xesam.chelaile.app.module.PanelHostActivity',\n            'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',\n          ],\n          matches:\n            '@[vid=\"cll_all_pic_close_1\"][visibleToUser=true] < FrameLayout +(1,2) LinearLayout[childCount=2] > [text$=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/7957cdea-6238-4a2b-94bf-8960544258bc',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13062991',\n            'https://i.gkd.li/i/13464325',\n            'https://i.gkd.li/i/16987313',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: [\n            'dev.xesam.chelaile.app.module.PanelHostActivity',\n            'dev.xesam.chelaile.app.module.line.TimeTableActivity',\n            'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',\n          ],\n          excludeMatches: '[text=\"选择下车站\"][visibleToUser=true]',\n          matches:\n            '[vid=\"cll_line_single_ad_close\" || vid=\"cll_close\" || vid=\"cll_card_single_ad_close\"][visibleToUser=true][width<110 && height<110]',\n          exampleUrls: 'https://e.gkd.li/7d7b7d94-eb64-41a5-a5c2-c8418d6371a1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13625374',\n            'https://i.gkd.li/i/16956570',\n            'https://i.gkd.li/i/16987313',\n            'https://i.gkd.li/i/16988894',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/25092999',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',\n          matches:\n            'FrameLayout[childCount=2] > FrameLayout[childCount=2] > FrameLayout[childCount=3] > FrameLayout[childCount=1] > @ImageView[visibleToUser=true][childCount=0][text=null] <<n [vid=\"cll_line_detail_widgets_container\"]',\n          exampleUrls: 'https://e.gkd.li/5442e403-7934-4fbf-b837-71d4ed8581cb',\n          snapshotUrls: 'https://i.gkd.li/i/16956583',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds:\n            'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',\n          matches:\n            '@[vid=\"close_ad_text_link_layout\"][visibleToUser=true] - LinearLayout[childCount=2] > [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/26c77ba0-8be5-4966-b806-3a566fee8413',\n          snapshotUrls: 'https://i.gkd.li/i/16987313',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'dev.xesam.chelaile.app.module.PanelHostActivity',\n          matches:\n            '[id=\"com.ygkj.chelaile.standard:id/cll_interstitial_close\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/31613a9d-202a-4359-bc99-274dddb180ce',\n          snapshotUrls: 'https://i.gkd.li/i/14325666',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds:\n            'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][width<100&&height<100][visibleToUser=true] <n * >3 [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/4ab8665e-026f-4101-8299-0300708c91c1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/16812335',\n            'https://i.gkd.li/i/21120116',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'dev.xesam.chelaile.app.module.PanelHostActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/20502977',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'dev.xesam.chelaile.app.module.PanelHostActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/76d02bfa-6d04-4005-b5aa-30ecfdd3cd84',\n          snapshotUrls: 'https://i.gkd.li/i/21139548',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'dev.xesam.chelaile.app.module.PanelHostActivity',\n          matches:\n            '@ViewGroup[childCount=1][visibleToUser=true][width<100 && height<100] + ViewGroup > [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/1f1c3315-d245-404b-ad16-554583b16283',\n          snapshotUrls: 'https://i.gkd.li/i/21120146',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '功能类-打开app自动点击收藏列表第一个车🚗(不要同时开启哦~)',\n      desc: '启动app-收藏列表第一个车线-进入车线详情',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'dev.xesam.chelaile.app.module.PanelHostActivity',\n          matches:\n            '@FrameLayout[clickable=true][getChild(0).vid=\"fav_line_layout\"] - LinearLayout >2 [text=\"我的收藏\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25091170',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '功能类-打开app自动点击第一个车🚗后打开地图🗺️(不要同时开启哦~)',\n      desc: '启动app-收藏列表第一个车线-进入车线详情-点击地图查看所有车次位置',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: 'dev.xesam.chelaile.app.module.PanelHostActivity',\n          matches:\n            '@FrameLayout[clickable=true][getChild(0).vid=\"fav_line_layout\"] - LinearLayout >2 [text=\"我的收藏\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25091170',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          activityIds:\n            'dev.xesam.chelaile.app.module.line.gray.LineDetailActivity',\n          matches: '[vid=\"cll_cover\"][visibleToUser=true][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25091375',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yikaobang.yixue.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yikaobang.yixue',\n  name: '医考帮',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-会员活动弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.psychiatrygarden.activity.HomePageNewActivity',\n          matches: '@ImageView[id=\"com.yikaobang.yixue:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13425853',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yingyonghui.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yingyonghui.market',\n  name: '应用汇',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          fastQuery: true,\n          activityIds: 'com.yingyonghui.market.ui.MainActivity',\n          matches: [\n            '[text=\"广告\"]',\n            '@ImageView[clickable=true] - [text=\"|\"] - [text$=\"s\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13538316',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yipiao.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yipiao',\n  name: '智行火车票',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4bae84e9-357a-4cc9-a38b-c6949f5753cd',\n          snapshotUrls: 'https://i.gkd.li/i/20903066',\n        },\n        {\n          key: 1,\n          position: {\n            left: 'width * 0.8759',\n            top: 'width * 2.0519',\n          },\n          excludeMatches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          matches: '[desc=\"广告素材\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/375bf789-95f6-4646-b433-3d3b25dda58a',\n          snapshotUrls: 'https://i.gkd.li/i/16896514',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/20903066',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yitong.mbank.psbc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yitong.mbank.psbc',\n  name: '邮储银行',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.module.home.view.activity.MainActivity',\n            '.module.app.view.customview.dialog.DialogUpdateApk',\n          ],\n          matches: 'Button[id=\"com.yitong.mbank.psbc:id/bt_cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12685350',\n            'https://i.gkd.li/i/13695462',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-首页弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'com.yitong.mbank.psbc.module.home.view.activity.MainActivity',\n          matches:\n            '[id=\"com.yitong.mbank.psbc:id/iv_theme\"] + [id=\"com.yitong.mbank.psbc:id/iv_theme_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12755516',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-首页-浮窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'com.yitong.mbank.psbc.module.home.view.activity.MainActivity',\n          matches: '[id=\"com.yitong.mbank.psbc:id/img_close_float_window\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13797314',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ylmf.androidclient.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ylmf.androidclient',\n  name: '115生活',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-自动签到',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        'com.ylmf.androidclient.UI.MainBossActivity',\n        'com.main.world.equity.activity.SignInActivity',\n        'com.main.world.equity.activity.SignInRewardActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '点击[签到]-1',\n          matches: '@[clickable=true] >2 [text=\"签到\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14738911', // 签到前\n            'https://i.gkd.li/i/14738906', // 签到后\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 3,\n          name: '点击[签到]-2',\n          matches: '[vid=\"iv_sign_in_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15510753',\n        },\n        {\n          preKeys: [0, 3],\n          key: 1,\n          name: '点击[我知道了]',\n          matches: '[text=\"我知道了\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14738909',\n            'https://i.gkd.li/i/15510873',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          name: '返回',\n          action: 'back',\n          matches: '[text=\"签到规则\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14738907',\n            'https://i.gkd.li/i/15509322',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      desc: '点击[返回]关闭页面',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ylmf.androidclient.UI.UpdateVersionActivity',\n          matches: '@[desc=\"转到上一层级\"] + [text=\"更新版本\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/43d4fa0c-789c-4cf7-aa12-7232e9d23e6d',\n          snapshotUrls: 'https://i.gkd.li/i/14738944',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yoloho.dayima.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yoloho.dayima',\n  name: '大姨妈',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯SDK',\n          fastQuery: true,\n          activityIds: '.activity.MainPageActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13800255',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.youdao.dict.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.youdao.dict',\n  name: '网易有道词典',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-单词页面卡片广告',\n      fastQuery: true,\n      activityIds: ['.activity.MainActivity', '.activity.DictQueryActivity'],\n      rules: [\n        {\n          key: 0,\n          matches: ['[text=\"广告\"]', '[vid=\"close\"][visibleToUser=true]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13800055',\n            'https://i.gkd.li/i/16278151',\n            'https://i.gkd.li/i/17963902',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '[vid=\"close_pop\"][text=\"收起广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13800056',\n            'https://i.gkd.li/i/16278150',\n            'https://i.gkd.li/i/17963904',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '首页-弹窗广告',\n          fastQuery: true,\n          activityIds: [\n            'com.youdao.dict.activity.MainActivity',\n            'com.youdao.dict.activity.DictSplashActivity',\n          ],\n          matches: '@ImageView[id=\"com.youdao.dict:id/iv_close_bt\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12893419',\n            'https://i.gkd.li/i/13263801',\n          ],\n        },\n        {\n          key: 1,\n          name: '学习页面-弹窗广告',\n          fastQuery: true,\n          activityIds: [\n            'com.youdao.dict.edu.main.MainPopDialog',\n            'com.youdao.dict.activity.MainActivity',\n            '.activity.DictQueryActivity',\n          ],\n          matches: '[vid=\"iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12893450',\n            'https://i.gkd.li/i/16859556',\n            'https://i.gkd.li/i/20602998',\n          ],\n        },\n        {\n          key: 2,\n          name: '抽奖机会-弹窗广告',\n          fastQuery: true,\n          activityIds: [\n            'com.youdao.dict.activity.DictSplashActivity',\n            'com.youdao.dict.activity.DictHotBootSplashActivity',\n          ],\n          matches: '[vid=\"skip_bottom_view\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13931202',\n            'https://i.gkd.li/i/14064647',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          name: '首页-礼包弹窗',\n          activityIds: 'com.youdao.dict.activity.MainActivity',\n          matches: '[vid=\"image\"] + [vid=\"close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14296482',\n        },\n        {\n          key: 4,\n          activityIds: '.activity.DictQueryActivity',\n          matches:\n            '@[vid=\"iv_cancel\"][visibleToUser=true] - [vid=\"fl_video_container\"]',\n          exampleUrls: 'https://e.gkd.li/342a587e-bf0d-42e9-8c16-3c0b53240e5a',\n          snapshotUrls: 'https://i.gkd.li/i/18051512',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-VIP弹窗',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            'com.youdao.dict.vip.activity.RecallSevenDayVipActivity',\n            'com.youdao.dict.vip.activity.SecondShowNewUserSevenDayVipActivity',\n            '.activity.DictQueryActivity',\n            '.vip.activity.FirstShowNewUserSevenDayVipActivity',\n          ],\n          matches: 'ImageView[vid=\"iv_close\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13263706',\n            'https://i.gkd.li/i/14381735',\n            'https://i.gkd.li/i/16929322',\n            'https://i.gkd.li/i/22275220',\n          ],\n        },\n        {\n          key: 1,\n          activityIds: 'com.youdao.feature_ai.AiMainActivity',\n          matches: '[vid=\"aiv_guide_cancel\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/7bfd334a-38a0-4251-966c-1df55c168425',\n          snapshotUrls: 'https://i.gkd.li/i/16426631',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '评价提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.activity.MainActivity',\n            '.activity.DictQueryActivity',\n          ],\n          matches: '[id=\"com.youdao.dict:id/btn_never\"][text*=\"不再提醒\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13540941',\n            'https://i.gkd.li/i/14256301',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MainActivity',\n          matches:\n            '[id=\"com.youdao.dict:id/tv_version\"] + [id=\"com.youdao.dict:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13627912',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '功能类-点击显示释义',\n      activityIds:\n        'com.youdao.dict_flutter_android_bridge.WordBookFlutterActivity',\n      rules: [\n        {\n          matches: '[desc=\"点击显示释义\"] > View[index=3][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14292588', // 点击显示释义前\n            'https://i.gkd.li/i/14292587', // 点击显示释义后\n          ],\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.activity.MainActivity',\n            '.activity.DictQueryActivity',\n          ],\n          matches:\n            '[vid=\"aivClose\" || vid=\"course_one_course_close\" || vid=\"home_ad_close\" || vid=\"course_four_course_close\" || vid=\"promotion_close_zone\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/df92c524-c732-4c16-9266-326056c9acf8',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14468564',\n            'https://i.gkd.li/i/14567234',\n            'https://i.gkd.li/i/14895765',\n            'https://i.gkd.li/i/14009705',\n            'https://i.gkd.li/i/14559287',\n            'https://i.gkd.li/i/17082441',\n            'https://i.gkd.li/i/17115693',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14468628', // visibleToUser=true 防止在此页面选中屏幕外节点\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '功能类-关闭单词页面[去复习]提示',\n      desc: '通过点击提示框以外的其他地方关闭',\n      rules: [\n        {\n          fastQuery: true,\n          position: {\n            left: 'width * 0.7231',\n            top: 'width * -1.0673',\n          },\n          activityIds: [\n            'com.youdao.dict.activity.DictQueryActivity',\n            'com.youdao.dict.activity.MainActivity',\n          ],\n          matches: '[text=\"已收藏单词一周，快去复习吧\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ab107cc2-98e1-44a2-a15a-0ee0d4925255',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14524540',\n            'https://i.gkd.li/i/14524817',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-开学福利弹窗',\n      desc: '点击[不要再提醒我]-点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.youdao.dict.activity.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"不要再提醒我\"][checked=false]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f665b390-2ef6-47be-8246-99632b24c5de',\n          snapshotUrls: 'https://i.gkd.li/i/14586448',\n        },\n        {\n          preKeys: 0,\n          key: 1,\n          matches: '[vid=\"dialog_close_btn\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f665b390-2ef6-47be-8246-99632b24c5de',\n          snapshotUrls: 'https://i.gkd.li/i/14586448',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.youdao.note.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.youdao.note',\n  name: '有道云笔记',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 1,\n          name: '首页上方卡片广告',\n          fastQuery: true,\n          activityIds: 'com.youdao.note.activity2.MainActivity',\n          matches:\n            '[id=\"com.youdao.note:id/recycle_view\"] + [id=\"com.youdao.note:id/close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13379524',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.youdao.translator.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.youdao.translator',\n  name: '有道翻译官',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-翻译界面-结果下方广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.youdao.translator.activity.trans.TransResultActivity',\n          matches:\n            '@ImageView[id=\"com.youdao.translator:id/close_iv\"] + [id=\"com.youdao.translator:id/native_ad_flag_tv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13259910',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.youku.phone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.youku.phone',\n  name: '优酷视频',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-视频推荐弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.youku.vip.wrapper.VipHomeActivity',\n          matches: '[id=\"com.youku.phone:id/closeView\"][desc=\"关闭弹层\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12701029',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-视频播放时的广告',\n      desc: '点击[关闭广告]',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.youku.ui.activity.DetailActivity',\n          matches: '[text=\"关闭广告\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/529c75b6-1a97-4765-856b-dd4d4c810207',\n          snapshotUrls: 'https://i.gkd.li/i/14321401',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.youku.ui.activity.DetailActivity',\n          matches: '[vid=\"xadsdk_pause_ad_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/42773084-a7db-4e70-878d-6a5eacd5ecb2',\n          snapshotUrls: 'https://i.gkd.li/i/14321469',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '视频播放时的广告',\n          fastQuery: true,\n          activityIds: 'com.youku.ui.activity.DetailActivity',\n          matches: '[vid=\"novelad_corner_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8994fdc0-fce0-4a06-8bc5-2ff23fc3afe5',\n          snapshotUrls: 'https://i.gkd.li/i/14321461',\n        },\n        {\n          key: 1,\n          name: '历史记录/搜索页面广告',\n          fastQuery: true,\n          activityIds: [\n            'com.youku.android.youkuhistory.activity.HistoryActivity',\n            'com.soku.searchsdk.activity.SearchActivity',\n          ],\n          matches: '[vid=\"novel_banner_ad_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7a160f41-b101-40dc-b875-533623228406',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14670383',\n            'https://i.gkd.li/i/14680702',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.youku.ui.activity.DetailActivity',\n          matches: '[vid=\"xadsdk_banner_ad_close\"]',\n          exampleUrls: 'https://e.gkd.li/8577d2e5-20a4-40e0-92f0-191bafeb55ed',\n          snapshotUrls: 'https://i.gkd.li/i/16925042',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '分段广告-首页卡片广告',\n      fastQuery: true,\n      activityIds: 'com.youku.v2.HomePageEntry',\n      rules: [\n        {\n          key: 0,\n          matches: '[vid=\"novel_banner_ad_feed_back\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6ae8cc7b-1302-4f10-b544-8d8265a69610',\n          snapshotUrls: 'https://i.gkd.li/i/16925043',\n        },\n        {\n          preKeys: [0],\n          matches: '[text=\"就是不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/be57974c-6656-4619-aed8-c61421f6a748',\n          snapshotUrls: 'https://i.gkd.li/i/16977036',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.youloft.calendar.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.youloft.calendar',\n  name: '万年历',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-悬浮广告',\n      rules: [\n        {\n          key: 0,\n          name: '万年历页面-右侧悬浮广告',\n          fastQuery: true,\n          activityIds: 'com.youloft.calendar.MainActivity',\n          matches: '[id=\"com.youloft.calendar:id/ad_iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13348416',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.youloft.icloser.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.youloft.icloser',\n  name: '心动日常',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-购买会员弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.youloft.icloser.view.dialog.VipRetainPacketDialog',\n          matches: '[id=\"com.youloft.icloser:id/tv_later_buy\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13067183',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-右下角悬浮窗小广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.youloft.icloser.activity.MainActivity',\n          matches: '[id=\"com.youloft.icloser:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13164387',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yuanshi.wenxiaobai.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yuanshi.wenxiaobai',\n  name: '问小白',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<80 && height<80] < View[childCount=1] < View[childCount=1] < View[childCount=1] < View[childCount=1] + View[childCount=1] >2 [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6efff57b-4697-4a4a-97da-de7e8b8dd7f2',\n          snapshotUrls: 'https://i.gkd.li/i/23687188',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yujian.ResideMenuDemo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yujian.ResideMenuDemo',\n  name: '雨见',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'cn.yujian.MainActivity',\n          matches:\n            'TextView[id=\"com.yujian.ResideMenuDemo:id/btn_selectOther\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13224234',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yunxiang.wuyu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yunxiang.wuyu',\n  name: '特狗APP',\n  groups: [\n    {\n      key: 2,\n      name: '通知提示-公告弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13455634',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: 'com.yunxiang.wuyu.MainActivity',\n      rules: [\n        {\n          key: 1,\n          name: '\"x\"型',\n          matches:\n            'ImageView < @ViewGroup[clickable=true] < ViewGroup +n ViewGroup [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13455628',\n        },\n        {\n          key: 2,\n          name: '\"跳过\"型',\n          matches: [\n            'TextView[text=\"广告\"]',\n            '@ViewGroup > TextView[text=\"跳过\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13455629',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yunyi.smartcamera.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yunyi.smartcamera',\n  name: '云蚁物联',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.ants360.yicamera.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/ad388d03-bb0a-44a4-92ee-af37b83776da',\n          snapshotUrls: 'https://i.gkd.li/i/24979355',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.xiaoyi.yiplayer.ui.PlayerActivity',\n          matches: '@[vid=\"ivClose\"] - [text=\"专属福利\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/248a2243-5323-4a21-bed2-25f6afc8a88b',\n          snapshotUrls: 'https://i.gkd.li/i/24979364',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches: [\n            '[text*=\"广告\"][visibleToUser=true]',\n            '[text=\"关闭\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/24989298',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24989256',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          matches: '[vid=\"iv_ad_logo\"] - [vid=\"iv_close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25016571',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ants360.yicamera.activity.MainActivity',\n          matches:\n            'ImageView[childCount=0] < @* - * > [text^=\"立即\" || text*=\"了解更多\" || text*=\"快手\"][visibleToUser=true] <<n [vid=\"native_ad_container\"]',\n          exampleUrls: 'https://e.gkd.li/0f5246d3-42c4-486d-9694-f90dd19a22d2',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24979363',\n            'https://i.gkd.li/i/24989254',\n            'https://i.gkd.li/i/24989255',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '权限提示-通知权限',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.ants360.yicamera.activity.MainActivity',\n          matches:\n            '[text=\"开启通知\"][childCount=0] +n [text=\"暂不开启\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25017451',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yunzhi.tiyu.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yunzhi.tiyu',\n  name: '云运动',\n  groups: [\n    {\n      key: 2,\n      name: '分段广告-首页卡片广告',\n      desc: '点击关闭-点击[不感兴趣]',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          activityIds: 'com.yunzhi.tiyu.module.MainActivity',\n          matches:\n            '@Image[childCount=0][visibleToUser=true][width<80&&height<80] < View[childCount=1] +n View[childCount=2] >(2,3) [text=\"广告\"] <<n [vid=\"viewAd\" || vid=\"fl_flow_content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/369a65c8-4207-441b-a20d-2f5e402ea983',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14428780',\n            'https://i.gkd.li/i/14428777',\n            'https://i.gkd.li/i/14446375',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击[不感兴趣]',\n          activityIds: 'com.yunzhi.tiyu.module.MainActivity',\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/1e5bff7e-b82b-458e-9179-364e6bf2c1da',\n          snapshotUrls: 'https://i.gkd.li/i/14446216',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.yuque.mobile.android.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.yuque.mobile.android.app',\n  name: '语雀',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告-\"用语雀公众号\"横幅提示',\n      desc: '点x取消提示',\n      rules: [\n        {\n          activityIds:\n            'com.yuque.mobile.android.app.rn.activity.ReactNativeMainActivity',\n          matches: 'TextView[text=\"了解更多\"] + ViewGroup[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12911014',\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '功能类-自动原图',\n      desc: '如果没有勾选原图, 则勾选',\n      rules: [\n        {\n          activityIds:\n            'com.yuque.mobile.android.app.rn.activity.ReactNativeMainActivity',\n          matches: 'ViewGroup[desc=\"原图未勾选\"][clickable=true][childCount=2]',\n          snapshotUrls: 'https://i.gkd.li/i/12911013',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zb.sph.zaobaosingapore.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zb.sph.zaobaosingapore',\n  name: '联合早报',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches:\n            '[id=\"mys-content\"] > View[childCount=2] > View[index=1][childCount=1] > Button[clickable=true][childCount=0][visibleToUser=true][text=\"\"]',\n          exampleUrls: 'https://e.gkd.li/6892e4e4-a765-415d-9c23-5587472b6f6e',\n          snapshotUrls: 'https://i.gkd.li/i/18297111',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'sg.com.sph.app.views.bnavigation.MainActivity',\n          matches:\n            '@Button[id=\"cbb\"][text=\"\"][clickable=true][visibleToUser=true] - [visibleToUser=true][id=\"abgb\"] <<n [vid=\"adsLayout\"]',\n          exampleUrls: 'https://e.gkd.li/f3d93356-2762-4547-b5eb-abf9cc83eb6a',\n          snapshotUrls: 'https://i.gkd.li/i/18297090',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zbx.ct.tvzhibo.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zbx.ct.tvzhibo',\n  name: '手机电视高清直播',\n  groups: [\n    {\n      key: 3,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '字节SDK',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '@Image[text.length=0] < View -n [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13739951',\n        },\n        {\n          key: 1,\n          name: '腾讯SDK',\n          fastQuery: true,\n          activityIds: 'com.tvmain.mvp.view.activity.TvMainActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13766516',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '局部广告-浮窗广告',\n      desc: '会出现在更多页面、播放页面',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: [\n            'com.tvmain.mvp.view.activity.TvMainActivity',\n            'com.tvmain.mvp.view.activity.LivePlayerActivity',\n          ],\n          matches: '[id=\"com.zbx.ct.tvzhibo:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13740079',\n            'https://i.gkd.li/i/13740126',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-播放页面弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          activityIds: 'com.tvmain.mvp.view.activity.VodPlayerActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13739932',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zgnet.eClass.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zgnet.eClass',\n  name: '掌医课堂',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: 'TextView[id$=\"tv_close_time\"&&text^=\"关闭\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12644260',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-退出确认弹窗',\n      rules: [\n        {\n          matches:\n            '[text*=\"确定要退出\"] < LinearLayout +n LinearLayout > TextView[id$=\"tv_exit_sure\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12645513',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhengnengliang.precepts.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhengnengliang.precepts',\n  name: '正气',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.zhengnengliang.precepts.ui.activity.MainActivity',\n            'com.zhengnengliang.precepts.ui.dialog.DialogTwoButton',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <(2,3) FrameLayout[childCount=4] +(1,2) FrameLayout[childCount=2] >2 [text^=\"立即\" || text=\"去逛逛\"]',\n          exampleUrls: 'https://e.gkd.li/9b352715-611f-4fa3-a66e-cf9203dddf75',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12739767',\n            'https://i.gkd.li/i/12727705',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.ui.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/5813656b-8d39-4c14-b459-038fa41366a3',\n          snapshotUrls: 'https://i.gkd.li/i/14338307',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhihu.android.lite.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhihu.android.lite',\n  name: '知乎极速版',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-底部悬浮卡片',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.zhihu.android.mixshortcontainer.MixShortContainerActivity',\n          matches:\n            'View[childCount=3] > @View[clickable=true][childCount=1][text=\"\"] > Image[childCount=0][text=\"\"] <<n [vid=\"view_content\"]',\n          exampleUrls: 'https://e.gkd.li/23c80cb4-4bad-451c-b8e9-bfdbdfa7c6c5',\n          snapshotUrls: 'https://i.gkd.li/i/16413243',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhihu.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhihu.android',\n  name: '知乎',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          fastQuery: true,\n          excludeActivityIds: [\n            '.app.SearchActivity',\n            '.comment.ui.activity.CommentListActivity',\n            '.feature.short_container_feature.ui.ShortContainerHostActivity',\n          ],\n          matches:\n            '([vid=\"btn_skip\"][visibleToUser=true]) || ([text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true])',\n          exampleUrls: 'https://e.gkd.li/e129aaa6-bf4f-4455-9242-a6779667d814',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18221451',\n            'https://i.gkd.li/i/22714295',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/18221225',\n            'https://i.gkd.li/i/23141429',\n            'https://i.gkd.li/i/24229324',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '分段广告-信息流广告',\n      desc: '点击关闭-点击内容不感兴趣',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: [\n            '.feature.short_container_feature.ui.ShortContainerHostActivity',\n            '.ContentActivity',\n          ],\n          matches:\n            '@[clickable=true][visibleToUser=true] -(1,2) TextView[childCount=0][id=null][text=null][desc=null] <n ViewGroup >n [text*=\"广告\"][childCount=0][id=null][desc=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13849671',\n            'https://i.gkd.li/i/14645530',\n            'https://i.gkd.li/i/14178516',\n            'https://i.gkd.li/i/13849442',\n            'https://i.gkd.li/i/14178979',\n            'https://i.gkd.li/i/14178980',\n            'https://i.gkd.li/i/14206949',\n            'https://i.gkd.li/i/14206988',\n            'https://i.gkd.li/i/18008867',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/17002118',\n            'https://i.gkd.li/i/17002119',\n            'https://i.gkd.li/i/17002120',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: '.app.ui.activity.MainActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0] < FrameLayout[childCount=1] - * > [text*=\"广告\" || text$=\"商品介绍\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14296163',\n            'https://i.gkd.li/i/14321041',\n            'https://i.gkd.li/i/14468152',\n            'https://i.gkd.li/i/17237944',\n          ],\n        },\n        {\n          key: 3,\n          activityIds: [\n            '.app.ui.activity.MainActivity',\n            '.ContentActivity',\n            '.feature.short_container_feature.ui.ShortContainerHostActivity',\n          ],\n          matches:\n            '@ViewGroup[clickable=true][childCount=1] <(2,3,4) ViewGroup -(2,3) ViewGroup[childCount>1] >(1,2) [text*=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/60c4dea8-99c1-4a6f-aca6-a098b5ed76d7',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14192451',\n            'https://i.gkd.li/i/18217217',\n            'https://i.gkd.li/i/19591989',\n            'https://i.gkd.li/i/21813914',\n            'https://i.gkd.li/i/24214771',\n          ],\n        },\n        {\n          key: 4,\n          activityIds: '.app.ui.activity.MainActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=1] <3 ViewGroup < ViewGroup -(2,3) ViewGroup >2 [text*=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14332161',\n            'https://i.gkd.li/i/14730741',\n          ],\n        },\n        {\n          key: 5,\n          activityIds:\n            '.feature.short_container_feature.ui.ShortContainerHostActivity',\n          matches: '@[vid=\"remove\"] - [vid=\"subtitle\"][text*=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17268845',\n            'https://i.gkd.li/i/17268869',\n          ],\n        },\n        {\n          preKeys: [0, 2, 3, 4, 5],\n          key: 90,\n          activityIds: [\n            '.feature.short_container_feature.ui.ShortContainerHostActivity',\n            '.ContentActivity',\n            '.app.ui.activity.MainActivity',\n          ],\n          matches:\n            '@[clickable=true] >(1,3) [text$=\"不感兴趣\" || text^=\"屏蔽作者\" || text=\"不喜欢该内容\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13849689',\n            'https://i.gkd.li/i/17237940',\n            'https://i.gkd.li/i/17268849',\n            'https://i.gkd.li/i/23431871',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 1,\n          activityIds: [\n            '.app.ui.activity.MainActivity',\n            '.mix.activity.ContentMixProfileActivity',\n            '.app.ui.activity.HostActivity',\n          ],\n          matches: [\n            '[text$=\"内容推送\" || text=\"开启私信通知\"]',\n            '[vid=\"btn_close\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/18057057',\n            'https://i.gkd.li/i/20647853',\n            'https://i.gkd.li/i/22762314',\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '会员页弹窗广告',\n          activityIds: 'com.zhihu.android.app.ui.activity.MainActivity',\n          matches: '[id=\"com.zhihu.android:id/dismiss\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12707676',\n        },\n        {\n          key: 1,\n          name: '首页弹窗广告',\n          activityIds: 'com.zhihu.android.app.ui.activity.AdAlphaVideoActivity',\n          matches: '[vid=\"tv_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14648128',\n        },\n        {\n          key: 2,\n          name: '会员页红包弹窗',\n          activityIds: 'com.zhihu.android.app.ui.activity.MainActivity',\n          matches: '[id=\"com.zhihu.android:id/floating_close_btn\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12647421',\n        },\n        {\n          key: 3,\n          action: 'clickCenter',\n          activityIds:\n            'com.zhihu.android.creatorcenter.CreatorCenterHostActivity',\n          matches:\n            'View[text=\"关闭\"] > @[visibleToUser=true][text=\"关闭\"] <<n [vid=\"webview_bg\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14955183',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '搜索栏上方广告',\n          fastQuery: true,\n          activityIds: 'com.zhihu.android.app.ui.activity.MainActivity',\n          matches: ['[vid=\"ad_container\"]', '[vid=\"img_close_focus\"]'],\n          exampleUrls:\n            'https://m.gkd.li/101449500/11c26ab8-0b01-4345-8ea8-d4e97233b723',\n          snapshotUrls: 'https://i.gkd.li/i/14156887',\n        },\n        {\n          key: 1,\n          name: '评论区广告',\n          fastQuery: true,\n          activityIds: '.comment.ui.activity.CommentListActivity',\n          matches:\n            '@ViewGroup[childCount=1][clickable=true][visibleToUser=true][getChild(0).name$=\"SvgView\"] - [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/d81b6bc4-f4f9-466d-8edb-7af27c707ca5',\n          snapshotUrls: 'https://i.gkd.li/i/20711018',\n        },\n        {\n          key: 2,\n          name: '优质答主推荐',\n          fastQuery: true,\n          activityIds:\n            'com.zhihu.android.feature.short_container_feature.ui.ShortContainerHostActivity',\n          matches: '@[vid=\"ic_close\"][clickable=true] -n [text=\"更多优质答主\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24335648',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 2,\n          activityIds: [\n            '.mix.activity.ContentMixProfileActivity',\n            '.mixshortcontainer.MixShortContainerActivity',\n          ],\n          matches:\n            '@[text=\"×\"][visibleToUser=true] <n View > [visibleToUser=true][text*=\"广告\" || text=\"查看详情\"] <<n [vid=\"web_frame\" || vid=\"view_content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14220104',\n            'https://i.gkd.li/i/14421277',\n            'https://i.gkd.li/i/15285359',\n          ],\n        },\n        {\n          key: 5,\n          activityIds: [\n            '.mixshortcontainer.MixShortContainerActivity',\n            '.mix.activity.ContentMixProfileActivity',\n          ],\n          matches:\n            '@Image[visibleToUser=true] <2 View > [visibleToUser=true][text$=\"广告\"] <<n [vid=\"view_content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14391614',\n            'https://i.gkd.li/i/15282584',\n            'https://i.gkd.li/i/20648888',\n          ],\n        },\n        {\n          key: 6,\n          activityIds:\n            '.feature.short_container_feature.ui.ShortContainerHostActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true]  -(1,2) TextView[childCount=0][id=null][text=null][desc=null] <n ViewGroup > [text*=\"知乎\" || text=\"创作者小助手\"][childCount=0][id=null][desc=null]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14235024',\n            'https://i.gkd.li/i/14944631',\n            'https://i.gkd.li/i/14232195',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/14232195',\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '局部广告-悬浮广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          name: '发现页面-右侧年卡折扣悬浮窗',\n          activityIds: 'com.zhihu.android.app.ui.activity.MainActivity',\n          matches: ['[vid=\"activity_img\"]', '[vid=\"activity_close\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/14296251',\n        },\n        {\n          key: 1,\n          name: '首页-右侧悬浮窗广告',\n          activityIds: 'com.zhihu.android.app.ui.activity.MainActivity',\n          matches:\n            '@ImageView[clickable=true][visibleToUser=true] + * >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14635636',\n        },\n        {\n          key: 2,\n          name: '回答页-底部关注悬浮窗',\n          activityIds:\n            'com.zhihu.android.feature.short_container_feature.ui.ShortContainerHostActivity',\n          matches: '[vid=\"close_img\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14970008',\n        },\n        {\n          key: 3,\n          activityIds:\n            'com.zhihu.android.mix.activity.ContentMixProfileActivity',\n          matches:\n            'View[childCount=3] > @View[clickable=true][childCount=1][text=\"\"] > Image[childCount=0][text=\"\"] <<n [vid=\"view_content\"]',\n          exampleUrls: 'https://e.gkd.li/6b9afb50-47a3-4426-a157-9b170b57c616',\n          snapshotUrls: 'https://i.gkd.li/i/16422471',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '更新提示',\n      matchTime: 10000,\n      fastQuery: true,\n      resetMatch: 'app',\n      actionMaximum: 1,\n      activityIds: [\n        '.app.ui.activity.MainActivity',\n        '.feature.short_container_feature.ui.ShortContainerHostActivity',\n      ],\n      rules: [\n        {\n          key: 0,\n          name: '勾选[不再提醒]',\n          matches: 'CheckBox[text=\"不再提醒\"][checked=false][clickable=true]', // checked=false 区别勾选前后\n          exampleUrls:\n            'https://m.gkd.li/57941037/728ea1cd-ca19-4de9-9e7e-eb2a3513f965',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14445502', // 勾选前\n            'https://i.gkd.li/i/14445815', // 勾选后\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          name: '点击[取消]',\n          matches: ['[text=\"去应用市场\"]', '[text=\"取消\"]'],\n          exampleUrls:\n            'https://m.gkd.li/57941037/728ea1cd-ca19-4de9-9e7e-eb2a3513f965',\n          snapshotUrls: 'https://i.gkd.li/i/14445502',\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '功能类-热榜页自动点击[展开更多]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zhihu.android.app.ui.activity.MainActivity',\n          matches: '@[clickable=true] >2 [text=\"展开更多\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/09616b29-8a83-4f0f-9f8e-0100fa61738d',\n          snapshotUrls: 'https://i.gkd.li/i/14974198',\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '功能类-自动展开回答',\n      desc: '自动点击展开',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.zhihu.android.mixshortcontainer.MixShortContainerActivity',\n          matches:\n            'ImageView[id=\"com.zhihu.android:id/iv_expand\"] - TextView[id=\"com.zhihu.android:id/tv_expand\"][text=\"展开\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6f6e5fd0-98a8-4a92-be02-7f34e3c5b8bd',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12647688',\n            'https://i.gkd.li/i/12707687', // 使用 [visibleToUser=true] 进行限定，防止在控件不可见时提前触发规则\n          ],\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '评价提示-评论区氛围评价卡片',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.comment.ui.activity.CommentListActivity',\n          matches:\n            '@ViewGroup[clickable=true] - [text^=\"你对该内容下的评论氛围是否满意\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/60674332-41a3-4a31-907e-7af6c23182bf',\n          snapshotUrls: 'https://i.gkd.li/i/20473238',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhiliaoapp.musically.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhiliaoapp.musically',\n  name: 'TikTok',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches:\n            'RelativeLayout[childCount=2] > @ImageView[index=1][clickable=true] <<n [id=\"android:id/custom\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15144780',\n        },\n        {\n          key: 1,\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches:\n            '@UIView[clickable=true] -3 FlattenUIText[text=\"Get products\"]',\n          snapshotUrls: 'https://i.gkd.li/i/16190364',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '权限提示-通知权限',\n      desc: '点击[暂时不要/稍后再说]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: [\n            '[text*=\"通知\"][visibleToUser=true]',\n            '[text=\"暂时不要\" || text=\"稍后再说\"][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/15944175',\n            'https://i.gkd.li/i/17963945',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches:\n            'FrameLayout[childCount=1] >3 FrameLayout[childCount=3] > ImageView[clickable=true][childCount=0]',\n          snapshotUrls: 'https://i.gkd.li/i/16188665',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-好友推荐弹窗',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.ss.android.ugc.aweme.main.MainActivity',\n          matches: '@ImageView[clickable=true] - [text=\"关注你的好友\"]',\n          exampleUrls: 'https://e.gkd.li/32069d2d-032c-4278-9ead-a48a464ecdd0',\n          snapshotUrls: 'https://i.gkd.li/i/16247893',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhima.currency.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhima.currency',\n  name: '汇率速查',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches:\n            '@ImageView[childCount=0] < ViewGroup[childCount=1] - ViewGroup > [text=\"反馈\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c07dc400-c222-4592-bf4e-9fa2227a1751',\n          snapshotUrls: [\n            'https://i.gkd.li/i/21910422',\n            'https://i.gkd.li/i/21910423',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<70 && height<70] < View[childCount=1] < View[childCount=1] + View > [text=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6dded2be-0407-488d-a0cc-4aca133f6fc0',\n          snapshotUrls: 'https://i.gkd.li/i/21910493',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhishan.washer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhishan.washer',\n  name: '悠洗',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] + View[text=\"\"][childCount=1] > Image[text=\"\"][childCount=0][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/355f6e11-c21f-4cb2-b103-1a56032da15c',\n          snapshotUrls: 'https://i.gkd.li/i/17002026',\n        },\n        {\n          key: 1,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] -4 View[text=\"\"][childCount=1] > Image[text=\"\"][childCount=0][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/13cb561b-cfd5-44a8-b8ed-8bc1500b73a8',\n          snapshotUrls: 'https://i.gkd.li/i/17088067',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhiwei.rjm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhiwei.rjm',\n  name: 'RJmao',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.zhiwei.rjm.MainActivity',\n          matches:\n            'ImageView < @ViewGroup[clickable=true] < * +2 ViewGroup > [text=\"广告\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a68b2a70-9bd3-4ba4-9802-f0b60052d4c2',\n          snapshotUrls: 'https://i.gkd.li/i/14430564',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '视频播放页卡片广告',\n          fastQuery: true,\n          activityIds: 'com.zhiwei.rjm.MainActivity',\n          matches:\n            '@TextView[clickable=true] <2 View + View > [visibleToUser=true][text=\"广告\"] <<n [vid=\"ksad_container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7bfe06a0-d91a-40cf-879e-1c03beac7a35',\n          snapshotUrls: 'https://i.gkd.li/i/14430539',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhiyin.qingdan.dashixiong.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhiyin.qingdan.dashixiong',\n  name: '大师兄影视',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告-1',\n          fastQuery: true,\n          activityIds: 'com.zhiyin.qingdan.dashixiong.MainActivity',\n          matches:\n            '@ImageView <n ViewGroup -2 ViewGroup > ViewGroup > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12843281',\n        },\n        {\n          key: 1,\n          name: '快手广告-2',\n          fastQuery: true,\n          activityIds: 'com.zhiyin.qingdan.dashixiong.MainActivity',\n          matches: '@ImageView[clickable=true] <3 * -2 * >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13521143',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          name: '快手广告-3',\n          activityIds: 'com.zhiyin.qingdan.dashixiong.MainActivity',\n          matches: ['[text=\"广告\"]', '[text=\"跳过\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13521140',\n        },\n        {\n          key: 3,\n          name: '腾讯广告-1',\n          fastQuery: true,\n          activityIds: [\n            'com.zhiyin.qingdan.dashixiong.MainActivity',\n            'com.qq.e.ads.ADActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12843282',\n            'https://i.gkd.li/i/12843345',\n            'https://i.gkd.li/i/12843333',\n            'https://i.gkd.li/i/13400656',\n          ],\n        },\n        {\n          key: 5,\n          name: '字节广告',\n          fastQuery: true,\n          activityIds: 'com.zhiyin.qingdan.dashixiong.MainActivity',\n          matches: '@Image < View +n View > View > View > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12843323',\n        },\n        {\n          key: 6,\n          activityIds: 'com.sigmob.sdk.base.common.TransparentAdActivity',\n          matches: '[id=\"close_btn\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/13887500',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '通知提示-公告弹窗',\n      desc: '点击[我知道了]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc^=\"必读通告\"] +n [desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12843280',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zhiyin.qingdan.dashixiong.MainActivity',\n          matches:\n            'WebView[text=\"快手\"] >3 View[childCount=5] >2 @TextView[clickable=true][text=\"\"] <<n [vid=\"ksad_container\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/122d8544-ccdd-42df-8618-f98f4433ee50',\n          snapshotUrls: 'https://i.gkd.li/i/15371800',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhizhou.days.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhizhou.days',\n  name: '倒计日',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '穿山甲-第一类广告',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[desc^=\"webview-close\"] > View[clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12727499',\n        },\n        {\n          key: 1,\n          name: '穿山甲-第二类广告',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: ['[text=\"广告\"]', '@Image < View + [text=\"反馈\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/12739678',\n        },\n        {\n          key: 10,\n          name: '优量汇-第一类广告',\n          fastQuery: true,\n          activityIds: 'com.zhizhou.days.activity.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12727528',\n        },\n        {\n          key: 11,\n          name: '优量汇-第二类广告',\n          fastQuery: true,\n          activityIds: [\n            'com.zhizhou.days.activity.MainActivity',\n            'com.huawei.android.launcher.unihome.UniHomeLauncher',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12739703',\n            'https://i.gkd.li/i/12727546',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '评价提示-应用评价弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: '@[text=\"以后再说\"] + [text=\"马上评价\"]',\n      snapshotUrls: 'https://i.gkd.li/i/12744951',\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhl.bmi.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhl.bmi',\n  name: '乐看视频',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      activityIds: 'com.zhl.bmi.MainActivity',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13255787',\n            'https://i.gkd.li/i/13255786',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13542343',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zhx.wisdomtree.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zhx.wisdomtree',\n  name: '智慧树家长端',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-信息流广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.parent.common.MainActivity',\n          matches: '[vid=\"iv_close_ad\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/82c2a85d-1007-45e2-abed-3c5933563a92',\n          snapshotUrls: 'https://i.gkd.li/i/20062093',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.parent.common.MainActivity',\n          matches: '[vid=\"tv_close_ad\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/486eae02-6c25-4e2a-b6a4-7997a8887eac',\n          snapshotUrls: 'https://i.gkd.li/i/20062094',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.parent.common.MainActivity',\n          matches:\n            '@[vid=\"rl_down\"] <<n [vid=\"tt_ad_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/46522b87-512c-47ab-9a57-c333eca6a789',\n          snapshotUrls: 'https://i.gkd.li/i/20074571',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.core.act.FragmentSingleAct',\n          matches:\n            'FrameLayout[childCount=1] > FrameLayout[childCount=5] > FrameLayout[childCount=1] > @ImageView[id=null][text=null][width<50 && height<50] <<n [vid=\"fl_csj_banner_view\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ee6796d4-ba24-4d34-8ef2-07969d102715',\n          snapshotUrls: 'https://i.gkd.li/i/20074641',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@View[childCount=1][visibleToUser=true] < View[childCount=1][visibleToUser=true] + View[childCount=1][visibleToUser=true] > [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/708daddf-5d9b-4cc9-977f-ba48c3f33ba3',\n          snapshotUrls: 'https://i.gkd.li/i/20074568',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"][width<60 && height<60] < View[childCount=1] + View +n View > View[childCount=1] > TextView[text$=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/f6c1c4ec-56d8-4c02-a66d-42a005bb196c',\n          snapshotUrls: 'https://i.gkd.li/i/20095481',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.parent.common.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/c72c44bc-a16a-4929-8aa6-457893c1254f',\n          snapshotUrls: 'https://i.gkd.li/i/20154496',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.parent.common.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/91f3f0d3-d424-4e06-99a2-8e31dd71df41',\n          snapshotUrls: 'https://i.gkd.li/i/20154499',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds: 'net.hyww.wisdomtree.parent.common.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/c24edc78-83d6-4a73-a555-fd69635a92b8',\n          snapshotUrls: 'https://i.gkd.li/i/20154500',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zidongdianji.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zidongdianji',\n  name: '自动点击器',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-卡片广告',\n      fastQuery: true,\n      matchRoot: true,\n      forcedTime: 10000,\n      activityIds: 'com.autoclicker.clicker.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            'WebView >3 View[childCount=2] > View[childCount=4] > View[childCount=1] > @Image[childCount=0][visibleToUser=true][text=\"\"] <<n [vid=\"native_ad_container_top\" || vid=\"rv_record\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14782886',\n            'https://i.gkd.li/i/16646833',\n          ],\n        },\n        {\n          key: 3,\n          position: {\n            left: 'width * 0.9481',\n            top: 'width * 0.0778',\n          },\n          matches:\n            'WebView > View[childCount=2] > TextView[text!=null][visibleToUser=false] + @View[visibleToUser=true][childCount=0] <<n [vid=\"rv_record\"]',\n          exampleUrls: 'https://e.gkd.li/ab8308a9-a237-49ee-8ed5-38e6d543acf0',\n          snapshotUrls: 'https://i.gkd.li/i/16742931',\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          matches:\n            '@ImageView[clickable=true][width<80 && height<80] <2 LinearLayout +2 LinearLayout > [text=\"详情点击\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/029e9494-fb0a-4752-8711-1f6e68684ef5',\n          snapshotUrls: 'https://i.gkd.li/i/24336331',\n        },\n        {\n          preKeys: [1, 3, 4],\n          key: 2,\n          matches: '@[clickable=true] >n [text=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/560a7da4-64f5-4dc7-899c-60856241662f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14783475',\n            'https://i.gkd.li/i/24336327',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.autoclicker.clicker.MainActivity',\n          matches: '[vid=\"img_native_ad_default_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/e6b14a8f-6533-4601-92b8-f5032fc18234',\n          snapshotUrls: 'https://i.gkd.li/i/19381476',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.ziroom.ziroomcustomer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.ziroom.ziroomcustomer',\n  name: '自如',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"tv_ok\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c6507af4-1bb2-4c39-ab5d-3d04ec391291',\n          snapshotUrls: 'https://i.gkd.li/i/18373198',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-推荐好友弹窗',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"iv_nps_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/808f8c61-211f-4592-abe5-21467c133ba6',\n          snapshotUrls: 'https://i.gkd.li/i/18373218',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zivn.cloudbrush3.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zivn.cloudbrush3',\n  name: '书法字典大全',\n  groups: [\n    {\n      key: 3,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      activityIds: 'com.zivn.cloudbrush3.app.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          name: '点击关闭',\n          matches:\n            '@View[clickable=true] < FrameLayout  -2 FrameLayout [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13425305',\n        },\n        {\n          preKeys: [0],\n          name: '点击[不感兴趣]',\n          matches:\n            '@LinearLayout > [id=\"com.byted.pangle.m:id/tt_item_tv\"][text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13425306',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zjwh.android_wh_physicalfitness.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zjwh.android_wh_physicalfitness',\n  name: '运动世界',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '[id=\"com.zjwh.android_wh_physicalfitness:id/iv_close\" || vid=\"ad_close\"][clickable=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12673231',\n            'https://i.gkd.li/i/12673523',\n            'https://i.gkd.li/i/13166472',\n            'https://i.gkd.li/i/22437128',\n            'https://i.gkd.li/i/22449070',\n            'https://i.gkd.li/i/22495266',\n            'https://i.gkd.li/i/22495298',\n            'https://i.gkd.li/i/22495361',\n            'https://i.gkd.li/i/22508959',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: ['.activity.HomeActivity', '.mvi.home.HomeActivity'],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/a7753ec9-5382-42ee-9a41-b4e2b61b9050',\n          snapshotUrls: 'https://i.gkd.li/i/17355585',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: [\n            '.activity.HomeActivity',\n            '.ui.AdActivity',\n            '.mvi.home.HomeActivity',\n          ],\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] < ViewGroup <n ViewGroup <n ViewGroup  >n [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/cb21dc41-bcca-47ec-ae0a-df9aedde48b5',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12826124',\n            'https://i.gkd.li/i/13228216',\n            'https://i.gkd.li/i/13601132',\n            'https://i.gkd.li/i/22427117',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][width<110 && height<110] - RelativeLayout >(1,2) [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/6882bcf4-1aa1-47e1-b7ad-299d4aa7bfd9',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13554229',\n            'https://i.gkd.li/i/22960459',\n          ],\n        },\n        {\n          key: 4,\n          activityIds:\n            'com.zjwh.android_wh_physicalfitness.activity.SplashActivity',\n          matches:\n            '@[text=\"跳过\"][clickable=true] +3 RelativeLayout >2 [text=\"点击跳转至第三方页面\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12673349',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: ['.activity.HomeActivity', '.mvi.home.HomeActivity'],\n          matches:\n            '@ImageView[childCount=0] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/2debed48-37f2-43ec-8b0f-3a5e06c23ed1',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17378546',\n            'https://i.gkd.li/i/23145860',\n          ],\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: [\n            '.activity.HomeActivity',\n            '.mvi.home.HomeActivity',\n            '.mvi.notice.NoticeListActivity',\n          ],\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/f640d0c2-197d-45ef-98ff-58a04920bd2d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17358027',\n            'https://i.gkd.li/i/23206013',\n            'https://i.gkd.li/i/23455815',\n          ],\n        },\n        {\n          key: 7,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<80 && height<80] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/22946236',\n        },\n        {\n          key: 8,\n          fastQuery: true,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[clickable=true][width<100 && height<100] <2 RelativeLayout < RelativeLayout < RelativeLayout < RelativeLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22946242',\n        },\n        {\n          key: 9,\n          fastQuery: true,\n          activityIds: '.mvi.home.HomeActivity',\n          matches:\n            '@Image[text=\"\"][childCount=0][width<70 && height<70] < View[childCount=1] + * >2 [childCount=0][text=\"淘宝精选广告\"] <<n [vid=\"fl_native\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23254520',\n        },\n        {\n          key: 10,\n          fastQuery: true,\n          activityIds: '.mvi.me.VipPayActivity',\n          matches:\n            '@[desc=\"top_close_button\"][clickable=true] < * + * > [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23255102',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      activityIds: '.mvi.home.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1] <<n * >4 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/ca109fa3-5a7a-400d-911b-36dd8ac42656',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22387192',\n            'https://i.gkd.li/i/22656913',\n            'https://i.gkd.li/i/22863607',\n            'https://i.gkd.li/i/23087561',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@Image[childCount=0] < [childCount=1] <n * - * >3 [childCount=0][text=\"广告\"] <<n [vid=\"fl_native\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22585927',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.mvi.home.HomeActivity',\n          matches: '[vid=\"ksad_ad_dislike\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23054142',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.mvi.home.HomeActivity',\n          matches:\n            '@ImageView[width<70 && height<70][childCount=0] < FrameLayout[childCount=1] - * > TextView[childCount=0][text.length>0] <<n [vid=\"fl_native\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23289399',\n            'https://i.gkd.li/i/23289402',\n          ],\n        },\n        {\n          key: 4,\n          fastQuery: true,\n          activityIds:\n            'com.zjwh.android_wh_physicalfitness.mvi.home.HomeActivity',\n          matches:\n            '@[id=\"com.kwad.dy.sdk:id/ksad_ad_dislike\"][clickable=true] - * >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23773011',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '分段广告-卡片广告',\n      desc: '点击关闭-不感兴趣',\n      activityIds: '.mvi.home.HomeActivity',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches:\n            '@Image[childCount=0][width<70&&height<70][id=null][text=\"\"][desc=null] < View[childCount=1][parent.childCount!=2] <n View <n View >n [childCount=0][text=\"广告\"] <<n [vid=\"fl_native\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22514469',\n            'https://i.gkd.li/i/22691578',\n            'https://i.gkd.li/i/22798099',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@TextView[text=\"···\"][visibleToUser=true] <n * >3 [childCount=0][text=\"广告\"] <<n [vid=\"fl_native\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22861405',\n            'https://i.gkd.li/i/23451517',\n          ],\n        },\n        {\n          preKeys: [0, 1],\n          fastQuery: true,\n          matches:\n            '@[clickable=true] >(1,2) [text=\"不感兴趣\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22514499',\n            'https://i.gkd.li/i/22691590',\n          ],\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '通知提示-公告',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          activityIds: ['.mvi.home.HomeActivity', '.mvi.splash.AdActivity'],\n          matches: '@ImageView[vid=\"dialog_close\"] +n [text*=\"公告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22526467',\n            'https://i.gkd.li/i/23883452',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.mvi.home.HomeActivity',\n          matches: '[vid=\"iv\"] + [vid=\"iv_cancel\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23205159',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '权限提示-不开启可选权限',\n      desc: '点击[暂不开启，继续跑步]',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.mvi.home.HomeActivity',\n          matches: [\n            '[text=\"必要权限未开启！\" || text^=\"当前必要权限不完整\"]',\n            '[text^=\"暂不开启\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23054372',\n            'https://i.gkd.li/i/23054373',\n          ],\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '权限提示-定位权限',\n      desc: '点击取消',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.mvi.home.HomeActivity',\n          matches: [\n            '[text=\"定位服务未开启\"][visibleToUser=true]',\n            '[text=\"取消\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/3be509e1-0663-4989-b763-6d68d88979fe',\n          snapshotUrls: 'https://i.gkd.li/i/23096707',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zlfcapp.batterymanager.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zlfcapp.batterymanager',\n  name: '电池容量检测管理',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          position: {\n            left: 'width * 0.9245',\n            top: 'width * 0.0401',\n          },\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            'FrameLayout[childCount=4] >2 @RelativeLayout[childCount=3] > RelativeLayout > ProgressBar[childCount=0]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/89ad488c-2bcb-4f78-b7ba-ccb5335042cc',\n          snapshotUrls: 'https://i.gkd.li/i/15220546',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] -2 @View > Image[text=\"\"][visibleToUser=true][childCount=0]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/f41a31f3-5ddd-44a5-b450-a6678f551328',\n          snapshotUrls: 'https://i.gkd.li/i/15220517',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.mvvm.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/19954295',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.mvvm.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/19955131',\n        },\n        {\n          key: 4,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@View[text=\"\"][id!=null][childCount=1][getChild(0).getChild(0).childCount=0] + View[childCount=1] > [text=\"反馈\"]',\n          exampleUrls: 'https://e.gkd.li/fc18c202-23c9-4b77-bbe6-9674427a53df',\n          snapshotUrls: 'https://i.gkd.li/i/19955070',\n        },\n        {\n          key: 5,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][width<50 && height<50] < View[childCount=1] < View[childCount=1] - View[childCount=1] > [text=\"反馈\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a5f1c567-8cca-47e2-be35-0972f32486d0',\n          snapshotUrls: 'https://i.gkd.li/i/23362716',\n        },\n        {\n          key: 6,\n          fastQuery: true,\n          activityIds: 'com.zlfcapp.batterymanager.mvvm.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls: [\n            'https://e.gkd.li/b6f0c1c3-b42e-4443-a1dc-299299cf8b5f',\n            'https://e.gkd.li/d4b4f127-677a-47d2-81df-b4fa5d7e046d',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23362866',\n            'https://i.gkd.li/i/23363372',\n          ],\n        },\n        {\n          key: 7,\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@ImageView[childCount=0] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] < ViewGroup[childCount=1] + ViewGroup >4 [text=\"反馈\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/279d959b-bc63-45f4-a2c4-22054c4cd3f7',\n          snapshotUrls: 'https://i.gkd.li/i/23363218',\n        },\n        {\n          key: 8,\n          fastQuery: true,\n          activityIds: 'com.zlfcapp.batterymanager.mvvm.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/2de28d35-4f2d-46c5-ab3e-d108013a10d0',\n          snapshotUrls: 'https://i.gkd.li/i/23363256',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zmsoft.forwatch.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zmsoft.forwatch',\n  name: '子腾园',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '字节广告',\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: 'com.zmapp.fwatch.activity.NativeAdActivity',\n          matches: '[id=\"com.zmsoft.forwatch:id/ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13545995',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zmzx.college.search.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zmzx.college.search',\n  name: '大学搜题酱',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          action: 'clickCenter',\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12867875',\n            'https://i.gkd.li/i/16812698',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: [\n            'com.zmzx.college.search.activity.main.activity.MainActivity',\n            'com.zmzx.college.search.activity.questionsearch.camera.activity.PicSearchResultActivity',\n            'com.zmzx.college.search.activity.camerasdk.ZybCameraSDKActivity',\n            'com.zmzx.college.search.activity.common.CommonCacheHybridActivity',\n          ],\n          matches: '[id=\"com.zmzx.college.search:id/iv_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12867751',\n            'https://i.gkd.li/i/12894813',\n            'https://i.gkd.li/i/13522998',\n            'https://i.gkd.li/i/14554866',\n          ],\n        },\n        {\n          key: 1,\n          name: '快手广告-1',\n          fastQuery: true,\n          activityIds: [\n            'com.zmzx.college.search.activity.main.activity.MainActivity',\n            'com.zmzx.college.search.activity.questionsearch.camera.activity.PicSearchResultActivity',\n          ],\n          matches:\n            'ImageView < @ViewGroup[clickable=true] < ViewGroup <n * + ViewGroup >3 [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13451304',\n            'https://i.gkd.li/i/14519779',\n            'https://i.gkd.li/i/14731371',\n          ],\n        },\n        {\n          key: 3,\n          name: '字节广告-1',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.core.component.reward.activity.TTFullScreenVideoActivity',\n          matches: 'Image < @View +3 View > View > TextView[text$=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13523288',\n        },\n        {\n          key: 4,\n          name: '字节广告-2',\n          fastQuery: true,\n          activityIds: [\n            'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches:\n            '[id=\"com.byted.pangle.m:id/tt_reward_full_count_down_after_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12893408',\n            'https://i.gkd.li/i/13929945',\n          ],\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: 'com.mercury.sdk.activity.InterstitialPortraitActivity',\n          matches: '[vid=\"iv_itr_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15360368',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'com.zmzx.college.search.activity.booksearch.result.activity.SearchScanCodeResultDxActivity',\n            'com.zmzx.college.search.activity.booksearch.result.activity.AnswerBrowseActivity',\n          ],\n          matches: '[vid=\"close_m_image_left_text_right_app_compliance\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13849755',\n            'https://i.gkd.li/i/13929965',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds:\n            'com.zmzx.college.search.activity.booksearch.result.activity.SearchScanCodeResultDxActivity',\n          matches:\n            '[id^=\"com.zmzx.college.search:id/ad_flag_source\"] - * > [id=\"com.zmzx.college.search:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13063381',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.activity.main.activity.MainActivity',\n            '.activity.init.InitActivity',\n          ],\n          matches: '[id=\"com.zmzx.college.search:id/update_close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13063373',\n            'https://i.gkd.li/i/13623469',\n          ],\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.main.activity.MainActivity',\n          matches:\n            '[text=\"开启推送通知\"] - [id=\"com.zmzx.college.search:id/siv_dialog_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13440939',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '评价提示-请求好评弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.camerasdk.ZybCameraSDKActivity',\n          matches:\n            '[id=\"com.zmzx.college.search:id/iv_logo\"] + [id=\"com.zmzx.college.search:id/siv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476308',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '全屏广告-邀好友得开学好礼',\n      desc: '使用返回关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          action: 'back',\n          activityIds:\n            'com.zmzx.college.search.activity.common.CommonCacheHybridActivity',\n          matches:\n            '[visibleToUser=true][text=\"邀好友得开学好礼\"] <<n [vid=\"webview_root_layout\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/d625fcaa-4cf3-4c92-9b27-10542b0262bb',\n          snapshotUrls: 'https://i.gkd.li/i/14555042',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '分段广告-底部卡片广告',\n      desc: '点击关闭-点击不感兴趣',\n      fastQuery: true,\n      activityIds:\n        'com.zmzx.college.search.activity.booksearch.result.activity.AnswerBrowseActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '@[desc$=\"dislike\"] <<n [vid=\"rlBottomADContainer\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15902162',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15902298',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zol.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zol.android',\n  name: '中关村在线',\n  groups: [\n    {\n      key: 0,\n      name: '局部广告-首页悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.renew.ui.MainActivity',\n          matches:\n            '@[vid=\"close_active\"][visibleToUser=true] + [vid=\"active_enter_layout\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ac4f334e-54e7-4df8-b708-2ad101962b4c',\n          snapshotUrls: 'https://i.gkd.li/i/17965705',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zuoyebang.knowledge.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zuoyebang.knowledge',\n  name: '作业帮家长版',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: '[id=\"com.zuoyebang.knowledge:id/cancel_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13695522',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示-赏好评弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.baidu.homework.activity.init.InitActivity',\n          matches: 'TextView[id=\"com.zuoyebang.knowledge:id/btn_cancle\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13043228',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zy.flt_yishang.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zy.flt_yishang',\n  name: '飞猫管家',\n  groups: [\n    {\n      key: 1,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1, // 跳过节点可能延迟消失导致误触，限制触发次数\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '[desc*=\"跳过\"][desc.length<10][width<500 && height<200][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/882f36c1-d172-436f-a43e-194d75940886',\n          snapshotUrls: 'https://i.gkd.li/i/24097095',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/com.zzw.october.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'com.zzw.october',\n  name: '志愿汇',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds: '.MainActivity',\n          matches:\n            '[id=\"com.zzw.october:id/interact_ad_root\"] >n ImageView[id=\"com.zzw.october:id/iv_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12842675',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[vid=\"ad_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2033b8e2-8234-486d-ba8a-e7d140215d88',\n          snapshotUrls: 'https://i.gkd.li/i/18235996',\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: 'com.beizi.ad.v2.activity.BeiZiNewInterstitialActivity',\n          matches: '[vid=\"beizi_interstitial_ad_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23003165',\n        },\n        {\n          // 点击广告进入的详情页\n          key: 4,\n          fastQuery: true,\n          activityIds: 'com.beizi.ad.AdActivity',\n          matches: '[vid=\"close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23002976',\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: 'com.octopus.ad.AdActivity',\n          matches:\n            '@ImageView[clickable=true][width<90 && height<90] - [text=\"反馈\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23021515',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: ['.MainActivity', '.LaunchActivity'],\n          anyMatches: [\n            '[vid=\"dialog_de\"][visibleToUser=true]',\n            '[text=\"以后再说\"][visibleToUser=true]',\n          ],\n          exampleUrls: 'https://e.gkd.li/f80b0ecb-a704-495d-9afc-c1ffcba2108f',\n          snapshotUrls: [\n            'https://i.gkd.li/i/19485921',\n            'https://i.gkd.li/i/19535009',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '通知提示-志愿者保险提示弹窗',\n      desc: '点击[暂不领取]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches: '[text=\"暂不领取\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/fe4b163a-bb6c-4337-b095-4bdf1219e9b2',\n          snapshotUrls: 'https://i.gkd.li/i/19485920',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-浮标广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.zzw.october.MainActivity',\n          matches: '[vid=\"channel_banner_close_iv\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23003170',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/ctrip.android.view.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'ctrip.android.view',\n  name: '携程旅行',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'ctrip.android.publicproduct.home.view.CtripHomeActivity',\n          matches:\n            '@ImageView[desc=\"关闭\"][clickable=true][visibleToUser=true] <3 FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13218347',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'ctrip.android.publicproduct.home.view.CtripHomeActivity',\n          matches:\n            '@ImageView[clickable=true] < RelativeLayout + RelativeLayout >5 [desc^=\"广告\"] + [text=\"立即领取\"]',\n          exampleUrls: 'https://e.gkd.li/00628604-fab9-432c-a70b-343c8c889c23',\n          snapshotUrls: 'https://i.gkd.li/i/16357287',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          activityIds: 'ctrip.business.planthome.CtripPlantHomeActivity',\n          matches:\n            '@ImageView[clickable=true][childCount=0][visibleToUser=true] <4 FrameLayout[childCount=4] < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/cdc28230-6ea7-4cf7-bef4-a31f7e36eed1',\n          snapshotUrls: 'https://i.gkd.li/i/19050401',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matchTime: 10000,\n          actionMaximum: 1,\n          resetMatch: 'app',\n          activityIds:\n            'ctrip.android.publicproduct.home.business.activity.CtripHomeActivity',\n          matches:\n            '@ImageView[childCount=0][clickable=true][visibleToUser=true][width<120 && height<120] < RelativeLayout[childCount=1] < RelativeLayout[childCount=2] < [id=\"android:id/content\"]',\n          exampleUrls: 'https://e.gkd.li/065da3a4-b746-4ec7-a681-a6fd687c5f70',\n          snapshotUrls: 'https://i.gkd.li/i/20921664',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/downloadtwittervideo.twitterdownloader.twittervideodownloader.twittersaver.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'downloadtwittervideo.twitterdownloader.twittervideodownloader.twittersaver',\n  name: 'TwiTake',\n  groups: [\n    {\n      key: 3,\n      name: '评价提示-评分弹窗',\n      desc: '点击 LATER ',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds:\n            'downloadtwittervideo.twitterdownloader.twittervideodownloader.twittersaver',\n          matches: [\n            '[text=\"Love it\"][visibleToUser=true]',\n            '[text=\"LATER\"][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13748858',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/dxwt.questionnaire.ui.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'dxwt.questionnaire.ui',\n  name: '10000社区',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '@View[desc^=\"关闭\"][visibleToUser=true] <3 FrameLayout < FrameLayout < FrameLayout < [id=\"dxwt.questionnaire.ui:id/container\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13255491',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/13259475', // 限制 visibleToUser=true 防止按钮未出现就触发规则\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/enfc.metro.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'enfc.metro',\n  name: '亿通行',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-出站后摇一摇广告',\n      desc: '点击跳过',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'enfc.metro.session.web.rn.RPReactActivity',\n          matches: '@View[clickable=true] - * [text=\"扭动手机\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13988597',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/fm.qingting.qtradio.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'fm.qingting.qtradio',\n  name: '蜻蜓FM',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-播放界面的广告',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          activityIds: '.QTRadioActivity',\n          matches: '[id=\"fm.qingting.qtradio:id/view_ad_close\"]',\n          exampleUrls: 'https://e.gkd.li/bef1954c-a0c8-441e-ab77-6967089e906c',\n          snapshotUrls: 'https://i.gkd.li/i/12640438',\n        },\n        {\n          key: 2,\n          activityIds: '.QTRadioActivity',\n          matches:\n            '@[id=\"fm.qingting.qtradio:id/iv_close\"] + RelativeLayout >2 [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/1562b618-074d-4f10-a1ae-c62c5390fd1a',\n          snapshotUrls: 'https://i.gkd.li/i/12640981',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/gov.pianzong.androidnga.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'gov.pianzong.androidnga',\n  name: 'NGA玩家社区',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchRoot: true,\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '[vid=\"tv_tiaoguo\" || vid=\"iv_tg_ad\" || vid=\"tv_skip\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/d7520bc7-588b-4654-b6aa-d2736ac200bf',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13798686',\n            'https://i.gkd.li/i/17082872',\n            'https://i.gkd.li/i/17082897',\n            'https://i.gkd.li/i/17082899',\n            'https://i.gkd.li/i/23432463',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-首页-推荐-卡片广告',\n      rules: [\n        {\n          activityIds: 'com.donews.nga.activitys.MainActivity',\n          matches: '[id=\"gov.pianzong.androidnga:id/iv_close_ad\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12482727',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-话题-帖子列表广告',\n      desc: '点击卡片x按钮关闭广告',\n      activityIds:\n        'gov.pianzong.androidnga.activity.forumdetail.ForumDetailActivity',\n      rules: [\n        {\n          key: 1,\n          matches: 'Image[text=\"ams_icon_single_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12655805',\n        },\n        {\n          key: 2,\n          matches:\n            'TextView[text!=null] - ImageView < LinearLayout[childCount=2] + FrameLayout[childCount=1] > ImageView[id=null]',\n          snapshotUrls: 'https://i.gkd.li/i/12706140',\n        },\n        {\n          key: 3,\n          matches:\n            '[text=\"广告\"] - [id=\"gov.pianzong.androidnga:id/iv_information_ad_close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13303236',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-社区-顶部广告',\n      rules: [\n        {\n          activityIds: 'com.donews.nga.activitys.MainActivity',\n          matches: '[id=\"gov.pianzong.androidnga:id/iv_close_community_ad\"]',\n          snapshotUrls: ['https://i.gkd.li/i/12706132'],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.donews.nga.activitys.MainActivity',\n          matches:\n            '[vid=\"iv_homedialog_close\" || vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/346f4485-82a7-4cf3-aab3-1fe6c9bb23af',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14126934',\n            'https://i.gkd.li/i/21158044',\n          ],\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '局部广告-评论区底部广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          position: {\n            left: 'width * 0.9629',\n            top: 'width * 0.0472',\n          },\n          activityIds:\n            'gov.pianzong.androidnga.activity.forumdetail.ArticleDetailActivity',\n          matches: '[id=\"advertisementBottom\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/589a4441-4be0-4ebc-90f5-d0dc5cfc84ff',\n          snapshotUrls: 'https://i.gkd.li/i/17348441',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/17348415', // visibleToUser=true 防止误触\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '权限提示-通知权限',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.donews.nga.activitys.MainActivity',\n          matches: '[vid=\"iv_close_notification_guide\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c6be338c-2a1b-4123-bd8c-51fa35d2b8f2',\n          snapshotUrls: 'https://i.gkd.li/i/24105952',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/icu.freedomIntrovert.biliSendCommAntifraud.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'icu.freedomIntrovert.biliSendCommAntifraud',\n  name: '哔哩发评反诈',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-检查评论自动点击后台等待',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'icu.freedomIntrovert.biliSendCommAntifraud.ByXposedLaunchedActivity',\n          matches: 'Button[text=\"后台等待\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25240613',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/info.muge.appshare.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'info.muge.appshare',\n  name: 'AppShare',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13842826',\n            'https://i.gkd.li/i/13939089',\n            'https://i.gkd.li/i/14260635',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches: '[text*=\"跳过\"][visibleToUser=true][text.length<=10]',\n          snapshotUrls: 'https://i.gkd.li/i/14553551',\n        },\n        {\n          // 该开屏广告需要点击坐标在跳过按钮下半部分内才能跳过\n          key: 2,\n          fastQuery: true,\n          position: {\n            left: 'width * 0.5',\n            top: 'width * 0.6984',\n          },\n          matches: '@ViewGroup > [text=\"跳过\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15269380',\n            'https://i.gkd.li/i/15285908',\n            'https://i.gkd.li/i/15520277',\n          ],\n        },\n      ],\n    },\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'info.muge.appshare.view.app.detail.AppDetailActivity',\n            'info.muge.appshare.view.app.detail.v4.AppDetailV4Activity',\n            'info.muge.appshare.view.search.v4.SearchActivity',\n          ],\n          matches:\n            'FrameLayout[childCount=5] > @FrameLayout[childCount=1][visibleToUser=true][width<50 && height<50] > ImageView[childCount=0] <<n [vid=\"adContainer\" || vid=\"adView\" || vid=\"cardAd\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14382413',\n            'https://i.gkd.li/i/25124086',\n            'https://i.gkd.li/i/25124059',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '功能类-自动签到',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.view.main.MainActivity',\n          matches: '[text=\"签到\"][vid=\"tvSign\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13931265',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/22319703', // 避免点击首页签到按钮\n        },\n        {\n          key: 1,\n          activityIds: '.MainActivity',\n          matches: '[desc=\"头像\"] +3 @View[clickable=true] > [text=\"签到\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24376300',\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/22319703',\n            'https://i.gkd.li/i/24563260',\n          ],\n        },\n        {\n          preKeys: [0, 1],\n          fastQuery: true,\n          activityIds: ['.view.main.MainActivity', '.MainActivity'],\n          anyMatches: [\n            '[text=\"确定\"]',\n            '@[clickable=true] > [childCount=0][text=\"我知道了\"]',\n            '[vid=\"tvClose\"][text=\"我知道了\"][clickable=true][visibleToUser=true]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/13931279',\n            'https://i.gkd.li/i/20259829',\n            'https://i.gkd.li/i/24376307',\n            'https://i.gkd.li/i/25125005',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '分段广告',\n      desc: '点击关闭-点击不感兴趣',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'info.muge.appshare.view.app.detail.AppDetailActivity',\n          matches:\n            'FrameLayout[childCount=3] >3 [desc^=\"dislike\"] > @View[clickable=true] <<n [id=\"info.muge.appshare:id/adContainer\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/3bc12aa2-7673-4261-9e3d-7e1605b22847',\n          snapshotUrls: 'https://i.gkd.li/i/13758909',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'info.muge.appshare.view.app.detail.AppDetailActivity',\n          matches:\n            'FrameLayout[childCount=3] >2 WebView >6 @View[visibleToUser=true] > Image <<n [vid=\"adContainer\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/fefece63-2ec2-413c-a292-4583d58478fe',\n          snapshotUrls: 'https://i.gkd.li/i/14160959',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true] < FrameLayout[desc^=\"dislike\"] <n * > FrameLayout >n [text=\"广告\"]',\n          exampleUrls: 'https://e.gkd.li/00bf6a60-c461-4970-bb73-b063376cbafd',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24541497',\n            'https://i.gkd.li/i/24551719',\n            'https://i.gkd.li/i/24612011',\n            'https://i.gkd.li/i/24612129',\n          ],\n        },\n        {\n          key: 3,\n          activityIds: '.MainActivity',\n          excludeMatches: '[text=\"热门搜索\"][visibleToUser=true]', // 搜索页误触键盘，排除匹配搜索页\n          matches:\n            'ViewFactoryHolder FrameLayout[childCount=5] > FrameLayout[childCount=1] > ImageView[childCount=0][id=null][desc=null][width<60 && height<60]',\n          exampleUrls: 'https://e.gkd.li/1dfab1f2-f3d3-4f42-b421-d504083337c0',\n          snapshotUrls: 'https://i.gkd.li/i/24541525',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24612044',\n        },\n\n        {\n          preKeys: [0, 1, 2, 3],\n          fastQuery: true,\n          activityIds: [\n            'info.muge.appshare.view.app.detail.AppDetailActivity',\n            '.MainActivity',\n          ],\n          matches: '@[clickable=true] >(1,2) [text=\"不感兴趣\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/27a5eebc-a55a-466e-85f3-7642c23b4b3d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14161009',\n            'https://i.gkd.li/i/24612850',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      desc: '广告展示率低于20%时出现的广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: 'View[vid=\"v_jump\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/6b1d7b37-edd7-499f-a8b0-ecba24ef2c44',\n          snapshotUrls: 'https://i.gkd.li/i/14181146',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'info.muge.appshare.view.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/f89eea71-55f0-4c27-a4b0-79ac5296becd',\n          snapshotUrls: 'https://i.gkd.li/i/15209619',\n        },\n        {\n          key: 2,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '[text=\"反馈\"] <n * > @View[childCount=1][index=0 || index=1] > Image[text=\"\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/155fdf95-1f5a-4bf3-a8e7-161e6bfe7bbf',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15209618',\n            'https://i.gkd.li/i/15282994',\n          ],\n        },\n        {\n          key: 3,\n          fastQuery: true,\n          activityIds: '.view.main.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/b4d9d653-a4ad-4e4f-a8f5-30b1485547b5',\n          snapshotUrls: 'https://i.gkd.li/i/15211765',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '通知提示-公告弹窗',\n      desc: '点击[收到]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'info.muge.appshare.view.main.MainActivity',\n          matches: '[vid=\"tvSure\"][clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/8b782da0-1501-4839-a19b-92209b4d2723',\n          snapshotUrls: 'https://i.gkd.li/i/14345476',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '功能类-自动点击[使用浏览器打开]',\n      desc: '下载文件页面',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'info.muge.appshare.view.browser.DownloadBrowserActivity',\n          matches: '[text=\"浏览器打开\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/aae3c59c-8eac-452c-984e-84ee9b97e986',\n          snapshotUrls: 'https://i.gkd.li/i/14792822',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '更新提示',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'info.muge.appshare.view.main.MainActivity',\n          matches: '@[vid=\"tvCancel\"] + [vid=\"tvUpdate\"][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25123777',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/io.dcloud.H576E6CC7.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'io.dcloud.H576E6CC7',\n  name: '鱼泡网',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'com.yupao.entry.MainActivity',\n          matches: '[vid=\"ad_close\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/42273686-b44a-4964-80a5-84b55e6ad75c',\n          snapshotUrls: 'https://i.gkd.li/i/14731764',\n        },\n        {\n          key: 1,\n          activityIds: 'com.yupao.entry.MainActivity',\n          matches: '[text=\"广告\"] <2 View +3 View > TextView[clickable=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/123997dd-4783-4aac-a787-e02daccd43da',\n          snapshotUrls: 'https://i.gkd.li/i/14732000',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds: 'com.yupao.entry.MainActivity',\n          matches:\n            'ImageView < @FrameLayout <3 FrameLayout <2 FrameLayout - FrameLayout >2 [text=\"摇动或点击了解更多\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/c79e700b-74ef-40bf-93e5-222d5e2a8a26',\n          snapshotUrls: 'https://i.gkd.li/i/14743452',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '局部广告-悬浮广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          matchTime: 10000,\n          activityIds: 'com.yupao.entry.MainActivity',\n          matches: '@[vid=\"close\"][visibleToUser=true] - [vid=\"flItemContent\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/42273686-b44a-4964-80a5-84b55e6ad75c',\n          snapshotUrls: 'https://i.gkd.li/i/14731764',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/io.hyperate.hyperateandroid.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'io.hyperate.hyperateandroid',\n  name: 'HypeRate',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '@Image[childCount=0][text.length>0] < View[childCount=1] - View[childCount=1] > [text=\"Customize Now\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/a9ee995f-1a7e-4663-86aa-b56a71e2ed5a',\n          snapshotUrls: 'https://i.gkd.li/i/23598900',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/io.iftech.android.box.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'io.iftech.android.box',\n  name: '小组件盒子',\n  groups: [\n    {\n      key: 2,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[text=\"\"] < View +(n) View >(2) TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706209',\n        },\n        {\n          key: 1,\n          activityIds: 'io.iftech.android.box.main.HomeActivity',\n          matches: 'ImageView - FrameLayout > ImageView[id=null]',\n          snapshotUrls: 'https://i.gkd.li/i/12706209',\n        },\n        {\n          key: 2,\n          activityIds: 'com.anythink.basead.ui.ATPortraitTranslucentActivity',\n          matches:\n            '[id=\"io.iftech.android.box:id/anythink_myoffer_btn_close_id\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706228',\n        },\n        {\n          key: 3,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[id=null][clickable=true] + RelativeLayout + ImageView + ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12706236',\n        },\n        {\n          key: 4,\n          activityIds: 'com.baidu.mobads.sdk.api.MobRewardVideoActivity',\n          matches:\n            '@ImageView[id=null][clickable=true] + RelativeLayout > RelativeLayout > ImageView + ImageView',\n          snapshotUrls: 'https://i.gkd.li/i/12706240',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '全屏广告-会员限时优惠弹窗',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'io.iftech.android.box.main.HomeActivity',\n          matches:\n            '@[id=\"io.iftech.android.box:id/ivClose\"] + [text^=\"限时\"][text$=\"特惠\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12706226',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/io.microshow.fm.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'io.microshow.fm',\n  name: '畅听FM',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'io.microshow.fm.ui.activity.MainActivity',\n          matches:\n            '@Button[childCount=0][clickable=true][visibleToUser=true] <2 FrameLayout < RelativeLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14953007',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/io.sbyd.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'io.sbyd.app',\n  name: '轻松阅',\n  groups: [\n    {\n      key: 0,\n      name: '全屏广告-弹窗广告',\n      activityIds: 'io.sbyd.app.ui.book.read.ReadBookActivity',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13274336',\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13302326',\n            'https://i.gkd.li/i/13313576',\n            'https://i.gkd.li/i/13313624',\n            'https://i.gkd.li/i/13313576',\n          ],\n        },\n        {\n          key: 4,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[childCount=0][text=\"\"] < View[childCount=1] + View[childCount=1][text=\"\"] +n View >(1,2) View[childCount=1] > [text$=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12925095',\n            'https://i.gkd.li/i/12925052',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/lab.vie.two.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'lab.vie.two',\n  name: 'LIBVIO',\n  groups: [\n    {\n      key: 1,\n      name: '其他-账号注册说明弹窗',\n      desc: '每次打开app的弹窗提示，自动点击\"我知道了\"',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches: '[desc=\"账号注册说明\"] +2 [desc=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13379070',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/ltd.sky.okay.cn.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'ltd.sky.okay.cn',\n  name: '漫天星',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          name: '腾讯广告',\n          fastQuery: true,\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] <2 FrameLayout[childCount=5] + FrameLayout[childCount=2] > [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去逛逛\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13625479',\n        },\n        {\n          key: 1,\n          name: '字节广告',\n          actionDelay: 1500,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13759331',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/make.more.r2d2.cellular_z.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'make.more.r2d2.cellular_z',\n  name: 'Cellular-Z',\n  groups: [\n    {\n      key: 2,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MonitorActivity',\n          matches: ['[text=\"发现新版本\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13608563',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/me.chunyu.ChunyuDoctor.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'me.chunyu.ChunyuDoctor',\n  name: '春雨医生',\n  groups: [\n    {\n      key: 10,\n      name: '评价提示-应用评分弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.Activities.MainActivity',\n            '.Activities.WelcomeActivity',\n          ],\n          matches:\n            '[text=\"给应用评分\"] +(2) RelativeLayout > [text=\"下次再说\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12661907',\n            'https://i.gkd.li/i/12661924',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/me.drakeet.puremosaic.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'me.drakeet.puremosaic',\n  name: '纯纯打码',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-解锁高级功能',\n      desc: '点击[不]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            '.MainActivity',\n            'me.iwf.photopicker.PhotoPickerActivity',\n          ],\n          matches: ['[text=\"解锁高级功能\"]', '[text=\"不\"]'],\n          snapshotUrls: [\n            'https://i.gkd.li/i/16761630',\n            'https://i.gkd.li/i/16761818',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/me.ele.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'me.ele',\n  name: '饿了么',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      // matchTime: 10000, 部分更新提示不在10s内\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            'com.afollestad.materialdialogs.MaterialDialog',\n            '.application.ui.Launcher.LauncherActivity',\n          ],\n          matches: ['[text*=\"更新应用版本\"]', '[text=\"取消\"]'],\n          exampleUrls: 'https://e.gkd.li/7a0ade81-d2f3-4174-ba6e-9976b8e7ecf5',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12650280',\n            'https://i.gkd.li/i/13206819',\n            'https://i.gkd.li/i/18096620',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-红包弹窗',\n      rules: [\n        {\n          key: 0,\n          name: '红包弹窗1',\n          fastQuery: true,\n          activityIds: [\n            'me.ele.component.pops2.Pops2MistDialog',\n            'me.ele.component.webcontainer.view.AppUCWebActivity',\n            'me.ele.application.ui.Launcher.LauncherActivity',\n            'me.ele.application.ui.GeneralSettingsActivity',\n            'me.ele.shopdetailv2.ShopDetailV2Activity',\n            'me.ele.foodchannel.page.WMChannelNativeActivity',\n          ],\n          anyMatches: [\n            '@ImageView[childCount=0][clickable=true][index=parent.childCount.minus(1)] - ViewGroup[childCount=2] < ViewGroup[childCount=2] < [vid=\"id_magex_mistview\"]',\n            '@ImageView[childCount=0][clickable=true][index=parent.childCount.minus(1)] - ViewGroup[childCount=2] < [vid=\"id_magex_mistview\"]',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/12650238',\n            'https://i.gkd.li/i/13294893',\n            'https://i.gkd.li/i/13331361',\n            'https://i.gkd.li/i/13362974',\n            'https://i.gkd.li/i/13376008',\n            'https://i.gkd.li/i/13710581',\n            'https://i.gkd.li/i/15148480',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/17858192',\n        },\n        {\n          key: 1,\n          name: '红包弹窗2',\n          activityIds: 'me.ele.newretail.pack.ui.activity.PackActivity',\n          matches: '[desc$=\"今日红包\"] +n [desc$=\"关闭\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/12650713',\n        },\n        {\n          key: 2,\n          name: '红包弹窗3',\n          fastQuery: true,\n          matches:\n            '@ViewGroup[index=2][clickable=true][childCount=0][index=parent.childCount.minus(1)] <3 ViewGroup[childCount=3] < ViewGroup[childCount=1] < ViewGroup[vid=\"id_magex_mist_view\"]',\n          exampleUrls: 'https://e.gkd.li/a933d63b-14b2-4c91-bdd9-0ba578da6bff',\n          snapshotUrls: 'https://i.gkd.li/i/14472929',\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/16346727', // 误触 add [childCount=0]\n            'https://i.gkd.li/i/17858192',\n          ],\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-活动弹窗',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          activityIds: [\n            'me.ele.component.pops2.Pops2MistDialog',\n            'me.ele.newbooking.checkout.entrypoint.WMCheckoutActivity',\n            'me.ele.application.ui.Launcher.LauncherActivity',\n            'me.ele.android.emagex.container.EMagexActivity',\n          ],\n          matches:\n            '@ImageView[clickable=true] <2 [vid=\"id_magex_mistview\"][childCount=2]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12726709',\n            'https://i.gkd.li/i/13476719',\n            'https://i.gkd.li/i/13523508',\n            'https://i.gkd.li/i/13685037',\n            'https://i.gkd.li/i/14050401',\n          ],\n        },\n        {\n          key: 2,\n          activityIds: 'me.ele.application.ui.Launcher.LauncherActivity',\n          matches:\n            '[id=\"me.ele:id/fl_render_e_shop\"] + FrameLayout >n ViewGroup[childCount=6] > View[index=5]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13476611',\n            'https://i.gkd.li/i/13523541',\n          ],\n        },\n        {\n          key: 3,\n          activityIds: 'me.ele.application.ui.Launcher.LauncherActivity',\n          matches: 'ViewGroup[clickable=true] - TextView[text=\"放弃\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13710574',\n            'https://i.gkd.li/i/13710591',\n          ],\n        },\n        {\n          key: 4,\n          activityIds: 'me.ele.pha.shell.ui.ElePhaActivity',\n          matches:\n            'WebView >4 View[childCount=2] > @View[clickable=true] > Image[childCount=0] <<n [vid=\"pha_view_pager_root_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/15443153',\n        },\n      ],\n    },\n    {\n      key: 5,\n      name: '全屏广告-付款后弹窗广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'me.ele.component.pops2.TransparentAppWebActivity',\n          matches:\n            'View[childCount=2] > View[childCount=2] > @Button[text=\"关闭\"][clickable=true] <<n [id=\"me.ele:id/inside_web_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13205301',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '全屏广告-吃货卡续费弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'me.ele.component.webcontainer.view.AppUCWebActivity',\n          matches:\n            '@View[clickable=true] + View >2 [visibleToUser=true][text*=\"立即续费\"] <<n [id=\"me.ele:id/inside_web_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13295007',\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-首页底部浮窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'me.ele.application.ui.Launcher.LauncherActivity',\n          matches:\n            '@ViewGroup[childCount=0][clickable=true][visibleToUser=true] - ViewGroup[childCount=3] <<n [id=\"me.ele:id/id_magex_mist_view\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13710588',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/16326917',\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: '.application.ui.Launcher.LauncherActivity',\n          matches: '[vid=\"iv_close\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/f706b801-44ee-4009-8082-75c9d4139065',\n          snapshotUrls: 'https://i.gkd.li/i/17321305',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '权限提示-定位权限',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      activityIds: 'me.ele.application.ui.Launcher.LauncherActivity',\n      rules: [\n        {\n          key: 0,\n          matches: '[text=\"去开启\"] + [id=\"me.ele:id/close\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13710588',\n        },\n        {\n          key: 1,\n          matches: '[text=\"去开启\"] + [id=\"me.ele:id/close_tips\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13710585',\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '通知提示-获取订单信息通知',\n      desc: '点击关闭',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.message.ui.PushMessageGuideActivity',\n          matches:\n            '@View[visibleToUser=true] < * <2 [id=\"me.ele:id/frame_bottom_bg\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13931205',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '评价提示-底部调研邀请卡片',\n      desc: '点击关闭',\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'me.ele.foodchannel.page.WMChannelNativeActivity',\n          matches: [\n            '[text*=\"小调研\"]',\n            '[vid=\"iv_cancel\"][visibleToUser=true]',\n          ],\n          exampleUrls:\n            'https://m.gkd.li/57941037/350d8f4d-8ab0-4572-8ff0-450ab4729d53',\n          snapshotUrls: 'https://i.gkd.li/i/14630370',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/me.piebridge.brevent.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'me.piebridge.brevent',\n  name: '黑阈',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-权限不足弹窗',\n      desc: '点击取消',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'me.piebridge.brevent.ui.BreventActivity',\n          matches: ['[text^=\"黑阈服务权限不足\"]', '[text=\"取消\"]'],\n          snapshotUrls: 'https://i.gkd.li/i/13218439',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/me.zhouzhuo810.zznote.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'me.zhouzhuo810.zznote',\n  name: '小周便签',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      actionMaximumKey: 0,\n      priorityTime: 10000,\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          matches: '@[vid^=\"btn_next_\"] - [vid=\"native_ad_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12798528',\n            'https://i.gkd.li/i/14662294',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          matches:\n            '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13800235',\n            'https://i.gkd.li/i/16115850',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          anyMatches: [\n            '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n            'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/16118464',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/mikuclub.app.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'mikuclub.app',\n  name: '初音社',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-谷歌广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          forcedTime: 10000,\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches: '[text^=\"关闭广告\"] + View >2 Image[text=\"\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/2fa2793e-187e-44e6-91e4-6a5a355568c6',\n          snapshotUrls: 'https://i.gkd.li/i/14306002',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/net.csdn.csdnplus.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'net.csdn.csdnplus',\n  name: 'CSDN',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: ['.activity.MainActivity', '.activity.SetActivity'],\n          matches:\n            '[id=\"net.csdn.csdnplus:id/update\"] -2 [id=\"net.csdn.csdnplus:id/cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12673693',\n            'https://i.gkd.li/i/12673654',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-信息流广告',\n      fastQuery: true,\n      activityIds: 'net.csdn.csdnplus.activity.MainActivity',\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"广告\"] + [id=\"net.csdn.csdnplus:id/iv_more\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12673738',\n            'https://i.gkd.li/i/13224538',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches:\n            '@[clickable=true] > [id=\"net.csdn.csdnplus:id/img_feedback_title\"][text=\"重复推荐该广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12673787',\n            'https://i.gkd.li/i/13224551',\n          ],\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '评价提示-软件好评弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MainActivity',\n          matches: '[id=\"net.csdn.csdnplus:id/tv_cancel\"][text=\"残忍拒绝\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13251085',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '全屏广告-弹窗广告',\n      desc: '点击【x】',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'net.csdn.csdnplus.activity.MainActivity',\n          matches:\n            'LinearLayout[childCount=2] > [vid=\"img_cancel\"][clickable=true][visibleToUser=true]',\n          snapshotUrls: 'https://i.gkd.li/i/25171470',\n          exampleUrls: 'https://e.gkd.li/3debb965-7773-4160-b172-15dc052ac6c9',\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.activity.MainActivity',\n          matches: [\n            '[text=\"开启推送通知\"]',\n            '[id=\"net.csdn.csdnplus:id/iv_close\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/12673638',\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '分段广告-底部广告',\n      desc: '点击关闭-点击不感兴趣',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'net.csdn.csdnplus.mvvm.ui.activity.BlogDetailActivity',\n          matches:\n            'ViewGroup > ViewGroup[childCount=2] > @ImageView[index=1][clickable=true][childCount=0][visibleToUser=true] <<n [vid=\"fl_template_container\" || vid=\"fl_bottom_ad_container\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13830821',\n            'https://i.gkd.li/i/14312501',\n          ],\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          activityIds: 'net.csdn.csdnplus.mvvm.ui.activity.BlogDetailActivity',\n          matches: '@LinearLayout[clickable=true] >(1,2) [text=\"不感兴趣\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13830858',\n            'https://i.gkd.li/i/14312349',\n            'https://i.gkd.li/i/24376480', //v6.8.1\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/net.duohuo.cyc.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'net.duohuo.cyc',\n  name: '次元城动画',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: 'top.cycdm.cycapp.MainActivity',\n          matches:\n            '@ViewGroup[clickable=true][childCount=1] < ViewGroup +2 ViewGroup[childCount=2] > [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13972796',\n            'https://i.gkd.li/i/14358701',\n            'https://i.gkd.li/i/14358706',\n          ],\n        },\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'top.cycdm.cycapp.MainActivity',\n          matches: '@[clickable=true] > [text=\"跳过\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13972792',\n            'https://i.gkd.li/i/14358630',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/net.pchome.kds.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'net.pchome.kds',\n  name: 'kds宽带山',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-应用内卡片广告',\n      activityIds: 'net.pchome.kds.View.activity.TopicActivity2',\n      rules: [\n        {\n          key: 0,\n          matches: '@Image[text=\"\"] < View +2 View > View > View > TextView',\n          snapshotUrls: 'https://i.gkd.li/i/13043221',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches: '@LinearLayout > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13049609',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/npgl.jsitcx.xlpqi.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'npgl.jsitcx.xlpqi',\n  name: 'NP管理器',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[text$=\"跳过\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12799926',\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[id=null][text=\"\"] < View + View +n [text=\"反馈\"] +n View > View > TextView[text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12799942',\n            'https://i.gkd.li/i/12800095',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-卡片广告',\n      activityIds: [\n        'flc.ast.HomeActivity',\n        'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n      ],\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@Image[childCount=0][visibleToUser=true][width<80 && height<80] < View[childCount=1] +n View[childCount=2] >(2,3) [text=\"广告\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12799977',\n            'https://i.gkd.li/i/12800107',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '@Image[childCount=0][visibleToUser=true][width<80 && height<80] < View[childCount=1] -3 View >2 [text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12800034',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/12800162', // 限定 Image[visibleToUser=true]，防止点击不可见节点\n        },\n        {\n          preKeys: [0, 1],\n          key: 2,\n          matches: '@LinearLayout > [text=\"不感兴趣\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12799995',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/org.daimhim.zzzfun.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'org.daimhim.zzzfun',\n  name: 'ZzzFun',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          activityIds: 'org.daimhim.zzzfun.ui.home.video.VideoDetailsActivity',\n          matches:\n            '@ImageView[childCount=0][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout < FrameLayout < FrameLayout < FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13402608',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/org.gushiwen.gushiwen.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'org.gushiwen.gushiwen',\n  name: '古诗文网',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-弹窗广告',\n      rules: [\n        {\n          key: 1,\n          actionDelay: 500,\n          activityIds: [\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          ],\n          matches: '@Image < View[width<100] <n View > [text=\"反馈\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12837225',\n            'https://i.gkd.li/i/12876086',\n            'https://i.gkd.li/i/12876067',\n            'https://i.gkd.li/i/12837225',\n            'https://i.gkd.li/i/12912911',\n            'https://i.gkd.li/i/13171930',\n          ],\n        },\n        {\n          key: 2,\n          actionDelay: 500,\n          activityIds: 'org.gushiwen.gushiwen.HomeActivity',\n          matches:\n            '@FrameLayout  +2 FrameLayout > LinearLayout > LinearLayout > [text^=\"摇动\"]',\n          snapshotUrls: ['https://i.gkd.li/i/13266879'],\n        },\n        {\n          key: 3,\n          actionDelay: 500,\n          fastQuery: true,\n          activityIds: '.HomeActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null][parent.childCount>3] <n FrameLayout >(2,3) [text^=\"立即\" || text$=\"详情\" || text^=\"了解\" || text=\"去微信看看\" || text$=\"应用\" || text=\"进入小程序\" || text=\"领取优惠\" || text=\"跳转微信\"]',\n          exampleUrls: 'https://e.gkd.li/71e9b352-e2a9-427e-bcbb-71510ed066b2',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12813618',\n            'https://i.gkd.li/i/18047950',\n          ],\n        },\n        {\n          key: 4,\n          actionDelay: 500,\n          fastQuery: true,\n          activityIds: '.HomeActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          exampleUrls: 'https://e.gkd.li/f6d34c18-e426-48dd-8030-4471cded8208',\n          snapshotUrls: 'https://i.gkd.li/i/18047949',\n        },\n        {\n          key: 5,\n          actionDelay: 500,\n          fastQuery: true,\n          activityIds:\n            'com.huawei.permissioncontroller.hwcust.appjump.AppJumpActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] <2 FrameLayout[childCount=2] - FrameLayout > [text^=\"扭动或点击\"]',\n          exampleUrls: 'https://e.gkd.li/012f64ec-b3ed-4472-8d07-8ed3b4ad6c07',\n          snapshotUrls: 'https://i.gkd.li/i/13059294',\n        },\n        {\n          preKeys: [1, 2, 3, 4, 5],\n          key: 10,\n          name: '打赏页面-点击返回按钮',\n          activityIds: [\n            'local.z.androidshared.vip.RewardActivity',\n            'local.z.androidshared.pay.RewardActivity',\n          ],\n          matches: '[id=\"org.gushiwen.gushiwen:id/btn_back\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12813638',\n            'https://i.gkd.li/i/13111042',\n          ],\n        },\n        {\n          preKeys: [1, 2, 3, 4, 5],\n          key: 11,\n          name: '荣誉会员-点击返回按钮',\n          activityIds: [\n            'local.z.androidshared.vip.member.VipActivity',\n            'local.z.androidshared.pay.vip.VipActivity',\n          ],\n          matches: '[id=\"org.gushiwen.gushiwen:id/backBtn\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12837229',\n            'https://i.gkd.li/i/13111057',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/org.readera.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'org.readera',\n  name: 'ReadEra',\n  groups: [\n    {\n      key: 1,\n      name: '评价提示-分享提示',\n      desc: '点击右上角的x',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          action: 'back',\n          matches: '[text*=\"通过社交网络分享这款应用\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22950138',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.MainActivity',\n          matches:\n            '@[desc=\"关闭\"][clickable=true] < * +n * >4 [text^=\"高级版\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24335645',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '全屏广告-高级版',\n      desc: '注意：此规则会关闭手动打开的高级版开通界面，但该界面有时会自动弹出',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.readera.MainActivity',\n          matches:\n            '@[desc=\"关闭\"][clickable=true] < * + * >5 [text=\"ReadEra Premium\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24981838',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/org.telegram.messenger.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'org.telegram.messenger',\n  name: 'Telegram',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          action: 'back',\n          fastQuery: true,\n          activityIds: 'org.telegram.ui.LaunchActivity',\n          matches: '[text=\"打开通知\"] + [text*=\"打开 Telegram 的通知\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22850638',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '其他-添加生日提示',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.telegram.ui.LaunchActivity',\n          matches: '@ImageView[clickable=true] - * >2 [text^=\"添加您的生日\"]',\n          snapshotUrls: 'https://i.gkd.li/i/22971075',\n        },\n      ],\n    },\n    {\n      key: 3,\n      name: '局部广告-拍卖提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'org.telegram.ui.LaunchActivity',\n          matches:\n            '@ImageView[clickable=true][width<140 && height<140] - * >2 [text$=\"Auction is live!\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23725025',\n        },\n      ],\n    },\n    {\n      key: 4,\n      name: '其他-首页公告栏',\n      desc: '此规则覆盖生日提示、拍卖提示以及部分广告',\n      rules: [\n        {\n          activityIds: 'org.telegram.ui.LaunchActivity',\n          matches:\n            '@ImageView[desc=null][clickable=true][width<140 && height<140][left>540] - LinearLayout[!(getChild(0).getChild(0).text=null)] < FrameLayout -2 FrameLayout >2 [text=\"Telegram\"]',\n          snapshotUrls: 'https://i.gkd.li/i/24560612',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/25030822', // [left>540] 防止反复点击播放、暂停音乐\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/org.telegram.messenger.web.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'org.telegram.messenger.web',\n  name: 'Telegram',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          matches: [\n            '[text=\"更新 Telegram\"]',\n            '@View[clickable=true] + [text=\"请稍后提醒我\"]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/13847837',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/org.zwanoo.android.speedtest.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'org.zwanoo.android.speedtest',\n  name: 'SpeedTest',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-测速后广告',\n      rules: [\n        {\n          key: 1,\n          fastQuery: true,\n          activityIds: 'com.ookla.mobile4.screens.main.MainViewActivity',\n          matches:\n            '[id=\"org.zwanoo.android.speedtest:id/suite_completed_close_ad_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12893175',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/pansong291.xposed.quickenergy.repair.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'pansong291.xposed.quickenergy.repair',\n  name: '芝麻粒',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-开屏[提示]弹窗',\n      desc: '点击[我知道了]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'pansong291.xposed.quickenergy.ui.MainActivity',\n          matches: '[text=\"我知道了\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13445477',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/pro.cubox.androidapp.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'pro.cubox.androidapp',\n  name: 'Cubox',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-会员广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.ui.pro.ProAccountActivity',\n          matches:\n            '@View[clickable=true][childCount=0][visibleToUser=true][index=parent.childCount.minus(1)] - [text*=\"支付\"] <5 View[childCount=6] < [vid=\"newCV\"]',\n          exampleUrls: 'https://e.gkd.li/a51b01f3-d690-4bdf-9db1-f40e05212b11',\n          snapshotUrls: 'https://i.gkd.li/i/20708841',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/run.xbud.android.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'run.xbud.android',\n  name: '小步点',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      rules: [\n        {\n          key: 0,\n          name: '快手广告',\n          activityIds: 'run.xbud.android.mvp.ui.other.MainActivity',\n          matches:\n            '[id=\"run.xbud.android:id/ksad_tk_view\"] >n @ViewGroup[clickable=true] > ImageView',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12777133',\n            'https://i.gkd.li/i/12777134',\n          ],\n        },\n        {\n          key: 1,\n          name: '腾讯广告',\n          fastQuery: true,\n          activityIds: 'run.xbud.android.mvp.ui.other.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][desc=null][id=null][visibleToUser=true][width<90 && height<90] < FrameLayout[childCount=1][text=null][desc=null][id=null] - FrameLayout[childCount>2] >3 [text^=\"立即\" || text$=\"应用\" || text=\"了解更多\" || text=\"查看详情\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13296371',\n        },\n        {\n          key: 2,\n          name: '京东广告',\n          fastQuery: true,\n          activityIds: 'run.xbud.android.mvp.ui.other.MainActivity',\n          matches:\n            '@ImageView[childCount=0][text=null][visibleToUser=true] < FrameLayout[childCount=1] <3 FrameLayout[childCount=3] < FrameLayout[childCount=2] +5 FrameLayout[childCount=4] > [text^=\"扭动或点击\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13296398',\n        },\n        {\n          key: 3,\n          name: '字节广告-1',\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches:\n            '@Image[text=\"\"] < View +n View > View > TextView[text=\"广告\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13414538',\n        },\n        {\n          key: 4,\n          name: '字节广告-2',\n          fastQuery: true,\n          activityIds:\n            'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity',\n          matches: '[id=\"com.byted.pangle:id/tt_reward_full_count_down_after\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13414544',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/sogou.mobile.explorer.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'sogou.mobile.explorer',\n  name: '搜狗浏览器极速版',\n  groups: [\n    {\n      key: 1,\n      name: '分段广告-小说页面广告',\n      activityIds: 'com.tencent.mtt.MainActivity',\n      rules: [\n        {\n          key: 0,\n          excludeMatches: '[desc=\"关闭此广告\"][visibleToUser=true]',\n          matches:\n            '@ViewGroup[clickable=true] >2 [desc=\"广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/5c2eb8d5-f53a-4b8e-81e2-65728cf4e924',\n          snapshotUrls: 'https://i.gkd.li/i/21556785',\n        },\n        {\n          preKeys: [0],\n          matches:\n            '@ViewGroup[clickable=true] > [desc=\"关闭此广告\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/63c0e510-c2eb-4cca-b3f4-81bfe709972c',\n          snapshotUrls: 'https://i.gkd.li/i/21556776',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tech.pingx.watchface.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tech.pingx.watchface',\n  name: '表盘自定义工具',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'io.dcloud.PandoraEntryActivity',\n          matches: [\n            '[text*=\"请勿\"][text*=\"电子书\"]',\n            '[text=\"确定\"][clickable=true]',\n          ],\n          snapshotUrls: 'https://i.gkd.li/i/23714166',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tkaxv7s.xposed.sesame.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tkaxv7s.xposed.sesame',\n  name: '芝麻粒',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-提示弹窗',\n      desc: '点击[我知道了]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'tkaxv7s.xposed.sesame.ui.MainActivity',\n          matches: '[text=\"我知道了\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/75d1d639-5234-4ad4-865d-2b1617994a16',\n          snapshotUrls: 'https://i.gkd.li/i/16060201',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tool.seagull.v.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tool.seagull.v',\n  name: '海鸥加速器',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      rules: [\n        {\n          key: 0,\n          name: '卡片广告-1',\n          activityIds: 'io.github.trojan_gfw.igniter.MainActivity',\n          matches:\n            'View[childCount=2] > @Button[clickable=true] - View > View > View > Image',\n          snapshotUrls: 'https://i.gkd.li/i/13413556',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '全屏广告-谷歌广告',\n      rules: [\n        {\n          key: 0,\n          name: '谷歌广告-1',\n          activityIds: [\n            'io.github.trojan_gfw.igniter.MainActivity',\n            'com.google.android.gms.ads.AdActivity',\n          ],\n          matches:\n            '[desc=\"OPEN\" || desc=\"開啟\"] - @View[clickable=true][visibleToUser=true] > [text=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13426255',\n            'https://i.gkd.li/i/13459399',\n          ],\n        },\n        {\n          key: 1,\n          name: '谷歌广告-2',\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches:\n            '@Button[clickable=true][childCount=0] < View[childCount=1] <2 View[childCount=2] - View >3 [desc=\"開啟\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476799',\n        },\n        {\n          key: 2,\n          name: '谷歌广告-3',\n          activityIds: 'com.google.android.gms.ads.AdActivity',\n          matches: '[desc=\"Interstitial close button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13476579',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tv.danmaku.bili.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tv.danmaku.bili',\n  name: '哔哩哔哩',\n  groups: [\n    {\n      key: -1,\n      name: '开屏广告',\n      matchRoot: true,\n      fastQuery: true,\n      //matchTime: 10000, 从桌面小组件进入哔哩哔哩观看视频后，退出返回到哔哩哔哩首页时会跳出开屏广告\n      actionMaximum: 2, // 可能连续出现两次 https://github.com/AIsouler/GKD_subscription/issues/1280\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          actionCd: 500,\n          matches: '[vid=\"count_down\" || vid=\"skip\"][visibleToUser=true]', // [text*=\"跳过\"] 可能会误触搜索框\n          snapshotUrls: [\n            'https://i.gkd.li/i/16187624',\n            'https://i.gkd.li/i/16484445',\n          ],\n        },\n      ],\n    },\n    {\n      key: 0,\n      name: '局部广告-评论区顶部公告横幅',\n      rules: [\n        {\n          fastQuery: true,\n          excludeActivityIds: [\n            'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',\n            'tv.danmaku.bili.MainActivityV2',\n          ],\n          matches:\n            'LinearLayout[id=\"tv.danmaku.bili:id/ad_tint_frame\"] > ImageView[id=\"tv.danmaku.bili:id/close\"][desc=\"关闭\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12785461',\n            'https://i.gkd.li/i/12775156',\n          ],\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-动态推荐卡片广告',\n      desc: '点击卡片右上角[广告]按钮-点击不感兴趣',\n      fastQuery: true,\n      activityIds: 'tv.danmaku.bili.MainActivityV2',\n      rules: [\n        {\n          key: 1,\n          matches: '[id=\"tv.danmaku.bili:id/ad_goods_mark_big\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12700222',\n        },\n        {\n          preKeys: [1],\n          matches: '[text=\"不感兴趣\"][id^=\"tv.danmaku.bili:id/reason\"]',\n          snapshotUrls: 'https://i.gkd.li/i/12700243',\n        },\n      ],\n    },\n    {\n      key: 6,\n      name: '更新提示',\n      fastQuery: true,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      activityIds: [\n        'com.bilibili.app.preferences.BiliPreferencesActivity',\n        'tv.danmaku.bili.ui.splash.ad.page.HotSplashActivity',\n        '.MainActivityV2',\n      ],\n      rules: [\n        {\n          key: 1,\n          matches: '[text=\"忽略此版本的更新\"][checked=false]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12649689',\n            'https://i.gkd.li/i/13212209',\n            'https://i.gkd.li/i/13228977',\n          ],\n        },\n        {\n          preKeys: [1],\n          matches: '[id=\"tv.danmaku.bili:id/update_btn_cancel\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12649689',\n            'https://i.gkd.li/i/13212209',\n            'https://i.gkd.li/i/13228977',\n          ],\n        },\n      ],\n    },\n    {\n      key: 7,\n      name: '局部广告-视频页广告',\n      desc: '领取大会员月卡,B站免流星卡',\n      fastQuery: true,\n      rules: [\n        {\n          key: 1,\n          matchTime: 10000,\n          actionMaximum: 1,\n          activityIds: [\n            'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',\n            'com.bilibili.video.videodetail.VideoDetailsActivity',\n          ],\n          matches: '[id=\"tv.danmaku.bili:id/toast_x\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/12892611',\n            'https://i.gkd.li/i/13308344',\n            'https://i.gkd.li/i/13538048',\n          ],\n        },\n        {\n          key: 2,\n          fastQuery: true,\n          activityIds:\n            'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',\n          matches:\n            '@[vid=\"close\"][visibleToUser=true] - [text$=\"免费领B站大会员\"]',\n          exampleUrls: 'https://e.gkd.li/cd934dfc-666e-4562-8b77-aac95f73694e',\n          snapshotUrls: 'https://i.gkd.li/i/18165189',\n        },\n      ],\n    },\n    {\n      key: 8,\n      name: '局部广告-直播间悬浮窗广告',\n      desc: '点击关闭',\n      fastQuery: true,\n      activityIds: 'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '[id=\"tv.danmaku.bili:id/shopping_close\" || vid=\"live_game_card_close\" || vid=\"match_close\" || vid=\"iv_pop_rank_guide_card_close\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13200549',\n            'https://i.gkd.li/i/22990081',\n            'https://i.gkd.li/i/23098023',\n            'https://i.gkd.li/i/25238734',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '@[vid=\"close\" || vid=\"iv_close\"] - [vid=\"up_avatar\" || vid=\"gift_icon\" || vid=\"follow_container\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14782965',\n            'https://i.gkd.li/i/18046573',\n            'https://i.gkd.li/i/22990105',\n          ],\n        },\n        {\n          key: 2,\n          matchTime: 10000,\n          actionMaximum: 1, //防止循环展开关闭\n          matches:\n            '[vid=\"vertical_container\"] >3 FrameLayout[clickable=true][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/24985920',\n            'https://i.gkd.li/i/25240029',\n          ],\n        },\n      ],\n    },\n    {\n      key: 9,\n      name: '权限提示-通知权限',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: [\n            '.MainActivityV2',\n            'com.bilibili.video.story.StoryTransparentActivity',\n            'com.bilibili.teenagersmode.ui.TeenagersModeDialogActivity',\n          ],\n          matches: '[text$=\"通知\"] +2 * > [id=\"tv.danmaku.bili:id/close\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13229159',\n            'https://i.gkd.li/i/13614090',\n            'https://i.gkd.li/i/21578494',\n          ],\n        },\n      ],\n    },\n    {\n      key: 10,\n      name: '分段广告-首页推荐视频卡片广告',\n      fastQuery: true,\n      activityIds: '.MainActivityV2',\n      rules: [\n        {\n          key: 0,\n          matches:\n            '@[vid=\"more\" || id=\"tv.danmaku.bili.adbiz:id/more\"] <<n [vid=\"tool_container\" || vid=\"ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/root_container\" || id=\"tv.danmaku.bili.adbiz:id/constraintLayout\"][visibleToUser=true]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14083540',\n            'https://i.gkd.li/i/14588315',\n            'https://i.gkd.li/i/14729855',\n            'https://i.gkd.li/i/18274379',\n            'https://i.gkd.li/i/18306851',\n            'https://i.gkd.li/i/19537979',\n            'https://i.gkd.li/i/23012670',\n            'https://i.gkd.li/i/23123800',\n            'https://i.gkd.li/i/23687196',\n          ],\n        },\n        {\n          key: 1,\n          matches:\n            '@[vid=\"inline_more\"] <<n [vid=\"card_content\"][visibleToUser=true][getChild(1).getChild(1).vid=\"corner_hint_container\"]',\n          exampleUrls: 'https://e.gkd.li/d3d37b4e-cda3-4ba6-8af3-7b45ac8efc10',\n          snapshotUrls: 'https://i.gkd.li/i/17428126',\n          excludeSnapshotUrls: 'https://i.gkd.li/i/17848536',\n        },\n\n        //预留key\n        {\n          preKeys: [0, 1],\n          key: 50,\n          name: '点击[不感兴趣]/[相似内容过多]',\n          matches:\n            '@[clickable=true] > [text=\"此类内容过多\" || text=\"相似内容过多\" || text=\"不感兴趣\" || text=\"up主不感兴趣\" || text=\"对该up的直播不感兴趣\" || text=\"我不想看\" || text=\"引人不适\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/13625309',\n            'https://i.gkd.li/i/13742257',\n            'https://i.gkd.li/i/14155801',\n            'https://i.gkd.li/i/14155272',\n            'https://i.gkd.li/i/17428471',\n            'https://i.gkd.li/i/18274380',\n            'https://i.gkd.li/i/18292926',\n            'https://i.gkd.li/i/20710223',\n            'https://i.gkd.li/i/23687208',\n            'https://i.gkd.li/i/24836772',\n          ],\n          excludeSnapshotUrls: [\n            'https://i.gkd.li/i/18292929',\n            'https://i.gkd.li/i/18306849',\n          ],\n        },\n        {\n          preKeys: [50],\n          key: 70,\n          matches:\n            '@FrameLayout[clickable=true] > [text=\"此类内容过多\" || text=\"相似内容过多\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/2aba6082-1047-464e-959c-82ee62e492aa',\n          snapshotUrls: [\n            'https://i.gkd.li/i/20718890',\n            'https://i.gkd.li/i/20720187',\n          ],\n        },\n      ],\n    },\n    {\n      key: 11,\n      name: '局部广告-个性化内容推荐弹窗',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'tv.danmaku.bili.MainActivityV2',\n          matches:\n            '[text=\"开启个性化内容推荐\"] +3 [id=\"tv.danmaku.bili:id/close_button\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13448905',\n        },\n      ],\n    },\n    {\n      key: 12,\n      name: '全屏广告-会员弹窗',\n      desc: '点击关闭',\n      fastQuery: true,\n      actionMaximum: 1,\n      forcedTime: 10000,\n      rules: [\n        {\n          key: 1,\n          //action: 'clickCenter', 此种点击方式在部分应用版本会造成误触，需点击 clickable=true 节点\n          activityIds: [\n            'tv.danmaku.bili.MainActivityV2',\n            'com.bilibili.vip.web.VipWebActivity',\n            'com.bilibili.module.vip.web.VipWebActivity',\n          ],\n          matches:\n            '@[index=parent.childCount.minus(1)][height<150][visibleToUser=true] <(1,2) View <(1,2) View <(4,5) View < View < View < WebView[text=\"会员中心\" || text=\"大会员\"] < WebView < [vid=\"webview\"]',\n          exampleUrls: 'https://e.gkd.li/ac6dd8ae-f18e-4f48-9184-39e4dbd832ba',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15219142',\n            'https://i.gkd.li/i/15220560',\n            'https://i.gkd.li/i/15289942',\n            'https://i.gkd.li/i/15328394',\n            'https://i.gkd.li/i/18236032',\n            'https://i.gkd.li/i/22310507',\n          ],\n        },\n        {\n          key: 4,\n          activityIds: [\n            'tv.danmaku.bili.MainActivityV2',\n            'com.bilibili.vip.web.VipWebActivity',\n          ],\n          matches:\n            'ComposeView > View[childCount=7] > @View[clickable=true][childCount=0] <<n [vid=\"vip_panel\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/a78a7719-b148-4df2-a225-f7a24be0c413',\n          snapshotUrls: [\n            'https://i.gkd.li/i/15523975',\n            'https://i.gkd.li/i/15814146',\n          ],\n        },\n        {\n          key: 5,\n          fastQuery: true,\n          activityIds: 'com.bilibili.vip.web.VipWebActivity',\n          matches:\n            '@TextView[width<130 && height<130] - TextView[childCount=0][id=\"dialog-canvas\"] <<n [vid=\"webview\"]',\n          snapshotUrls: 'https://i.gkd.li/i/23385023',\n        },\n      ],\n    },\n    {\n      key: 13,\n      name: '全屏广告-分享稿件弹窗',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'tv.danmaku.bili.ui.splash.ad.page.HotSplashActivity',\n          matches: '[vid=\"poster_share_cancel\"][visibleToUser=true]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/80e5730d-6634-4a0a-9c58-c57f7ad5e58c',\n          snapshotUrls: 'https://i.gkd.li/i/15858057',\n        },\n      ],\n    },\n    {\n      key: 14,\n      name: '分段广告-搜索结果广告',\n      desc: '点击右下角[菜单]-点击[不感兴趣]',\n      fastQuery: true,\n      activityIds: 'com.bilibili.search2.main.BiliMainSearchActivity',\n      rules: [\n        {\n          key: 1,\n          matches:\n            '@[vid=\"more\"][clickable=true][visibleToUser=true] -(3,4) [vid=\"tag_layout\"]',\n          exampleUrls: 'https://e.gkd.li/e5dd30e7-e8dd-42bc-8953-23368e65cca4',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17269053',\n            'https://i.gkd.li/i/17964354',\n          ],\n        },\n        {\n          preKeys: [1],\n          matches: '@[clickable=true] > [text$=\"不感兴趣\"]',\n          exampleUrls: 'https://e.gkd.li/5e6e4b69-ba97-473d-9f62-631c296da589',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17269055',\n            'https://i.gkd.li/i/17964356',\n            'https://i.gkd.li/i/22657666', // 直播\n          ],\n        },\n      ],\n    },\n    {\n      key: 15,\n      name: '分段广告-视频详情页下方推广',\n      desc: '关闭[广告/推广/直播]',\n      fastQuery: true,\n      activityIds: 'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',\n      rules: [\n        {\n          key: 0,\n          anyMatches: [\n            '@[vid=\"more\" || vid=\"more_layout\" || id=\"tv.danmaku.bili.adbiz:id/more\" || id=\"tv.danmaku.bili.adbiz:id/more_layout\"] <<n [vid=\"ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/ad_tint_frame\" || id=\"tv.danmaku.bili.adbiz:id/ad_tint_frame\"][visibleToUser=true]', // 广告、推广\n            '@[vid=\"more\"] -(3,5) [vid=\"live_lottie_layout\"][visibleToUser=true]', // 直播\n            '[!(vid=\"duration\" || vid=\"second_to_last_line_area\") || text=\"课堂\"] <3 ViewGroup[getChild(0).vid=\"cover\"] > [vid=\"more\"][visibleToUser=true]', // 纪录片、课堂推广、游戏\n          ],\n          exampleUrls: [\n            'https://e.gkd.li/219c40c4-debf-40d8-889a-7eb39c87126c',\n            'https://e.gkd.li/dc54e6ee-24df-49a8-874a-f381326122c3',\n          ],\n          snapshotUrls: [\n            // 广告、推广\n            'https://i.gkd.li/i/17675629',\n            'https://i.gkd.li/i/20739380',\n            'https://i.gkd.li/i/20744764',\n            'https://i.gkd.li/i/20794380',\n            'https://i.gkd.li/i/21552836',\n            'https://i.gkd.li/i/21705345',\n            'https://i.gkd.li/i/21947622',\n\n            // 直播\n            'https://i.gkd.li/i/17675894',\n            'https://i.gkd.li/i/18306858',\n\n            // 纪录片、课堂推广、游戏\n            'https://i.gkd.li/i/23934632',\n            'https://i.gkd.li/i/23933925',\n            'https://i.gkd.li/i/23933866',\n            'https://i.gkd.li/i/24015674',\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/24365466',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          matches:\n            '@[clickable=true] > [text*=\"不感兴趣\" || text=\"相似内容过多\" || text=\"我不想看\"]',\n          exampleUrls: 'https://e.gkd.li/23937c2d-379c-4fb5-aaee-7295bcf0afca',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17676025',\n            'https://i.gkd.li/i/17676149',\n            'https://i.gkd.li/i/17677147',\n            'https://i.gkd.li/i/18296940',\n            'https://i.gkd.li/i/18306839',\n            'https://i.gkd.li/i/20739391',\n            'https://i.gkd.li/i/24015691',\n            'https://i.gkd.li/i/24336415',\n          ],\n        },\n        {\n          preKeys: [1],\n          key: 2,\n          matches: '[vid=\"close_dislike\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/80514576-3656-4dcc-89f5-5992803c8e77',\n          snapshotUrls: 'https://i.gkd.li/i/18587456',\n        },\n      ],\n    },\n    {\n      key: 16,\n      name: '功能类-自动关闭故事模式',\n      desc: '播放视频时退出竖屏模式',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.bilibili.video.story.StoryVideoActivity',\n            'com.bilibili.video.story.StoryTransparentActivity',\n          ],\n          matches: '[vid=\"story_ctrl_router\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/4bfd6131-d4be-46be-affb-73338b01f49c',\n          snapshotUrls: [\n            'https://i.gkd.li/i/18164075',\n            'https://i.gkd.li/i/23325994',\n          ],\n        },\n      ],\n    },\n    {\n      key: 17,\n      name: '功能类-自动点击评论区的[展开更多评论]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.bilibili.video.story.StoryVideoActivity',\n            'com.bilibili.video.story.StoryTransparentActivity',\n            'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity',\n            'com.bilibili.ship.theseus.playlist.UnitedPlaylistActivity',\n          ],\n          matches: '@LinearLayout[clickable=true] > [text=\"展开更多评论\"]',\n          exampleUrls: 'https://e.gkd.li/e7b7167e-7623-4079-9f16-fd253f303074',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22572375',\n            'https://i.gkd.li/i/23325508',\n            'https://i.gkd.li/i/22573433',\n            'https://i.gkd.li/i/23786106',\n          ],\n        },\n      ],\n    },\n    {\n      key: 18,\n      name: '功能类-自动领取会员经验',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bilibili.vip.web.VipWebActivity',\n          matches:\n            'TextView[childCount=0][text!=null][index=parent.childCount.minus(1)] -2 View >3 [text^=\"专属等级加速包\"] +2 @TextView[childCount=0][text=\"领取\"] <<n [vid=\"webview\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/22886723', // 领取前\n            'https://i.gkd.li/i/22886739', // 领取后\n          ],\n          excludeSnapshotUrls: 'https://i.gkd.li/i/23385023',\n        },\n      ],\n    },\n    {\n      key: 19,\n      name: '功能类-自动点击查看原图',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'com.bilibili.video.story.StoryVideoActivity', // 视频：竖屏模式1\n            'com.bilibili.video.story.StoryTransparentActivity', // 视频：竖屏模式2\n            'com.bilibili.ship.theseus.detail.UnitedBizDetailsActivity', // 视频：详情页模式\n            'com.bilibili.ship.theseus.playlist.UnitedPlaylistActivity', // 视频：播放列表（稍后再看/收藏夹）\n            'com.bilibili.bplus.followinglist.page.browser.ui.LightBrowserActivityV2', // 动态：图片\n            'com.bilibili.lib.ui.ComposeActivity', // 动态：评论图片\n            'com.bilibili.column.ui.detail.image.ColumnImageViewerActivity', // 专栏图片\n          ],\n          matches: '[text^=\"查看原图\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/c0ffc9cb-fac0-4b5c-9645-3674942b5c7d',\n          snapshotUrls: [\n            'https://i.gkd.li/i/23325552', // 视频：竖屏模式1\n            'https://i.gkd.li/i/23304237', // 视频：竖屏模式2\n            'https://i.gkd.li/i/23304245', // 视频：详情页模式\n            'https://i.gkd.li/i/23786065', // 视频：播放列表（稍后再看/收藏夹）\n            'https://i.gkd.li/i/23305280', // 动态：帖内图片\n            'https://i.gkd.li/i/23305281', // 动态：评论图片\n            'https://i.gkd.li/i/23305275', // 专栏图片\n          ],\n        },\n      ],\n    },\n    {\n      key: 20,\n      name: '评价提示',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'com.bilibili.search2.main.BiliMainSearchActivity',\n          matches: '[vid=\"rating_dialog_close\"][clickable=true]',\n          snapshotUrls: 'https://i.gkd.li/i/23440560',\n        },\n      ],\n    },\n    {\n      key: 21,\n      name: '功能类-直播自动点赞',\n      desc: '左下角提示-点击',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',\n          matches: '@[vid=\"live_combo_action_button\"] > [text=\"点赞\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25238947',\n        },\n      ],\n    },\n    {\n      key: 22,\n      name: '功能类-直播自动投喂粉丝团',\n      desc: '左下角提示-点击投喂_需要0.1米谨慎开启(虽然只有一次)',\n      matchTime: 10000,\n      actionMaximum: 1,\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'com.bilibili.bililive.room.ui.roomv3.LiveRoomActivityV3',\n          matches: '@[vid=\"live_combo_action_button\"] > [text=\"投喂\"]',\n          snapshotUrls: 'https://i.gkd.li/i/25238945',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tv.danmaku.bilibilihd.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tv.danmaku.bilibilihd',\n  name: '哔哩哔哩HD',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches: '[id=\"tv.danmaku.bilibilihd:id/count_down\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13031261',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '分段广告-首页、视频播放页广告',\n      desc: '点击[更多]-点击[不感兴趣]',\n      fastQuery: true,\n      rules: [\n        {\n          key: 0,\n          activityIds: 'tv.danmaku.bili.MainActivityV2',\n          matches: '@[vid=\"more\"][visibleToUser=true] - [vid=\"desc_content\"]',\n          exampleUrls: 'https://e.gkd.li/c947945b-db14-4873-8245-269d5bd7c496',\n          snapshotUrls: [\n            'https://i.gkd.li/i/17726316',\n            'https://i.gkd.li/i/17891830',\n          ],\n        },\n        {\n          key: 1,\n          activityIds:\n            'com.bilibili.ship.theseus.hd.detail.HDUnitedBizDetailsActivity',\n          matches: '@[vid=\"more\"] -3 [vid=\"ad_desc\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ba14fc80-a227-479a-be82-fcddf01b1aa9',\n          snapshotUrls: 'https://i.gkd.li/i/17726295',\n        },\n        {\n          preKeys: [0, 1],\n          activityIds: [\n            'tv.danmaku.bili.MainActivityV2',\n            'com.bilibili.ship.theseus.hd.detail.HDUnitedBizDetailsActivity',\n          ],\n          matches: '@[clickable=true] > [text=\"不感兴趣\"]',\n          exampleUrls: [\n            'https://e.gkd.li/516beab1-9421-4d71-b803-9f56a15f94de',\n            'https://e.gkd.li/ea61bb70-6919-48de-bf07-dbf653a09e08',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/17726321',\n            'https://i.gkd.li/i/17726285',\n            'https://i.gkd.li/i/17892061',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tw.com.gamer.android.activecenter.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tw.com.gamer.android.activecenter',\n  name: '巴哈姆特',\n  groups: [\n    {\n      key: 0,\n      name: '开屏广告',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      priorityTime: 10000,\n      rules: [\n        {\n          matches:\n            '@ImageButton[desc=\"Interstitial close button\"][visibleToUser=true] < FrameLayout <2 RelativeLayout < [id=\"android:id/content\"]',\n          snapshotUrls: 'https://i.gkd.li/i/14292691',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tw.com.gamer.android.animad.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tw.com.gamer.android.animad',\n  name: '動畫瘋',\n  groups: [\n    {\n      key: 1,\n      name: '其他-动画疯年龄限制',\n      desc: '点击同意',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'tw.com.gamer.android.animad.VideoActivity',\n          matches:\n            '[id=\"tw.com.gamer.android.animad:id/agree_button\"][text=\"同意\"]',\n          snapshotUrls: 'https://i.gkd.li/i/13808757',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tw.com.icash.a.icashpay.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tw.com.icash.a.icashpay',\n  name: 'icash Pay',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds:\n            'tw.com.icash.icashpay.framework.home.HomeNavigationActivity',\n          matches: '[vid=\"img_activity_ad_close\"]',\n          exampleUrls: 'https://e.gkd.li/8fefb936-558b-44d2-a6e0-457f7e59772d',\n          snapshotUrls: 'https://i.gkd.li/i/17640327',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tw.nekomimi.nekogram.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tw.nekomimi.nekogram',\n  name: 'Nekogram',\n  groups: [\n    {\n      key: 1,\n      name: '更新提示',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'org.telegram.ui.LaunchActivity',\n          matches:\n            '@Button[desc$=\"稍后提醒我\"] - [desc=\"立即下载\"] <3 FrameLayout < FrameLayout < [id=\"android:id/content\"]',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14229236',\n            'https://i.gkd.li/i/14372061',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/tw.net.pic.m.openpoint.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'tw.net.pic.m.openpoint',\n  name: 'OPENPOINT',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-每日弹窗广告',\n      desc: '勾选[今日不再顯示]-点击关闭',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: '[vid=\"iv_check_box\"][checked=false]',\n          exampleUrls: 'https://e.gkd.li/ec0eea76-8689-498d-8329-75bdb06c1e30',\n          snapshotUrls: 'https://i.gkd.li/i/15806622',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: '[vid=\"ivClose\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/ec0eea76-8689-498d-8329-75bdb06c1e30',\n          snapshotUrls: 'https://i.gkd.li/i/15806622',\n        },\n      ],\n    },\n    {\n      key: 2,\n      name: '通知提示-i珍食公告弹窗',\n      desc: '勾选[我已了解]-点击[確認]',\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: '.activity_ibon.IMapActivity',\n          matches:\n            '@[visibleToUser=true][text=\"atom-button-control-check-box-btn-check-box-n@3x\"][checked=false] <<n [vid=\"web_view\"]',\n          exampleUrls: 'https://e.gkd.li/a36088c2-79a7-4167-bb77-7bd9be05696b',\n          snapshotUrls: 'https://i.gkd.li/i/15806673',\n        },\n        {\n          preKeys: [0],\n          key: 1,\n          fastQuery: true,\n          activityIds: '.activity_ibon.IMapActivity',\n          matches: '@[visibleToUser=true][text=\"確認\"] <<n [vid=\"web_view\"]',\n          exampleUrls: 'https://e.gkd.li/a36088c2-79a7-4167-bb77-7bd9be05696b',\n          snapshotUrls: 'https://i.gkd.li/i/15806673',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/world.letsgo.booster.android.pro.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'world.letsgo.booster.android.pro',\n  name: '快连 VPN',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-各种提示弹窗',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: [\n            'world.letsgo.booster.android.pages.home.HomeActivity',\n            'world.letsgo.booster.android.pages.guide.GuideActivity',\n          ],\n          matches:\n            '[text=\"我会设置\" || text=\"快快收下\" || text=\"知道了\"][visibleToUser=true]',\n          exampleUrls: [\n            'https://e.gkd.li/0fe731a4-bf4c-4d35-a157-c1304e8df4ba',\n            'https://e.gkd.li/efeb874b-f3bf-4899-a069-387d020eb1f5',\n            'https://e.gkd.li/5868f38e-b929-4423-adfc-82b05ea1733c',\n          ],\n          snapshotUrls: [\n            'https://i.gkd.li/i/23619426',\n            'https://i.gkd.li/i/23619427',\n            'https://i.gkd.li/i/23619428',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/xxx.pornhub.fuck.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'xxx.pornhub.fuck',\n  name: 'JavDB',\n  groups: [\n    {\n      key: 1,\n      name: '通知提示-公告弹窗',\n      desc: '点击[知道了]',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: '.MainActivity',\n          matches:\n            '@Button[desc=\"知道了\"][visibleToUser=true] <3 View < View < View < View < FrameLayout < [id=\"android:id/content\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/ae1792dd-210b-4ac2-bfce-c2081ed03498',\n          snapshotUrls: 'https://i.gkd.li/i/14559882',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/youqu.android.todesk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'youqu.android.todesk',\n  name: 'ToDesk',\n  groups: [\n    {\n      key: 1,\n      name: '局部广告-卡片广告',\n      desc: '关闭卡片广告',\n      rules: [\n        {\n          key: 0,\n          fastQuery: true,\n          activityIds: [\n            'youqu.android.todesk.activity.WelcomeActivity',\n            'youqu.android.todesk.activity.MainActivity',\n          ],\n          matches:\n            '[id=\"youqu.android.todesk:id/ivAdClose\" || id=\"youqu.android.todesk:id/llClose\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/7535a849-b4a7-4dd5-a6c1-4d3def042d70',\n          snapshotUrls: [\n            'https://i.gkd.li/i/14175556',\n            'https://i.gkd.li/i/13228546',\n          ],\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/yyc.xk.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'yyc.xk',\n  name: '星空视频壁纸',\n  groups: [\n    {\n      key: 1,\n      name: '全屏广告-弹窗广告',\n      desc: '点击关闭',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: '.activity.MainActivity',\n          matches: '[vid=\"gm信息流广告关闭\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/972de09c-a399-4b7d-b7c4-e03c072a7170',\n          snapshotUrls: 'https://i.gkd.li/i/20863704',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/zhongxinjiantou.szkingdom.android.newphone.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'zhongxinjiantou.szkingdom.android.newphone',\n  name: '蜻蜓点金',\n  groups: [\n    {\n      key: 1,\n      name: '权限提示-通知权限',\n      desc: '点击放弃通知',\n      fastQuery: true,\n      matchTime: 10000,\n      actionMaximum: 1,\n      resetMatch: 'app',\n      rules: [\n        {\n          activityIds: 'com.szkingdom.android.phone.ZXJTUserMainActivity',\n          matches:\n            '[id=\"zhongxinjiantou.szkingdom.android.newphone:id/tv_notify_confirm_off\"][text=\"放弃通知\"]',\n          exampleUrls:\n            'https://m.gkd.li/57941037/642582b1-f0f1-446c-b3f4-287eac62d108',\n          snapshotUrls: 'https://i.gkd.li/i/12924466',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/apps/zte.com.market.ts",
    "content": "import { defineGkdApp } from '@gkd-kit/define';\n\nexport default defineGkdApp({\n  id: 'zte.com.market',\n  name: '应用中心',\n  groups: [\n    {\n      key: 1,\n      name: '功能类-流量模式点击[继续下载]',\n      rules: [\n        {\n          fastQuery: true,\n          activityIds: 'cn.nubia.neostore.WifiLimitActivity',\n          matches: '[text=\"继续下载\"][visibleToUser=true]',\n          exampleUrls: 'https://e.gkd.li/6bab3e98-7b52-49eb-b8e8-ae47b871343d',\n          snapshotUrls: 'https://i.gkd.li/i/16478331',\n        },\n      ],\n    },\n  ],\n});\n"
  },
  {
    "path": "src/categories.ts",
    "content": "import { defineGkdCategories } from '@gkd-kit/define';\n\nexport default defineGkdCategories([\n  {\n    key: 0,\n    name: '开屏广告',\n    enable: true,\n  },\n  {\n    key: 1,\n    name: '青少年模式',\n    enable: false,\n  },\n  {\n    key: 2,\n    name: '更新提示',\n    enable: false,\n  },\n  {\n    key: 3,\n    name: '评价提示',\n    enable: false,\n  },\n  {\n    // 软件用于告知用户信息的弹窗，具体表现为公告弹窗一类\n    key: 4,\n    name: '通知提示',\n    enable: false,\n  },\n  {\n    // 各种权限请求，如定位权限、通知权限等\n    key: 5,\n    name: '权限提示',\n    enable: false,\n  },\n  {\n    // 不影响使用的广告, 所有的广告卡片及悬浮广告按钮\n    key: 6,\n    name: '局部广告',\n    enable: false,\n  },\n  {\n    // 不关闭广告就无法进行其他操作的广告弹窗, 它阻碍用户操作\n    key: 7,\n    name: '全屏广告',\n    enable: false,\n  },\n  {\n    // 如微信朋友圈广告/酷安帖子广告/贴吧帖子广告\n    // 需要分阶段多步操作才能关闭, 会造成屏幕闪烁, 影响用户体验\n    key: 8,\n    name: '分段广告',\n    enable: false,\n  },\n  {\n    // 非广告, 点击某些功能按钮\n    key: 9,\n    name: '功能类',\n    enable: false,\n  },\n  {\n    // 分类不明确\n    key: 10,\n    name: '其他',\n    enable: false,\n  },\n]);\n"
  },
  {
    "path": "src/globalDefaultApps.ts",
    "content": "// 全局规则黑名单\n// 在一些非系统应用中禁用所有全局规则\nexport const blackListAppIDs: string[] = [\n  'com.tencent.mm', // 微信\n  'li.songe.gkd', // GKD\n  'com.eg.android.AlipayGphone', //支付宝\n  'com.tencent.wetype', // 微信输入法\n  'com.tmri.app.main', // 交管12123\n  'com.github.android', // GitHub\n  'org.telegram.messenger', // Telegram\n  'com.twitter.android', // X(推特)\n  'com.aistra.hail', // 雹\n  'com.heyanle.easybangumi4', // 纯纯看番\n  'com.perol.pixez', // PixEz\n  'com.perol.play.pixez', // PixEz Google Play版\n  'com.magicalstory.videos', // 奇妙影视\n  'com.magicalstory.installer', // 奇妙安装程序\n  'com.guozhigq.pilipala', // PiliPala\n  'com.salt.music', // Salt Player\n  'com.xuncorp.qinalt.music', // 青盐云听\n  'com.github.wgh136.pica_comic', // Pica Comic\n  'com.yenaly.han1meviewer', // Han1meViewer\n  'ru.zdevs.zarchiver', // ZArchiver\n  'ru.zdevs.zarchiver.pro', // ZArchiver Pro\n  'me.zhanghai.android.files', // 质感文件\n  'com.xjcheng.musictageditor', // 音乐标签\n  'com.lalilu.lmusic', // LMusic\n  'com.ktls.fileinfo', // 存储空间清理\n  'idm.internet.download.manager', // 1DM\n  'idm.internet.download.manager.plus', // 1DM+\n  'com.mxtech.videoplayer', // MX播放器\n  'com.mxtech.videoplayer.pro', // MX播放器专业版\n  'com.github.kr328.clash', // Clash for Android\n  'com.x8bit.bitwarden', // Bitwarden\n  'org.localsend.localsend_app', // LocalSend\n  'moe.shizuku.privileged.api', // Shizuku\n  'com.ktls.automation', // 自动点击工具\n  'com.deepl.mobiletranslator', // DeepL\n  'com.accessibilitymanager', // 无障碍管理器\n  'me.tasy5kg.cutegif', // 小萌GIF\n  'com.absinthe.libchecker', // LibChecker\n  'com.github.metacubex.clash.meta', // Clash Meta for Android\n  'io.github.jd1378.otphelper', // 短信验证码自动复制\n  'com.valvesoftware.android.steam.community', // Steam\n  'io.legado.app.release', // 阅读\n  'com.getsurfboard', // Surfboard\n  'moe.nb4a', // NekoBox\n  'com.v2ray.ang', // v2rayNG\n  'com.v2ray.v2fly', // v2flyNG\n  'com.xiaoyv.bangumi', // Bangumi for Android\n  'com.funny.translation', // 译站\n  'com.looker.droidify', // Droid-ify\n  'app.eleven.com.fastfiletransfer', // 文件闪传\n  'com.idaodan.clean.master', // 雪豹速清\n  'com.samsung.agc.gcam84', // 相机\n  'com.wsw.cospa', // 异次元\n  'app.mihon', // Mihon\n  'com.rosan.installer.x', // installerX\n  'app.rikka.savecopy', // 保存副本\n  'com.rosan.dhizuku', // Dhizuku\n  'com.rosan.accounts', // Accounts\n  'com.dv.adm', // ADM\n  'com.assistant.ongoingclear', // 固定通知隐藏\n  'org.koitharu.kotatsu', // Kotatsu\n  'me.ash.reader', // Read You\n  'com.huanchengfly.tieba.post', // 贴吧Lite\n  'com.example.c001apk', // c001apk\n  'dev.anilbeesetti.nextplayer', // Next Player\n  'org.kde.kdeconnect_tp', // KDE Connect\n  'xyz.adproqwq.GKDTool', // GKDTool\n  'com.alibaba.aliyun', // 阿里云\n  'com.alicloud.databox', // 阿里云盘\n  'xyz.nextalone.nagram', // Nagram\n  'com.openai.chatgpt', // ChatGPT\n  'org.telegram.group', // Turrit\n  'com.android.chrome', // Chrome\n  'com.microsoft.emmx', // Edge\n  'org.mozilla.firefox', // Firefox\n  'org.mozilla.firefox_beta', // Firefox Beta\n  'org.mozilla.fenix', // Firefox Nightly\n  'org.mozilla.focus', // Firefox Focus\n  'com.google.android.youtube', // YouTube\n  'com.xunmeng.pinduoduo', // 拼多多\n  'com.byyoung.setting', //爱玩机工具箱\n  'com.mixplorer', // MiX文件管理器\n  'com.xjs.ehviewer', // Ehviewer\n  'rikka.appops', // App Ops\n  'com.vrem.wifianalyzer', // WiFiAnalyzer\n  'remix.myplayer', // APlayer\n  'com.arn.scrobble', // Pano Scrobbler\n  'org.videolan.vlc', // VLC\n  'org.geogebra.android.calculator.suite', // GeoGebra\n  'com.azure.authenticator', // Microsoft Authenticator\n  'com.microsoft.office.officehub', // Microsoft Office\n  'com.microsoft.office.officehubrow', // Microsoft Office (Google Play版)\n  'com.microsoft.office.outlook', // Microsoft Outlook\n  'com.microsoft.office.onenote', // Microsoft OneNote\n  'com.sonkins.tguitar', // Guitar Tuner\n  'com.eumlab.android.prometronome', // Pro Metronome\n  'cn.edu.buaa.wxwork', // 智慧北航\n  'io.github.muntashirakon.AppManager', // App Manager\n  'moe.shizuku.redirectstorage', // 存储空间隔离\n  'web1n.stopapp', // 小黑屋\n  'com.shatyuka.zhiliao', // 知了\n  'com.adobe.reader', // Adobe Acrobat\n  'org.wikipedia', // 维基百科\n  'org.kiwix.kiwixmobile', // Kiwix\n  'com.brakefield.painter', // Infinte Painter\n  'me.iacn.biliroaming', // 哔哩漫游\n  'com.termux', // Termux\n  'oss.krtirtho.spotube', // Spotube\n  'com.merxury.blocker', // Blocker\n  'moe.minamigo.miuigms', // MIUIGMS\n  'mufanc.tools.applock', // AppLock\n  'com.gankes.tsbattery', // TSBattery\n  'com.oasisfeng.nevo.xposed', // 女娲石\n  'com.reddit.frontpage', // Reddit\n  'com.ghostflying.locationreportenabler', // LocationReportEnabler\n  'com.zyc.zcontrol', // ZControl\n  'org.nobody.multitts', // MultiTTS\n  'deltazero.amarok', // Amarok 更新提示在 https://i.gkd.li/i/17812411 误触\n  'com.quark.browser', // 夸克浏览器 开屏广告误触 https://i.gkd.li/i/18221460\n  'bin.mt.plus', // MT管理器\n  'com.pikcloud.pikpak', // PikPak\n  'com.deepseek.chat', // DeepSeek\n  'com.yjllq.kito', // 可拓浏览器\n  'com.fuck.android.rimet', // 锤锤\n  'cn.tinyhai.ban_uninstall', // 禁止卸载\n  'cc.aoeiuv020.iamnotdisabled.hook', // 非残！\n  'cc.aoeiuv020.iamnotdisabled', // 我残？\n  'io.github.jqssun.gpssetter', // GPS Setter\n  'me.hoshino.novpndetect', // NoVPNDetect\n  'com.xchat', // XChat\n  'com.kooritea.fcmfix', // fcmfix\n  'nep.timeline.re_telegram', // Re:Telegram\n  'com.fankes.tsbattery', // TSBattery\n  'top.trangle.mbga', // MBGA\n  'cc.microblock.TGStickerProvider', // TGStickerProvider\n  'xyz.xfqlittlefan.notdeveloper', // 我不是开发者\n  'com.zhenxi.hunter', // Hunter\n  'com.reveny.nativecheck', // Native Detector\n  'cn.lyric.getter', // 酒域-歌词获取\n  'io.github.vvb2060.keyattestation', // 密钥认证\n  'com.google.android.hmal', // 隐藏应用列表（@pumPCin fork）\n  'com.adguard.android', // AdGuard\n  'com.spotify.music', // Spotify\n  'jp.pxv.android', // pixiv\n  'com.fankes.apperrorstracking', // 异常跟踪\n  'com.fankes.epperrorsdemo', // 异常示例\n  'com.fankes.miui.notify', // MIUI 原生通知图标\n  'com.simo.ssl.killer', // SSL Killer\n  'net.afdian.afdian', // 爱发电\n  'org.thoughtcrime.securesms', // Signal 全局规则误触 https://i.gkd.li/i/19952277\n  'com.example.piliplus', // PiliPlus\n  'com.mtphotosapp', // MT Photos 全局规则误触 https://i.gkd.li/i/20023048\n  'com.predidit.kazumi', // Kazumi\n  'com.github.catfriend1.syncthingandroid', // Syncthing-Fork\n  'com.github.catfriend1.syncthingfork', // Syncthing-Fork\n  'org.fcitx.fcitx5.android', // 小企鹅输入法\n  'org.fcitx.fcitx5.android.plugin.clipboard_filter', // 小企鹅输入法（剪贴板过滤器插件）\n  'org.fcitx.fcitx5.android.plugin.rime', // 小企鹅输入法（中州韵插件）\n  'org.fcitx.fcitx5.android.plugin.anthy', // 小企鹅输入法（Anthy 插件）\n  'org.fdroid.fdroid', // F-Droid\n  'org.fdroid.fdroid.privileged', // F-Droid 特权扩展\n  'com.digibites.accubattery', // AccuBattery\n  'com.domosekai.cardreader', // 读卡识途\n  'com.noctuasoftware.stellarium_free', // Stellarium\n  'net.osmand', // OsmAnd\n  'net.osmand.plus', // OsmAnd+\n  'com.google.android.apps.maps', // Google 地图\n  'com.jiaohua_browser', // JMComic2\n  'com.picacomic.fregata', // PicACG\n  'com.rosan.installer.x.revived', // installerX Revived\n  'com.android.gpstest', // GPSTest\n  'com.positron_it.zlib', // Z-Lib\n  'org.sunsetware.phocid', // Phocid\n  'com.twifucker.hachidori', // Hachidori\n  'me.neko.fckvip', // Fuck for VIP\n  'gr.nikolasspyr.integritycheck', // Play Integrity API Checker\n  'com.luckyzyx.luckytool', // 全局规则误触 https://i.gkd.li/i/21339859\n  'ai.x.grok', // Grok 全局规则误触 https://i.gkd.li/i/22884434\n  'xyz.malkki.neostumbler.fdroid', // NeoStumbler\n  'org.torproject.torbrowser', // Tor Browser\n  'proton.android.authenticator', // Proton Authenticator\n  'io.safepal.wallet', // SafePal\n  'org.documentfoundation.libreoffice', // LibreOffice Viewer\n  'be.mygod.vpnhotspot_foss', // VPN 热点\n  'io.nekohasekai.sfa', // sing-box\n  'com.binance.dev', // 币安\n  'com.superproductivity.superproductivity', // Super Productivity\n\n  'com.canghai.haoka',\n  'com.xy.td',\n  'com.bug.hookvip',\n  'one.yufz.hmspush',\n  'io.github.huskydg.magisk',\n  'xzr.konabess',\n  'org.lsposed.manager',\n  'org.lsposed.daemon',\n  'tw.nekomimi.nekogram',\n  'io.github.qauxv',\n  'com.rezvorck.tiktokplugin',\n  'com.zhiliaoapp.musically',\n  'com.github.tianma8023.xposed.smscode',\n  'Han.GJZS',\n  'org.adblockplus.adblockplussbrowser',\n  'com.viewblocker.jrsen',\n  'com.tsng.hidemyapplist',\n  'com.pittvandewitt.wavelet',\n  'one.yufz.onebox',\n  'com.Wecrane.Scar.pubg',\n  'me.bmax.apatch',\n  'com.tubevpn.client',\n  'github.tornaco.android.thanos.pro',\n  'com.omarea.vtools',\n  'com.litebyte.samhelper',\n  'com.nurke.perfectone',\n  'qlenlen.OneDesign',\n  'icu.nullptr.nativetest',\n  'icu.nullptr.applistdetector',\n  'io.github.vvb2060.mahoshojo',\n  'com.samsung.android.memoryguardian',\n  'com.music.khkj',\n  'Hook.JiuWu.Xp',\n  'me.weishu.kernelsu',\n  'com.franco.kernel',\n  'com.samsung.android.themedesigner',\n  'com.samsung.android.game.gamehome',\n  'com.tencent.tmgp.sgame',\n  'com.yangyanghuzhou.heijuan',\n  'com.sec.android.app.sbrowser',\n  'com.samsung.android.game.gamelab',\n  'com.Twilight.tools',\n  'com.miui.securitymanager',\n  'com.google.android.documentsui',\n  'com.android.settings',\n  'com.miui.creation',\n  'com.xiaomi.scanner',\n  'com.miui.gallery',\n  'com.yozo.office',\n  'com.miui.video',\n  'com.xiaomi.wpslauncher',\n  'com.sevtinge.hyperceiler',\n  'com.dna.tools',\n  'flar2.devcheck',\n  'com.github.capntrips.kernelflasher',\n  'com.google.android.googlequicksearchbox',\n  'qyz.onedesign',\n  'com.samsung.android.app.repaircal',\n  'com.yhchat.app',\n  'com.skyhand.sinahelper',\n  'com.rong862.bear',\n  'be.mygod.vpnhotspot',\n  'com.samsung.android.bixby.agent',\n  'com.reveny.vbmetafix.service',\n  'com.google.android.gms',\n  'com.android.vending',\n  'com.android.camera',\n  'com.android.traceur',\n  'com.android.mms',\n  'com.google.android.accessibility.switchaccess',\n  'com.miui.voiceassist',\n  'com.android.fileexplorer',\n  'com.miui.miservice',\n\n  // 系统自带非系统应用\n  // 小米\n  'com.miui.huanji', // 小米换机\n  'com.miui.weather2', // 天气\n  'com.miui.calculator', // 计算器\n  'com.android.soundrecorder', // 录音机\n  'com.android.email', // 电子邮件\n  'com.miui.screenrecorder', // 屏幕录制\n  'com.android.deskclock', // 时钟 https://github.com/gkd-kit/gkd/issues/560\n  'com.miui.newmidrive', // 小米云盘\n  'cn.wps.moffice_eng.xiaomi.lite', // 小米文档查看器\n  'com.miui.mediaeditor', // 小米相册-编辑\n  'com.miui.notes', // 笔记\n  'com.miui.cleanmaster', // 垃圾清理\n  'com.miui.compass', // 指南针\n  'com.duokan.phone.remotecontroller', // 万能遥控\n  'com.mfashiongallery.emag', // 小米画报\n  'com.miui.thirdappassistant', // 三方应用异常分析\n  'com.xiaomi.wpslauncher', // WPS Office PC\n  'com.xiaomi.cajlauncher', // CAJViewer PC\n  'com.mi.car.padapp', // 小米汽车扩展屏\n  'com.android.calendar', // 日历\n  'com.mi.earphone', // 小米耳机\n\n  // 三星\n  'com.samsung.android.app.cameraassistant',\n  'com.samsung.android.app.galaxyraw',\n  'com.samsung.android.appbooster',\n  'com.android.samsung.utilityapp',\n  'com.samsung.android.goodlock',\n  'com.samsung.android.thermalguardian',\n  'com.samsung.android.calendar',\n  'com.samsung.android.app.notes',\n  'com.samsung.android.app.sreminder',\n  'com.samsung.android.app.watchmanager',\n  'com.samsung.android.app.reminder',\n  'com.adguard.android.contentblocker',\n  'com.sec.android.app.music',\n  'com.sec.android.app.voicenote',\n  'com.futuremark.dmandroid.application',\n  'com.sec.android.app.clockpackage',\n\n  // https://github.com/gkd-kit/gkd/issues/451\n  'mark.via', // via浏览器\n  'mark.via.gp', // via浏览器Google Play版\n  'com.mmbox.xbrowser', // X浏览器\n  'com.mmbox.xbrowser.pro', // X浏览器Google Play版\n  'com.mycompany.app.soulbrowser', // soul浏览器\n\n  'com.google.android.contactkeys', // Android System Key Verifier\n  'com.google.android.safetycore', // Android System SafetyCore\n];\n\n// 在应用中单独禁用某个全局规则\n// 开屏广告黑名单\nexport const openAdBlackListAppIDs = new Set([\n  ...blackListAppIDs,\n  'com.taptap', // TapTap\n  'com.sankuai.meituan', // 美团 误触 https://i.gkd.li/i/17827264\n]);\n\n// 更新提示黑名单\nexport const updateBlackListAppIDs = new Set([\n  ...blackListAppIDs,\n\n  // 全局规则默认不匹配系统应用，但有的用户喜欢无脑开启规则，容易造成误触，故在此手动禁用\n  'com.miui.packageinstaller', // 应用包管理组件\n  'com.android.packageinstaller', // 软件包安装程序\n  'com.google.android.packageinstaller', // 软件包安装程序\n  'com.oplus.appdetail', // 应用安装器\n  'com.samsung.android.packageinstaller', // 软件包安装程序\n\n  //-----------------------------------------------------\n\n  'info.muge.appshare', // AppShare\n  'com.jingdong.app.mall', // 京东\n  'com.netease.uuremote', // UU远程（不更新会强制退出）\n  'com.zhjy.study', // 智慧职教（不更新会强制退出）\n]);\n\n// 青少年模式黑名单\nexport const yongBlackListAppIDs = new Set([\n  ...blackListAppIDs,\n  'xxx.pornhub.fuck', // JavDB\n  'com.netease.cloudmusic', // 网易云音乐 全局规则在 https://i.gkd.li/i/14931708 误触\n  'com.zhihu.android', // 知乎 全局规则在 https://i.gkd.li/i/14964990 误触\n  'com.luna.music', // 汽水音乐 全局规则在 https://i.gkd.li/i/15124801 误触\n  'com.baidu.tieba', // 百度贴吧\n  'com.android.bankabc', // 中国农业银行\n  'com.autonavi.minimap', // 高德地图\n  'com.baidu.netdisk', // 百度网盘\n  'com.jingdong.app.mall', // 京东\n  'com.max.xiaoheihe', // 小黑盒\n  'com.MobileTicket', // 铁路12306\n  'com.sinovatech.unicom.ui', // 中国联通\n  'com.sdu.didi.psnger', // 滴滴出行\n  'com.sankuai.meituan', // 美团\n  'com.taobao.idlefish', // 闲鱼\n  'com.tencent.mobileqq', // QQ\n  'com.alibaba.android.rimet', // 钉钉\n  'com.taptap', // TapTap\n  'com.coolapk.market', // 酷安\n  'com.xunlei.downloadprovider', // 迅雷\n  'com.taobao.taobao', // 淘宝\n  'com.xingin.xhs', // 小红书\n  'com.ct.client', // 中国电信\n  'me.ele', // 饿了么\n  'com.tencent.qqmusic', // QQ音乐\n]);\n\n// 全局规则白名单（由于系统应用默认禁用全局规则，所以对系统应用启用白名单模式）\n// 在一些系统软件中启用所有全局规则\nexport const whiteListAppIDs: string[] = [];\n\n// 在应用中单独启用某个全局规则\n// 开屏广告白名单\nexport const openAdWhiteListAppIDs = new Set([\n  ...whiteListAppIDs,\n  'com.bbk.appstore', // vivo应用商店\n  'com.tencent.southpole.appstore', // 黑鲨应用市场\n  'com.heytap.browser', // 一加浏览器\n  'com.heytap.themestore', // oppo主题商店\n  'com.bbk.theme', // vivo主题商店\n  'com.vivo.game', // vivo游戏中心 https://i.gkd.li/i/20097148\n  'com.meizu.media.video', // 魅族视频\n  'com.hihonor.vmall', // 荣耀商城\n  'com.miui.systemAdSolution', // 智能服务\n]);\n\n// 更新提示白名单\nexport const updateWhiteListAppIDs = new Set([\n  ...whiteListAppIDs,\n  'com.hihonor.phoneservice', // 我的荣耀\n]);\n\n// 青少年模式白名单\nexport const yongWhiteListAppIDs = new Set([...whiteListAppIDs]);\n"
  },
  {
    "path": "src/globalGroups.ts",
    "content": "import { defineGkdGlobalGroups } from '@gkd-kit/define';\nimport * as appList from './globalDefaultApps';\n\nexport const OPEN_AD_ORDER = -10; // 开屏广告\nexport const UPDATE_PROMPT_ORDER = -9; // 更新提示\nexport const YOUTH_MODE_ORDER = -8; // 青少年模式\n\nexport default defineGkdGlobalGroups([\n  {\n    key: 0,\n    name: '开屏广告-全局',\n    desc: '关闭打开应用时的开屏广告',\n    order: OPEN_AD_ORDER,\n    fastQuery: true,\n    matchTime: 10000,\n    actionMaximum: 2,\n    resetMatch: 'app',\n    forcedTime: 10000,\n    actionCdKey: 0,\n    actionMaximumKey: 0,\n    priorityTime: 10000,\n    disableIfAppGroupMatch: '开屏广告',\n    rules: [\n      {\n        key: 0,\n        // 防止误触\n        excludeMatches:\n          '([text*=\"搜索\" || text=\"历史记录\" || text$=\"在搜\"][text.length>3 && text.length<7][visibleToUser=true]) || ([text=\"Submit\" || text*=\"阅读并同意\" || text=\"书签\" || text=\"NEXT\"][visibleToUser=true]) || ([text$=\"设置\" || text$=\"选好了\" || text^=\"下一步\" || text^=\"完成\" || text*=\"跳过片\"][text.length<10][visibleToUser=true]) || ([text^=\"选择\"][text*=\"偏好\" || text*=\"兴趣\" || text*=\"喜好\"][text.length<10][visibleToUser=true])',\n        anyMatches: [\n          '[text*=\"跳过\"][text.length<10][width<500 && height<300][visibleToUser=true]',\n          '@[name$=\"View\" || name$=\"LinearLayout\"][clickable=true][childCount<2][width<300 && height<200] - [text=\"互动广告\"][visibleToUser=true]',\n          '[childCount=0][visibleToUser=true][width<500 && height<300][(text.length<10 && (text*=\"跳过\" || text*=\"跳 过\" || text*=\"跳過\" || text~=\"(?is).*skip.*\") && text!*=\"视频\" && text!*=\"片头\" && text!*=\"片尾\") || (vid~=\"(?is).*skip.*\" && vid!~=\"(?is).*video.*\" && vid!~=\"(?is).*head.*\" && vid!~=\"(?is).*tail.*\" && !(text=\"帮助\") && !(text=\"取消\") && !(text*=\"退出\")) || id$=\"tt_splash_skip_btn\" || (desc.length<10 && (desc*=\"跳过\" || desc*=\"跳過\" || desc~=\"(?is).*skip.*\"))]',\n        ],\n        snapshotUrls: [\n          // 互动开屏广告\n          'https://i.gkd.li/i/21617612',\n          'https://i.gkd.li/i/23557410',\n\n          // text*=\"跳 过\"\n          'https://i.gkd.li/i/13421452',\n\n          'https://i.gkd.li/i/24097095', // width<500\n          'https://i.gkd.li/i/24766641', // height<300\n\n          // 避免被excludeMatches匹配\n          'https://i.gkd.li/i/24330969',\n          'https://i.gkd.li/i/24541384',\n          'https://i.gkd.li/i/24588777',\n        ],\n        excludeSnapshotUrls: [\n          // 避免误触\n          'https://i.gkd.li/i/15079224', // !(text*=\"退出\")\n          'https://i.gkd.li/i/17108010', // !(text=\"帮助\")\n          'https://i.gkd.li/i/18265000', // !(text=\"取消\")\n          'https://i.gkd.li/i/19952277', // text=\"Submit\"\n          'https://i.gkd.li/i/20946730', // text$=\"设置\"\n          'https://i.gkd.li/i/20949002', // vid!~=\"(?is).*video.*\"\n          'https://i.gkd.li/i/21617520', // text!*=\"视频\"\n          'https://i.gkd.li/i/22634992', // text$=\"登录\" text*=\"阅读并同意\"\n          'https://i.gkd.li/i/23051921', // [text^=\"选择\"]\n          'https://i.gkd.li/i/23742770', // [text^=\"选择\"]\n          'https://i.gkd.li/i/23743049', // [text^=\"选择\"]\n          'https://i.gkd.li/i/23052289', // text=\"选好了\"\n          'https://i.gkd.li/i/23122415', // text=\"书签\"\n          'https://i.gkd.li/i/23225609', // text=\"NEXT\"\n          'https://i.gkd.li/i/23741801', // text^=\"下一步\" text$=\"设置\"\n          'https://i.gkd.li/i/23741779', // text^=\"完成\" text$=\"设置\"\n          'https://i.gkd.li/i/25039297', // text*=\"跳过片\"、text!*=\"片头\"、text!*=\"片尾\"、vid!~=\"(?is).*head.*\"、vid!~=\"(?is).*tail.*\"\n        ],\n      },\n      {\n        key: 1, // 字节SDK\n        anyMatches: [\n          '@View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0] <n FrameLayout[childCount>2][text=null][desc=null] >(n+6) [text*=\"第三方应用\" || text*=\"扭动手机\" || text*=\"点击或上滑\" || text*=\"省钱好物\" || text*=\"扭一扭\"][visibleToUser=true]',\n          'FrameLayout > FrameLayout[childCount>2][text=null][desc=null] > @View[text=null][clickable=true][childCount=0][visibleToUser=true][width<200&&height<200] +(1,2) TextView[index=parent.childCount.minus(1)][childCount=0][visibleToUser=true]',\n        ],\n        snapshotUrls: [\n          'https://i.gkd.li/i/19685971', // +(1,2)\n          'https://i.gkd.li/i/19701216', // +(1,2)\n          'https://i.gkd.li/i/20262130',\n          'https://i.gkd.li/i/20768349',\n          'https://i.gkd.li/i/20883248', // >(n+6)\n          'https://i.gkd.li/i/23549504', // text*=\"扭一扭\"\n        ],\n      },\n    ],\n    apps: [...appList.openAdBlackListAppIDs]\n      .map((id) => ({ id, enable: false }))\n      .concat(\n        [...appList.openAdWhiteListAppIDs].map((id) => ({ id, enable: true })),\n      ),\n  },\n  {\n    key: 1,\n    name: '更新提示-全局',\n    desc: '关闭应用的更新弹窗',\n    order: UPDATE_PROMPT_ORDER,\n    fastQuery: true,\n    matchTime: 10000,\n    actionMaximum: 1,\n    resetMatch: 'app',\n    disableIfAppGroupMatch: '更新提示',\n    rules: [\n      {\n        key: 0,\n        excludeMatches:\n          '([text*=\"全部\"][text*=\"更新\" || text*=\"忽略\"][text.length<7][visibleToUser=true]) || ([text^=\"继续\" || text^=\"仍然\" || text*=\"权限\"][text.length<6][visibleToUser=true]) || ([text*=\"来源\"][visibleToUser=true])',\n        matches: [\n          '[text*=\"内测\" || text*=\"测试版\" || text*=\"新版\" || text*=\"更新\" || text*=\"升级\" || text*=\"体验\" || text*=\"內測\" || text*=\"測試版\" || text*=\"升級\" || text*=\"體驗\" || text*=\"Update\" || text*=\"Upgrade\" || text*=\"Experience\"][text!*=\"自动\" && text!*=\"自動\" && text!*=\"成功\" && text!*=\"失败\" && text!*=\"失敗\" && text!*=\"检查更新\" && text!*=\"检测更新\" && text!*=\"卸载\"][childCount=0][visibleToUser=true]',\n          '[text*=\"更新\" || text*=\"下载\" || text*=\"安装\" || text*=\"升级\" || text*=\"查看\" || text*=\"体验\" || text*=\"确定\" || text*=\"确认\" || text*=\"应用市场\"][text.length<6][childCount=0][visibleToUser=true]',\n          '([text*=\"不再提醒\" || text$=\"再说\" || text$=\"拒绝\" || text$=\"再想想\" || text*=\"再看看\" || text^=\"忽略\" || text^=\"暂不\" || text^=\"放弃\" || text^=\"取消\" || text$=\"不要\" || text$=\"再說\" || text$=\"暫不\" || text$=\"拒絕\" || text*=\"稍后\" || text^=\"关闭\" || text$=\"Later\" || text^=\"Ignore\" || text^=\"Not now\" || text^=\"Cancel\"][!(text*=\"取消\"&&text*=\"忽略\")][text.length<6][childCount=0][visibleToUser=true]) || ([vid=\"closeIv\" || vid=\"iv_close\" || vid=\"iv_cancel\" || vid=\"close\" || vid=\"Close\" || vid=\"img_close\" || vid=\"btn_close\" || vid=\"ivCancel\" || vid=\"tvCancel\" || vid=\"cancel\" || vid=\"Cancel\" || vid=\"ivClose\" || vid=\"imgClose\" || vid=\"iv_negative\" || vid=\"update_close_icon\"][childCount=0][visibleToUser=true])',\n        ],\n        snapshotUrls: 'https://i.gkd.li/i/24158267', // text*=\"应用市场\"\n        excludeSnapshotUrls: [\n          // 避免误触\n          'https://i.gkd.li/i/17710149', // text!*=\"卸载\"\n          'https://i.gkd.li/i/19605413', // [!(text*=\"取消\"&&text*=\"忽略\")][text.length<6]\n          'https://i.gkd.li/i/19918544',\n          'https://i.gkd.li/i/20033908',\n\n          // [text^=\"继续\" || text^=\"仍然\"][text.length<6][visibleToUser=true]\n          'https://i.gkd.li/i/16487278',\n          'https://i.gkd.li/i/16487282',\n          'https://i.gkd.li/i/16550275',\n          'https://i.gkd.li/i/20053957',\n        ],\n      },\n    ],\n    apps: [...appList.updateBlackListAppIDs]\n      .map((id) => ({ id, enable: false }))\n      .concat(\n        [...appList.updateWhiteListAppIDs].map((id) => ({ id, enable: true })),\n      ),\n  },\n  {\n    key: 2,\n    name: '青少年模式-全局',\n    desc: '关闭应用的青少年模式弹窗',\n    order: YOUTH_MODE_ORDER,\n    fastQuery: true,\n    matchTime: 10000,\n    actionMaximum: 1,\n    resetMatch: 'app',\n    disableIfAppGroupMatch: '青少年模式',\n    rules: [\n      {\n        key: 0,\n        matches: [\n          '[text*=\"青少年\" || text*=\"未成年\" || text*=\"儿童\"][text*=\"模式\" || text*=\"守护\"][text.length<15][childCount=0][visibleToUser=true]',\n          '[text*=\"知道了\" || text*=\"我已知晓\" || text*=\"已满\" || text*=\"不再提醒\"][text.length<8][childCount=0][visibleToUser=true]',\n        ],\n      },\n    ],\n    apps: [...appList.yongBlackListAppIDs]\n      .map((id) => ({ id, enable: false }))\n      .concat(\n        [...appList.yongWhiteListAppIDs].map((id) => ({ id, enable: true })),\n      ),\n  },\n]);\n"
  },
  {
    "path": "src/subscription.ts",
    "content": "import { defineGkdSubscription } from '@gkd-kit/define';\nimport { batchImportApps } from '@gkd-kit/tools';\nimport categories from './categories';\nimport globalGroups, { OPEN_AD_ORDER } from './globalGroups';\nimport { RawApp, RawAppGroup } from '@gkd-kit/api';\n\nconst apps = await batchImportApps(`${import.meta.dirname}/apps`);\nconst rawApps: RawApp[] = [];\napps.forEach((appConfig) => {\n  appConfig.groups?.forEach((g: RawAppGroup) => {\n    if (g.name.startsWith('开屏广告')) {\n      g.order = OPEN_AD_ORDER;\n    }\n  });\n  rawApps.push(appConfig);\n});\n\nexport default defineGkdSubscription({\n  id: 666,\n  name: 'AIsouler的GKD订阅-已停止维护',\n  version: 0,\n  author: 'AIsouler',\n  checkUpdateUrl: './AIsouler_gkd.version.json5',\n  supportUri: 'https://github.com/AIsouler/GKD_subscription/issues/new/choose',\n  categories,\n  globalGroups,\n  apps: rawApps,\n});\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"outDir\": \"dist\",\n    \"target\": \"ESNext\",\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"Bundler\",\n    \"strict\": true,\n    \"skipLibCheck\": true,\n    \"declaration\": false,\n    \"sourceMap\": false,\n    \"noUnusedLocals\": true,\n    \"esModuleInterop\": true,\n    \"isolatedModules\": true\n  },\n  \"include\": [\"src\", \"scripts\"]\n}\n"
  }
]