├── .github └── workflows │ ├── AutoSync.yml │ ├── jbot_diy.yml │ ├── jianminLee-docker.yml │ ├── sync-Ariszy-scripts.yml │ ├── sync-EverydayWechat.yml │ ├── sync-JDHelloWorld-scripts.yml │ ├── sync-JDSHARE-scripts.yml │ ├── sync-KingRan-JD-Scripts.yml │ ├── sync-Koishi.yml │ ├── sync-LingFeng0918-jd_scripts.yml │ ├── sync-Magic.yml │ ├── sync-Manage_WXRobot_Web.yml │ ├── sync-Pwolf-Lin-checkin.yml │ ├── sync-SuMaiKaDe_bot-scripts.yml │ ├── sync-ZFeng3242-JD-haoyangmao.yml │ ├── sync-akkedaya.yml │ ├── sync-ccwav.yml │ ├── sync-elecV2P.yml │ ├── sync-faker2-scripts.yml │ ├── sync-freefq.yml │ ├── sync-jd-Shell-scripts.yml │ ├── sync-jdlite-server.yml │ ├── sync-jdv5-scripts.yml │ ├── sync-jinboyigu-lazy_script.yml │ ├── sync-koolproxy-scripts.yml │ ├── sync-ntchat_demo_code.yml │ ├── sync-pea-cake-tbk.yml │ ├── sync-refusea-rebate.yml │ ├── sync-smiek2221-scripts.yml │ ├── sync-update.yml │ ├── sync-webdav-aliyundriver.yml │ ├── sync-wechat-assistant-pro.yml │ ├── sync-wechat-robot.yml │ ├── sync-wx-robot.yml │ ├── sync-wzk0-tg-wc.yml │ ├── sync-x-ui-yg.yml │ ├── sync-xiaoyulr-yyd-checkin.yml │ ├── sync-yangtingxiao-scripts.yml │ └── sync-youxiang-Itchat.yml ├── README.md └── qixin.json /.github/workflows/AutoSync.yml: -------------------------------------------------------------------------------- 1 | name: AutoSync 2 | on: 3 | schedule: 4 | - cron: '0 */2 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: AutoSync 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: AutoSync 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/DovFork/AutoSync.git" 26 | source_branch: "main" 27 | destination_branch: "AutoSync" 28 | github_token: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11,需要repo和workflow权限 29 | -------------------------------------------------------------------------------- /.github/workflows/jbot_diy.yml: -------------------------------------------------------------------------------- 1 | name: jbot_diy 2 | on: 3 | schedule: 4 | - cron: '0 */2 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-repo 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync repo 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/chiupam/JD_Diy.git" 26 | source_branch: "main" 27 | destination_branch: "jbot_diy" 28 | github_token: ${{ secrets.PAT }} 29 | 30 | -------------------------------------------------------------------------------- /.github/workflows/jianminLee-docker.yml: -------------------------------------------------------------------------------- 1 | name: jianminLee-docker 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: '0 */2 * * *' 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-repo 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync repo 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/jianminLee/docker.git" 26 | source_branch: "main" 27 | destination_branch: "jianminLee/docker-" 28 | github_token: ${{ secrets.PAT }} 29 | -------------------------------------------------------------------------------- /.github/workflows/sync-Ariszy-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-Ariszy-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-Ariszy-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-Ariszy-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/Ariszy/Private-Script.git" 29 | source_branch: "master" 30 | destination_branch: "Ariszy_Private-Script" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-EverydayWechat.yml: -------------------------------------------------------------------------------- 1 | name: sync-EverydayWechat 2 | on: 3 | schedule: 4 | - cron: '* * */5 * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-EverydayWechat 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-EverydayWechat 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/sfyc23/EverydayWechat.git" 29 | source_branch: "master" 30 | destination_branch: "EverydayWechat" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-JDHelloWorld-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-JDHelloWorld-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-JDHelloWorld-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-JDHelloWorld-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/JDHelloWorld/jd_scripts.git" 29 | source_branch: "main" 30 | destination_branch: "JDHelloWorld" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-JDSHARE-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-JDSHARE-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-JDSHARE-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-JDSHARE-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/kuilei0926/JDSHARE.git" 29 | source_branch: "main" 30 | destination_branch: "JDSHARE" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-KingRan-JD-Scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-KingRan-JD-Scripts 2 | on: 3 | schedule: 4 | - cron: '1 */3 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-KingRan-JD-Scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-KingRan-JD-Scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/KingRan/KR.git" 29 | source_branch: "main" 30 | destination_branch: "KingRan-JD-Scripts" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-Koishi.yml: -------------------------------------------------------------------------------- 1 | name: sync-Koishi 2 | on: 3 | schedule: 4 | - cron: '0 */2 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-Koishi 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync-Koishi 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/koishijs/koishi" 26 | source_branch: "master" 27 | destination_branch: "Koishi" 28 | github_token: ${{ secrets.PAT }} 29 | -------------------------------------------------------------------------------- /.github/workflows/sync-LingFeng0918-jd_scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-LingFeng0918-jd_scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-LingFeng0918-jd_scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-LingFeng0918-jd_scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/LingFeng0918/LF_JD.git" 29 | source_branch: "main" 30 | destination_branch: "LingFeng0918-jd_scripts" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-Magic.yml: -------------------------------------------------------------------------------- 1 | name: sync-Magic-scripts 2 | on: 3 | schedule: 4 | - cron: '*/20 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-Magic-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-Magic-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/walle1798/WALL.E.git" 29 | source_branch: "master" 30 | destination_branch: "Magic" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-Manage_WXRobot_Web.yml: -------------------------------------------------------------------------------- 1 | name: Manage_WXRobot_Web 2 | on: 3 | schedule: 4 | - cron: '0 */2 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-Manage_WXRobot_Web 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync Manage_WXRobot_Web 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/xiaorui16888/Manage_WXRobot_Web.git" 26 | source_branch: "main" 27 | destination_branch: "Manage_WXRobot_Web" 28 | github_token: ${{ secrets.PAT }} 29 | -------------------------------------------------------------------------------- /.github/workflows/sync-Pwolf-Lin-checkin.yml: -------------------------------------------------------------------------------- 1 | name: sync-Pwolf-Lin-checkin 2 | on: 3 | schedule: 4 | - cron: '1 */3 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-Pwolf-Lin-checkin 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-Pwolf-Lin-checkin 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/Pwolf-Lin/checkin.git" 29 | source_branch: "main" 30 | destination_branch: "Pwolf-Lin-checkin" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-SuMaiKaDe_bot-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-SuMaiKaDe_bot-scripts 2 | on: 3 | schedule: 4 | - cron: '5 4 */1 * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-SuMaiKaDe_bot-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-SuMaiKaDe_bot-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/SuMaiKaDe/bot.git" 29 | source_branch: "main" 30 | destination_branch: "SuMaiKaDe_bot" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-ZFeng3242-JD-haoyangmao.yml: -------------------------------------------------------------------------------- 1 | name: sync-ZFeng3242-JD-haoyangmao 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-ZFeng3242-JD-haoyangmao 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-ZFeng3242-JD-haoyangmao 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://gitee.com/ZFeng3242/JD-haoyangmao.git" 29 | source_branch: "main" 30 | destination_branch: "ZFeng3242-JD-haoyangmao" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-akkedaya.yml: -------------------------------------------------------------------------------- 1 | name: sync-akkedaya 2 | on: 3 | schedule: 4 | - cron: '*/10 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-akkedaya 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-akkedaya 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/qitoqito/kedaya.git" 29 | source_branch: "main" 30 | destination_branch: "akkedaya" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-ccwav.yml: -------------------------------------------------------------------------------- 1 | name: sync-ccwav 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-ccwav 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-ccwav 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/ccwav/QLScript2.git" 29 | source_branch: "main" 30 | destination_branch: "ccwav" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-elecV2P.yml: -------------------------------------------------------------------------------- 1 | name: sync-elecV2P 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-elecV2P 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-elecV2P 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/elecV2/elecV2P.git" 29 | source_branch: "master" 30 | destination_branch: "elecV2P" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-faker2-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-faker2-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-faker2-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-faker2-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/shufflewzc/faker2.git" 29 | source_branch: "main" 30 | destination_branch: "faker2" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-freefq.yml: -------------------------------------------------------------------------------- 1 | name: sync-freefq 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: '5 */1 * * *' 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-freefq 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync-freefq 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/freefq/free.git" 26 | source_branch: "master" 27 | destination_branch: "freefq" 28 | github_token: ${{ secrets.PAT }} 29 | -------------------------------------------------------------------------------- /.github/workflows/sync-jd-Shell-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-jd-Shell-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-jd-Shell-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-jd-Shell-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/1xtk/jd-Shell.git" 29 | source_branch: "main" 30 | destination_branch: "jd-Shell" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-jdlite-server.yml: -------------------------------------------------------------------------------- 1 | name: sync-jdlite-server 2 | on: 3 | schedule: 4 | - cron: '0 */2 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-jdlite-server 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync-jdlite-server 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://github.com/abinnz/jdlite-server.git" 26 | source_branch: "master" 27 | destination_branch: "jdlite-server" 28 | github_token: ${{ secrets.PAT }} 29 | -------------------------------------------------------------------------------- /.github/workflows/sync-jdv5-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-jdv5-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-jdv5-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-jdv5-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/drew0531/jd_pro.git" 29 | source_branch: "master" 30 | destination_branch: "jdv5" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-jinboyigu-lazy_script.yml: -------------------------------------------------------------------------------- 1 | name: sync-jinboyigu-lazy_scrip 2 | on: 3 | schedule: 4 | - cron: '* * */3 * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-jinboyigu-lazy_script 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-jinboyigu-lazy_script 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/jinboyigu/lazy_script.git" 29 | source_branch: "master" 30 | destination_branch: "jinboyigu-lazy_script" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-koolproxy-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-koolproxy-scripts 2 | on: 3 | schedule: 4 | - cron: '1 */3 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-koolproxy-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-koolproxy-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/project-lede/koolproxy.git" 29 | source_branch: "main" 30 | destination_branch: "koolproxy" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-ntchat_demo_code.yml: -------------------------------------------------------------------------------- 1 | name: sync-ntchat_demo_code 2 | on: 3 | schedule: 4 | - cron: '30 */1 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-ntchat_demo_code 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-ntchat_demo_code 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/sailor0913/ntchat_demo_code.git" 29 | source_branch: "main" 30 | destination_branch: "ntchat_demo_code" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-pea-cake-tbk.yml: -------------------------------------------------------------------------------- 1 | name: sync-pea-cake-tbk 2 | 3 | on: 4 | schedule: 5 | - cron: '30 12 */1 * *' 6 | workflow_dispatch: 7 | watch: 8 | types: started 9 | push: 10 | branches: [ master ] 11 | repository_dispatch: 12 | types: sync-pea-cake-tbk 13 | jobs: 14 | repo-sync: 15 | env: 16 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 17 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 18 | runs-on: ubuntu-latest 19 | if: github.event.repository.owner.id == github.event.sender.id 20 | steps: 21 | - uses: actions/checkout@v2 22 | with: 23 | persist-credentials: false 24 | 25 | - name: sync-pea-cake-tbk 26 | uses: repo-sync/github-sync@v2 27 | if: env.PAT 28 | with: 29 | source_repo: "https://github.com/pea-cake/tbk.git" 30 | source_branch: "main" 31 | destination_branch: "pea-cake-tbk" 32 | github_token: ${{ secrets.PAT }} 33 | -------------------------------------------------------------------------------- /.github/workflows/sync-refusea-rebate.yml: -------------------------------------------------------------------------------- 1 | name: sync-refusea-rebate 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-refusea-rebate 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-refusea-rebate 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://gitee.com/refusea/rebate.git" 29 | source_branch: "master" 30 | destination_branch: "refusea-rebate" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-smiek2221-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-smiek2221-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-smiek2221-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-smiek2221-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/smiek2221/scripts.git" 29 | source_branch: "master" 30 | destination_branch: "smiek2221" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-update.yml: -------------------------------------------------------------------------------- 1 | name: sync-update 2 | on: 3 | schedule: 4 | - cron: '0/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | repository_dispatch: 9 | types: sync-update 10 | jobs: 11 | repo-sync: 12 | env: 13 | PAT: ${{ secrets.PAT }} 14 | runs-on: ubuntu-latest 15 | if: github.event.repository.owner.id == github.event.sender.id 16 | steps: 17 | - uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | 21 | - name: sync-update 22 | uses: repo-sync/github-sync@v2 23 | if: env.PAT 24 | with: 25 | source_repo: "https://gitee.com/msewb/jdrain.git" 26 | source_branch: "master" 27 | destination_branch: "main" 28 | github_token: ${{ secrets.PAT }} 29 | -------------------------------------------------------------------------------- /.github/workflows/sync-webdav-aliyundriver.yml: -------------------------------------------------------------------------------- 1 | name: sync-webdav-aliyundriver 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-webdav-aliyundriver 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-webdav-aliyundriver 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/zxbu/webdav-aliyundriver.git" 29 | source_branch: "main" 30 | destination_branch: "webdav-aliyundriver" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-wechat-assistant-pro.yml: -------------------------------------------------------------------------------- 1 | name: sync-wechat-assistant-pro-scripts 2 | on: 3 | schedule: 4 | - cron: '*/30 * * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-wechat-assistant-pro-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-wechat-assistant-pro-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/leochen-g/wechat-assistant-pro.git" 29 | source_branch: "master" 30 | destination_branch: "wechat-assistant-pro" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-wechat-robot.yml: -------------------------------------------------------------------------------- 1 | name: sync-wechat-robot 2 | on: 3 | schedule: 4 | - cron: '* * */3 * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-wechat-robot 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-wechat-robot 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/isnl/wechat-robot.git" 29 | source_branch: "master" 30 | destination_branch: "wechat-robot" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-wx-robot.yml: -------------------------------------------------------------------------------- 1 | name: sync-wx-robot 2 | on: 3 | schedule: 4 | - cron: '1 */5 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-wx-robot 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-wx-robot 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/kollyQAQ/wx-robot.git" 29 | source_branch: "master" 30 | destination_branch: "wx-robot" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-wzk0-tg-wc.yml: -------------------------------------------------------------------------------- 1 | name: sync-wzk0-tg-wc 2 | 3 | on: 4 | schedule: 5 | - cron: '30 12 */1 * *' 6 | workflow_dispatch: 7 | watch: 8 | types: started 9 | push: 10 | branches: [ master ] 11 | repository_dispatch: 12 | types: sync-wzk0-tg-wc 13 | jobs: 14 | repo-sync: 15 | env: 16 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 17 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 18 | runs-on: ubuntu-latest 19 | if: github.event.repository.owner.id == github.event.sender.id 20 | steps: 21 | - uses: actions/checkout@v2 22 | with: 23 | persist-credentials: false 24 | 25 | - name: sync-wzk0-tg-wc 26 | uses: repo-sync/github-sync@v2 27 | if: env.PAT 28 | with: 29 | source_repo: "https://github.com/wzk0/tg-wc.git" 30 | source_branch: "main" 31 | destination_branch: "wzk0-tg-wc" 32 | github_token: ${{ secrets.PAT }} 33 | -------------------------------------------------------------------------------- /.github/workflows/sync-x-ui-yg.yml: -------------------------------------------------------------------------------- 1 | name: sync-x-ui-yg 2 | 3 | on: 4 | schedule: 5 | - cron: '50 12 */1 * *' 6 | workflow_dispatch: 7 | watch: 8 | types: started 9 | push: 10 | branches: [ master ] 11 | repository_dispatch: 12 | types: sync-x-ui-yg 13 | jobs: 14 | repo-sync: 15 | env: 16 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 17 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 18 | runs-on: ubuntu-latest 19 | if: github.event.repository.owner.id == github.event.sender.id 20 | steps: 21 | - uses: actions/checkout@v2 22 | with: 23 | persist-credentials: false 24 | 25 | - name: sync-x-ui-yg 26 | uses: repo-sync/github-sync@v2 27 | if: env.PAT 28 | with: 29 | source_repo: "https://github.com/winstonxg/x-ui-yg.git" 30 | source_branch: "main" 31 | destination_branch: "x-ui-yg" 32 | github_token: ${{ secrets.PAT }} 33 | -------------------------------------------------------------------------------- /.github/workflows/sync-xiaoyulr-yyd-checkin.yml: -------------------------------------------------------------------------------- 1 | name: sync-xiaoyulr-yyd-checkin 2 | on: 3 | schedule: 4 | - cron: '1 */3 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-xiaoyulr-yyd-checkin 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-xiaoyulr-yyd-checkin 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/xiaoyulr/yyd.git" 29 | source_branch: "main" 30 | destination_branch: "xiaoyulr-yyd-checkin" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-yangtingxiao-scripts.yml: -------------------------------------------------------------------------------- 1 | name: sync-yangtingxiao-scripts 2 | on: 3 | schedule: 4 | - cron: '1 */3 * * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-yangtingxiao-scripts 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-yangtingxiao-scripts 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/yangtingxiao/QuantumultX.git" 29 | source_branch: "master" 30 | destination_branch: "yangtingxiao" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /.github/workflows/sync-youxiang-Itchat.yml: -------------------------------------------------------------------------------- 1 | name: sync-youxiang-Itchat 2 | on: 3 | schedule: 4 | - cron: '* * */3 * *' 5 | workflow_dispatch: 6 | watch: 7 | types: started 8 | push: 9 | branches: [ master ] 10 | repository_dispatch: 11 | types: sync-youxiang-Itchat 12 | jobs: 13 | repo-sync: 14 | env: 15 | PAT: ${{ secrets.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11 16 | dst_key: ${{ secrets.GITEE_PRIVATE_KEY }} # 我自己同步到gitee使用,其他人可忽略 17 | runs-on: ubuntu-latest 18 | if: github.event.repository.owner.id == github.event.sender.id 19 | steps: 20 | - uses: actions/checkout@v2 21 | with: 22 | persist-credentials: false 23 | 24 | - name: sync-youxiang-Itchat 25 | uses: repo-sync/github-sync@v2 26 | if: env.PAT 27 | with: 28 | source_repo: "https://github.com/why2lyj/youxiang-Itchat.git" 29 | source_branch: "master" 30 | destination_branch: "youxiang-Itchat" 31 | github_token: ${{ secrets.PAT }} 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | helpself,see you later! 2 | -------------------------------------------------------------------------------- /qixin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"奇心脚本合集", 3 | "description":"挂v更新https://qxzy.top/rules/QuantumultX/qixin.json", 4 | "UpdateTime" : "2021-05-27", 5 | "Author" : "Stanger", 6 | "bbs" : "https://bbs.qxzy.top", 7 | "Description" : "奇心科技 - 创造不一样的科技平台!", 8 | "Image" : "https://qxzy.top/images/logo.png", 9 | "task":[ 10 | "0 9 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/box/switcher/box.switcher.js, tag=切换会话, img-url=https://qxzy.top/rules/QuantumultX/img/box.png, enabled=true", 11 | "0 0 0 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_xtg.js, tag=家电星推官, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 12 | "15 9 * 5,6 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_jxhb.js, tag=京东京喜阶梯红包, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 13 | "15 9,20 * 5,6 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_newInteraction.js, tag=618大势新品赏, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 14 | "15 9,20 * 5,6 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_superbox.js, tag=京东超级盒子, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 15 | "0,1,2 0 * * * https://raw.githubusercontent.com/ddgksf2013/Cuttlefish/master/Jd/jd_cash_exchange.js, tag=京东领现金兑换10元红包, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 16 | "15 7,15 * * * https://raw.githubusercontent.com/ddgksf2013/Cuttlefish/master/Script/debao.js, tag=得宝小程序, img-url=https://qxzy.top/rules/QuantumultX/img/debao.png, enabled=true", 17 | "13 0-23/2 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_zoo.js, tag=动物联萌lxk, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 18 | "0 */1 * * * https://raw.githubusercontent.com/CenBoMin/GithubSync/main/ELONGCASH/elongcash.js, tag=同程小猪, img-url=https://raw.githubusercontent.com/CenBoMin/GithubSync/main/ELONGCASH/140.png, enabled=false", 19 | "0 0 0/4 * * * https://raw.githubusercontent.com/xl2101200/-/main/zb.js, tag=左边, img-url=https://qxzy.top/rules/QuantumultX/img/zuobian.png, enabled=true", 20 | "15 9,20 * 5,6 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_superbox.js, tag=京东超级盒子, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 21 | "5 * * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/jd/jd_zoo.js, tag=动物联萌, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 22 | "0 9 * * * https://raw.githubusercontent.com/zwf234/rules/master/js/jd_unbind.js, tag=注销京东会员卡, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 23 | "2 0-18/6 * 5 * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_carnivalcity.js, tag=京东手机狂欢城, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 24 | "0 0-23/1 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_city.js, tag=城城领现金, img-url=https://qxzy.top/rules/QuantumultX/img/jd618.png, enabled=true", 25 | "0 10 * * * https://raw.githubusercontent.com/xl2101200/-/main/xsg.js, tag=薪时光, img-url=https://qxzy.top/rules/QuantumultX/img/xsg.png, enabled=true", 26 | "1 0,11,21 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_jump.js, tag=跳跳乐瓜分京豆, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 27 | "20 9 21-27 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_mi.js, tag=京东Redmi合成小金刚, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 28 | "0 */8 * * * https://raw.githubusercontent.com/CenBoMin/GithubSync/main/HELPBANG/helpbang.js, tag=互利帮(需TF资格), img-url=https://raw.githubusercontent.com/CenBoMin/GithubSync/main/HELPBANG/140.png, enabled=true", 29 | "20 9 20-31 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_martin.js, tag=人头马x博朗, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 30 | "0 8,12,18 * * * https://raw.githubusercontent.com/passerby-b/didi_fruit/main/dd_fruit.js, tag=滴滴免费水果, img-url=https://qxzy.top/rules/QuantumultX/img/didi.png, enabled=true", 31 | "15 9 * 5,6 * https://raw.githubusercontent.com/monk-coder/dust/dust/member/adolf_flp.js, tag=飞利浦电视成长记, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 32 | "0 0 * * * https://raw.githubusercontent.com/dompling/Script/master/jd/jd_jr_sign.js, tag=京东金融领豆(不共用京东ck另抓), img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png, enabled=true", 33 | "25 9 * 5,6 * https://raw.githubusercontent.com/monk-coder/dust/dust/member/adolf_oneplus.js, tag=赢一加新品手机, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 34 | "0 8 21-31 5-12 * https://raw.githubusercontent.com/qqsdff/script/main/jd/jd_jbczy.js, tag=京东金榜创造营, img-url=https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/image/jd.png, enabled=true", 35 | "0 30 21 * * 2,4,7 https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/ssq/ssq.js, tag=双色球, img-url=https://raw.githubusercontent.com/58xinian/icon/master/Two_color_ball.png, enabled=true", 36 | "0 */60 6-23 * * https://raw.githubusercontent.com/panghu999/ningmeng/main/kkj.js, tag=看看集自动阅读, img-url=https://qxzy.top/rules/QuantumultX/img/kkj.png, enabled=true", 37 | "15 8,13,18 17-31 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_pk.js, tag=京享值PK, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 38 | "0 10 * * * https://raw.githubusercontent.com/dompling/Script/master/gist/backup.js, tag=Gist备份, img-url=https://qxzy.top/rules/QuantumultX/img/box.png, enabled=true", 39 | "5 10 * * * https://raw.githubusercontent.com/dompling/Script/master/gist/restore.js, tag=Gist恢复, img-url=https://qxzy.top/rules/QuantumultX/img/box.png, enabled=true", 40 | "0 30 7,10 * * * https://raw.githubusercontent.com/panghu999/ningmeng/main/gd.js, tag=咕咚步数红包, img-url=https://qxzy.top/rules/QuantumultX/img/gdbs.png, enabled=true", 41 | "30 * * * * https://raw.githubusercontent.com/nianyuguai/longzhuzhu/main/qx/jd_half_redrain.js, tag=半点京豆雨, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 42 | "0 * * * * https://raw.githubusercontent.com/nianyuguai/longzhuzhu/main/qx/jd_super_redrain.js, tag=整点京豆雨, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 43 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/yyzb.js, tag=云云赚呗, img-url=https://raw.githubusercontent.com/sngxpro/QuanX/master/icons/tom.png, enabled=true", 44 | "0-59 9-14 * * * https://raw.githubusercontent.com/age174/-/main/wdwhd.js, tag=我的网红店, img-url=https://ae01.alicdn.com/kf/Uc5a0618d6a404079af9216e1012e35efs.jpg, enabled=true", 45 | "10 9 * * * https://raw.githubusercontent.com/age174/-/main/dwyjy.js, tag=动物研究院, img-url=https://ae01.alicdn.com/kf/Uc740cff52d1c48c49223a8a7378a54d1q.jpg, enabled=true", 46 | "0 9 * * * https://raw.githubusercontent.com/Ariszy/Private-Script/master/Scripts/xpread.js, tag=笑谱, img-url=https://qxzy.top/rules/QuantumultX/img/xp.png, enabled=true", 47 | "8 8 8 * * * https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/xm.js, tag=小芒, img-url=https://qxzy.top/rules/QuantumultX/img/xm.png, enabled=true", 48 | "11 11 * * * * https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/shzx.js, tag=搜狐资讯, img-url=https://qxzy.top/rules/QuantumultX/img/shzx.png, enabled=true", 49 | "15 8 9-13 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/backup/adolf_ETIP.js, tag=⚠️探秘无限星空, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 50 | "0 0 0/3 * * * https://raw.githubusercontent.com/xl2101200/-/main/ipxz.js, tag=ip小站, img-url=https://qxzy.top/rules/QuantumultX/img/ipxz.png, enabled=true", 51 | "10 9 * * * https://raw.githubusercontent.com/age174/-/main/csxdr.js, tag=超市小达人, img-url=https://ae01.alicdn.com/kf/Udd9cb36174cf41a7a69e28a643a360a9a.jpg, enabled=true", 52 | "15 8 7-31 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/backup/adolf_haier.js, tag=海尔_欢乐大逃亡, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 53 | "50 12 * * * https://raw.githubusercontent.com/age174/-/main/fksl.js, tag=疯狂森林, img-url=https://ae01.alicdn.com/kf/U1d2f24494aa1460286360f8bb0e10210Y.jpg, enabled=true", 54 | "10 9 * * * https://raw.githubusercontent.com/age174/-/main/scdcg.js, tag=食材大冲关, img-url= https://ae01.alicdn.com/kf/U9f2a16b203ed40318d22f9fd5fdce9a9S.jpg, enabled=true", 55 | "*/10 * * * * https://raw.githubusercontent.com/panghu999/ningmeng/main/qmlzc.js, tag=全民来找茬, img-url=https://qxzy.top/rules/QuantumultX/img/qmlzc.png, enabled=true", 56 | "*/10 * * * * https://raw.githubusercontent.com/panghu999/ningmeng/main/qmdff.js, tag=全民大丰收, img-url=https://qxzy.top/rules/QuantumultX/img/qmdff.png, enabled=true", 57 | "0 0 1 1 * https://raw.githubusercontent.com/xl2101200/-/main/zsb.js, tag=再生贝, img-url=https://qxzy.top/rules/QuantumultX/img/zsb.png, enabled=true", 58 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/ttcj.js,tag=天天抽奖365, img-url=https://qxzy.top/rules/QuantumultX/img/ttcj.png, enabled=true", 59 | "0 1 0/5 * * * https://raw.githubusercontent.com/xl2101200/-/main/fcs.js, tag=发财树, img-url=https://qxzy.top/rules/QuantumultX/img/fcs.png, enabled=true", 60 | "25 8,12 6-11 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/normal/adolf_oppo.js, tag=刺客567之寻宝, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 61 | "0 0 1 1 * https://raw.githubusercontent.com/xl2101200/-/main/kkj.js, tag=看看集, img-url=https://qxzy.top/rules/QuantumultX/img/kkj.png, enabled=true", 62 | "13 1,22,23 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_daily_lottery.js, tag=每日抽奖, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 63 | "0 6 * * * https://raw.githubusercontent.com/xl2101200/-/main/xffd.js, tag=幸福饭店, img-url=https://qxzy.top/rules/QuantumultX/img/xffd.png, enabled=true", 64 | "*/15 * * * * https://raw.githubusercontent.com/Ariszy/Private-Script/master/Scripts/ryhy.js, tag=如意花园, img-url=https://qxzy.top/rules/QuantumultX/img/ryhy.png, enabled=true", 65 | "25 3 * * 2 https://raw.githubusercontent.com/monk-coder/dust/dust/i-chenzhe/z_shop_captain.js, tag=超级无线组队分奖品, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 66 | "10 9 * * * https://raw.githubusercontent.com/age174/-/main/tyg.js, tag=淘优购, img-url=https://ae01.alicdn.com/kf/Ud9336913fc5140ae886b06fccf9b90a3y.jpg, enabled=true", 67 | "40 8,20,9-19/2 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/DiDi/DiDi_drink.js, tag=滴滴喝水赚钱zZPiglet, img-url=https://qxzy.top/rules/QuantumultX/img/didi.png, enabled=true", 68 | "0 1,20 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/DiDi/DiDi_new.js, tag=滴滴出行zZPiglet, img-url=https://qxzy.top/rules/QuantumultX/img/didi.png, enabled=true", 69 | "30 9 * * * https://raw.githubusercontent.com/age174/-/main/dgh.js, tag=大公会, img-url=https://ae01.alicdn.com/kf/U48ac7674ccc7422dac2bb266d8c9a17b2.jpg, enabled=true", 70 | "*/60 * * * * http://nm66.top/dydhb.js, tag=抖音抖一抖红包, img-url=https://qxzy.top/rules/QuantumultX/img/dyjsb.png, enabled=true", 71 | "*/1 * * * * http://nm66.top/dyd.js, tag=抖音抖一抖, img-url=https://qxzy.top/rules/QuantumultX/img/dyjsb.png, enabled=true", 72 | "*/10 * * * * http://nm66.top/kxdfs.js, tag=开心大丰收, img-url=https://qxzy.top/rules/QuantumultX/img/kxdfs.png, enabled=true", 73 | "10 0-23 * * * https://raw.githubusercontent.com/age174/-/main/qlp.js, tag=考状元娶老婆, img-url=https://ae01.alicdn.com/kf/Uc2775b8f4abf41788ba89df0317e58050.jpg, enabled=true", 74 | "40 * * * * * https://raw.githubusercontent.com/xl2101200/-/main/wgc.js, tag=WGC, img-url=https://qxzy.top/rules/QuantumultX/img/wgc.png, enabled=true", 75 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/yt.js, tag=炎兔, img-url=https://qxzy.top/rules/QuantumultX/img/yt.png, enabled=true", 76 | "10 9 * * * https://raw.githubusercontent.com/age174/-/main/tyg.js, tag=淘优购, img-url=https://ae01.alicdn.com/kf/Ud9336913fc5140ae886b06fccf9b90a3y.jpg, enabled=true", 77 | "5 * * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/gxrcw.js, tag=高校人才网招聘监控, img-url=https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/gxrcw.png, enabled=true", 78 | "5 * * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/sydwzp.js, tag=事业单位招聘监控, img-url=https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/sydw.png, enabled=true", 79 | "0 30 21 * * 2,4,7 https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/ssq/ssq.js, tag=双色球, img-url=https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/ssq.png, enabled=true", 80 | "0 0 0/4 * * ? https://raw.githubusercontent.com/xl2101200/-/main/ggdh.js, tag=狗狗大亨, img-url=https://qxzy.top/rules/QuantumultX/img/ggdh.png, enabled=true", 81 | "*/5 * * * * https://raw.githubusercontent.com/panghu999/ningmeng/main/fhxz.js, tag=富豪小镇, img-url=https://qxzy.top/rules/QuantumultX/img/fhxz.png, enabled=true", 82 | "10 0 * * * https://raw.githubusercontent.com/age174/-/main/skjh.js, tag=食客江湖, img-url=https://ae01.alicdn.com/kf/Ue353b658a4424a1e873d0b66620d06a41.jpg, enabled=true", 83 | "10 0,8,11,17 * * * https://raw.githubusercontent.com/passerby-b/JDDJ/main/jddj_fruit.js, tag=京东到家果园任务, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 84 | "5 */2 * * * https://raw.githubusercontent.com/passerby-b/JDDJ/main/jddj_fruit_collectWater.js, tag=到家果园收水滴, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 85 | "0 0 * * * https://raw.githubusercontent.com/passerby-b/JDDJ/main/jddj_bean.js, tag=鲜豆任务, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 86 | "0 0 * * * https://raw.githubusercontent.com/passerby-b/JDDJ/main/jddj_plantBeans.js, tag=鲜豆庄园, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 87 | "*/5 * * * * https://raw.githubusercontent.com/passerby-b/JDDJ/main/jddj_getPoints.js, tag=鲜豆庄园领水滴, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 88 | "*/30 * * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/kxhy.js, tag=开心花园, img-url=https://raw.githubusercontent.com/Ariszy/Private-Script/master/img/kxhy.png, enabled=true", 89 | "10,20,30 0-23 * * * https://raw.githubusercontent.com/age174/-/main/xfyjc.js, tag=幸福养鸡场, img-url=https://ae01.alicdn.com/kf/Ue110888eddad48a8a78d99284e599b134.jpg, enabled=true", 90 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/dogeda.js, tag=DOGEDA, img-url=https://qxzy.top/rules/QuantumultX/img/dogeda.png, enabled=true", 91 | "5,35 9-22 * * * https://raw.githubusercontent.com/age174/-/main/66yd.js, tag=66阅读修复版, img-url=https://ae01.alicdn.com/kf/Uaade4566dd3744299956aa883f225386u.jpg, enabled=true", 92 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/hhkk.js, tag=火狐看看, img-url=https://qxzy.top/rules/QuantumultX/img/hhkk.png, enabled=true", 93 | "10 0 * * * https://raw.githubusercontent.com/age174/-/main/bsly.js, tag=百事乐元, img-url=https://ae01.alicdn.com/kf/U2fec2be787b74fb3928d83773822eef56.jpg, enabled=true", 94 | "15 08 5-30 4 * https://share.r2ray.com/dust/member/monk_vinda.js.js, tag=“韧”性探索 空降好礼, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 95 | "10 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_jin_tie.js, tag=领金贴, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 96 | "0 9 * * * https://cdn.jsdelivr.net/gh/ziye888/JavaScript@main/Task/tls.js, tag=特仑苏小程序, img-url=https://qxzy.top/rules/QuantumultX/img/tls.png, enabled=true", 97 | "30 10 * * * https://raw.githubusercontent.com/ZCY01/daily_scripts/main/jd/jd_try.js, tag=京东试用, img-url=https://raw.githubusercontent.com/ZCY01/img/master/jdtryv1.png, enabled=true", 98 | "10 16 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/activity/jd_tcl.js, tag=京东球队赢好礼(不加购), img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdyjd.png, enabled=true", 99 | "0 0 1 1 * https://raw.githubusercontent.com/sngxpro/QuanX/master/scripts/cgwz.js, tag=猜歌王者改进度, img-url=https://ae01.alicdn.com/kf/Uaade4566dd3744299956aa883f225386u.jpg, enabled=true", 100 | "25 8 * 4-5 * https://qxzy.top/rules/QuantumultX/js/zwf234/z_tcl_lining.js, tag=京东TCL电视自营, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 101 | "4 10 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_market_lottery.js, tag=幸运大转盘, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 102 | "5-45/20 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_health_collect.js, tag=东东健康社区收集能量, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 103 | "10 0-23/4 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_health.js, tag=东东健康社区, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 104 | "2 9 * * * https://raw.githubusercontent.com/jonrean/JD-SHELL/main/monk_pasture.js, tag=有机牧场, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png, enabled=true", 105 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/xyl.js, tag=新亚链, img-url=https://qxzy.top/rules/QuantumultX/img/xyl.png, enabled=true", 106 | "0 13 9 * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/jd/jd_rankingList.js, tag=京东排行榜, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 107 | "0 * * * * https://raw.githubusercontent.com/nianyuguai/longzhuzhu/main/qx/jd_super_redrain.js, tag=京东整点京豆红包雨, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 108 | "35 9 * * * https://raw.githubusercontent.com/age174/-/main/tpyqc.js, tag=太平洋汽车网, img-url=https://ae01.alicdn.com/kf/Uf51ecfcc4b0949e18441fc3f3f4919ede.jpg, enabled=true", 109 | "10 8 * * * https://raw.githubusercontent.com/age174/-/main/sphz.js, tag=视频号互助, img-url=https://ae01.alicdn.com/kf/U6fe8c098a65740039ac7767867746c4aK.jpg, enabled=true", 110 | "20,50 0-23 * * * https://raw.githubusercontent.com/age174/-/main/jjrm.js, tag=久金人脉, img-url=https://ae01.alicdn.com/kf/Uf3f262fb6d81492a8e350a0bb97a04a0g.jpg, enabled=true", 111 | "35 9 * * * https://raw.githubusercontent.com/age174/-/main/zzsy.js, tag=招招试药, img-url=https://ae01.alicdn.com/kf/Ub0056a0721e94c9a85a8bbeb2f2aed6fn.jpg, enabled=true", 112 | "7 7 7-20 * * * https://raw.githubusercontent.com/ziye888/JavaScript/main/Task/yqnb.js, tag=易趣牛帮, img-url=https://raw.githubusercontent.com/ziye888/JavaScript/main/Task/yqnb.png, enabled=true", 113 | "35 9-22 * * * https://raw.githubusercontent.com/age174/-/main/qhyd.js, tag=千禾阅读, img-url=https://ae01.alicdn.com/kf/U413ab7460abb4a28b11deac3c5034243N.jpg, enabled=true", 114 | "1 0 * * * https://raw.githubusercontent.com/age174/-/main/blnc.js, tag=部落农场, img-url=https://ae01.alicdn.com/kf/U7bcabce8ea7644f18e3c84f65907e34bf.jpg, enabled=true", 115 | "0 0,1-23/3 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_mohe.js, tag=⚠️5G超级盲盒, img-url=https://qxzy.top/rules/QuantumultX/img/sgmh.png, enabled=true", 116 | "0 0 1 1 * https://raw.githubusercontent.com/age174/-/main/mmdzz.js, tag=萌喵大作战无限刷, img-url=https://ae01.alicdn.com/kf/U13a7be18e87942118e4402e22652fd70H.jpg, enabled=true", 117 | "*/4 * * * * https://raw.githubusercontent.com/qqsdff/script/main/xsyx.js, tag=兴盛优选小程序, img-url=https://qxzy.top/rules/QuantumultX/img/xsyx.png, enabled=true", 118 | "0 0 * * * https://raw.githubusercontent.com/LJJJia/script/master/iklear/iklear_checkin.js, tag=iklear签到, img-url=https://qxzy.top/rules/QuantumultX/img/iklear.png, enabled=true", 119 | "0 9 * * * https://raw.githubusercontent.com/age174/-/main/ehy.js, tag=钢镚赚乐步达人二合一, img-url=https://qxzy.top/rules/QuantumultX/img/ehy.png, enabled=true", 120 | "0 0 0/2 * * * https://raw.githubusercontent.com/xl2101200/-/main/jfz.js, tag=积分赚挖矿, img-url=https://qxzy.top/rules/QuantumultX/img/jfz.png, enabled=true", 121 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/nmm.js, tag=牛蒙蒙, img-url=https://qxzy.top/rules/QuantumultX/img/nmm.png, enabled=true", 122 | "0 7 * * * https://raw.githubusercontent.com/xl2101200/-/main/pahcz.js, tag=平安好车主, img-url=https://qxzy.top/rules/QuantumultX/img/pahcz.png, enabled=true", 123 | "15 08 2-18 4 * https://raw.githubusercontent.com/sngxpro2/AutoSyncScript/monk/car/monk_skyworth_car.js, tag=京东创维全勤奖(加购), img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 124 | "0 0/10 * * * * https://raw.githubusercontent.com/xl2101200/-/main/qkyl.js, tag=⚠️趣客有礼, img-url=https://qxzy.top/rules/QuantumultX/img/qkyl.png, enabled=true", 125 | "0 8 * * * https://raw.githubusercontent.com/xl2101200/-/main/pxx.js, tag=⚠️拼夕夕, img-url=https://qxzy.top/rules/QuantumultX/img/pdd.png, enabled=true", 126 | "0-59 9,12,22 * * * https://raw.githubusercontent.com/age174/-/main/shq.js, tag=生活圈, img-url=https://ftp.bmp.ovh/imgs/2021/04/e2b32e2eb2ad0cd3.png, enabled=true", 127 | "0 9,13 * * * https://raw.githubusercontent.com/age174/-/main/lhws.js, tag=落花无生, img-url=https://ae01.alicdn.com/kf/U7f67ec3bd2d848a59d72a1807dc9e324r.jpg, enabled=true", 128 | "15 9 * * * https://raw.githubusercontent.com/age174/-/main/vsh.js, tag=V生活, img-url=https://ae01.alicdn.com/kf/Uf0da879c7acd4c7bad91f0e5a97667e1O.jpg, enabled=true", 129 | "1 0 * * * https://raw.githubusercontent.com/photonmang/quantumultX/master/Task/zyb.js, tag=作业帮签到, img-url=https://raw.githubusercontent.com/sngxpro/QuanX/master/icons/zuoyebang.png, enabled=true", 130 | "0-59 9-22 * * * https://raw.githubusercontent.com/age174/-/main/wcyd.js, tag=文创阅读, img-url=https://ae01.alicdn.com/kf/Ua6bd9417d492473f8ca0c3110b2176307.jpg, enabled=true", 131 | "20 9 * * * https://raw.githubusercontent.com/age174/-/main/ximei.js, tag=西梅, img-url=https://ae01.alicdn.com/kf/Ucd02ea79ef22473daf3576486d134509Q.jpg, enabled=true", 132 | "10-15 9 * * * https://raw.githubusercontent.com/age174/-/main/lgyy.js, tag=朗果英语, img-url=https://ae01.alicdn.com/kf/Uc3c35e1796624a7ca6a23c89c7f0dff2H.jpg, enabled=true", 133 | "10 8 * * * https://raw.githubusercontent.com/age174/-/main/zqwn.js, tag=最强蜗牛, img-url=https://ae01.alicdn.com/kf/U1748aeaa81a54cdf8797ed3fc54d76ef3.jpg, enabled=true", 134 | "5,35 9-22 * * * https://raw.githubusercontent.com/age174/-/main/smz.js, tag=⚠️睡眠赚, img-url=https://qxzy.top/rules/QuantumultX/img/smz.png, enabled=true", 135 | "0,30 8-23 * * * https://raw.githubusercontent.com/age174/-/main/hlyy.js, tag=葫芦音乐, img-url=https://ae01.alicdn.com/kf/U49d941738c0c41569f7db55825943375f.jpg, enabled=true", 136 | "30 10 * * * https://raw.githubusercontent.com/age174/-/main/yqzh.js, tag=悦趣阅读, img-url=https://ae01.alicdn.com/kf/U428ddcb68e304bc0822743cad88f5142n.jpg, enabled=true", 137 | "10 9-22 * * * https://raw.githubusercontent.com/age174/-/main/wcxcx.js, tag=文创阅读小程序, img-url=https://ae01.alicdn.com/kf/Ua6bd9417d492473f8ca0c3110b2176307.jpg, enabled=true", 138 | "0 0-18/6 * * * https://qxzy.top/rules/QuantumultX/js/jd_carnivalcity.js, tag=⚠️京东手机狂欢城, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 139 | "5 1 23-25 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_grassy.js, tag=⚠️答题赢京豆, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 140 | "5,35 9-22 * * * https://raw.githubusercontent.com/age174/-/main/66yd.js, tag=66阅读, img-url=https://ae01.alicdn.com/kf/Uaade4566dd3744299956aa883f225386u.jpg, enabled=true", 141 | "12 0 19-24 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_city_cash.js, tag=⚠️城城分现金, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 142 | "0 8 1-31/1 4 * https://qxzy.top/rules/QuantumultX/js/lxk0301/activity/jd_nzmh.js, tag=⚠️女装盲盒, img-url=https://raw.githubusercontent.com/Orz-3/mini/master/Color/jd.png, enabled=true", 143 | "5 10 * 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_mgold.js, tag=⚠️金口碑奖投票, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 144 | "0 9 * * * https://qxzy.top/rules/QuantumultX/js/zhiyi/ygkc.js, tag=阳光矿场, img-url=https://qxzy.top/rules/QuantumultX/img/ygkc.png, enabled=true", 145 | "12 12 24-26 3 * https://github.com/jipinwz/i-chenzhe_qx/raw/main/z_sister.js, tag=⚠️乘风破浪的姐姐, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 146 | "11 12 17-30 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_oneplus.js, tag=⚠️一加盲盒, img-url=https://qxzy.top/rules/QuantumultX/img/sgmh.png, enabled=true", 147 | "5 8,14,20 19-25 5 * https://raw.githubusercontent.com/monk-coder/dust/dust/i-chenzhe/z_mother_jump.js, tag=母婴跳一跳, img-url=https://qxzy.top/rules/QuantumultX/img/jd_jump-jump.png, enabled=true", 148 | "12 15 15-29 3 * https://github.com/jipinwz/i-chenzhe_qx/raw/main/z_lenovo.js, tag=联想集卡活动, img-url=https://qxzy.top/rules/QuantumultX/img/z_lenovo.png, enabled=true", 149 | "0 0 0 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/activity/jd_xtg.js, tag=手机尚学季, img-url=https://qxzy.top/rules/QuantumultX/img/jd_xtg.png, enabled=true", 150 | "0,1,2 0 * * * https://raw.githubusercontent.com/ddgksf2013/Cuttlefish/master/Jd/jd_cash_exchange.js, tag=领现金兑换红包, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 151 | "13 8,10 8-15 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_superDay.js, tag=京东洗护发超级品类日, img-url=https://raw.githubusercontent.com/i-chenzhe/qx/master/img/icon.png, enabled=true", 152 | "10 10,15 13-20 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_wish.js, tag=⚠️京东众筹许愿池, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 153 | "10-20/5 12 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_live.js, tag=京东直播, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 154 | "5,35 9-22 * * * https://raw.githubusercontent.com/age174/-/main/wkzz.js, tag=微客众智, img-url=https://ae01.alicdn.com/kf/Uff0a0bb9e66a479591c9b02c176fd276A.jpg, enabled=true", 155 | "7 0-23 * * * https://raw.githubusercontent.com/6Svip120apk69/gitee_q8qsTAUA_cThxc1RBVUE/main/Task/shuqi.js, tag=书旗小说, img-url=https://qxzy.top/rules/QuantumultX/img/sqxs.png, enabled=true", 156 | "10 10 16-18 * * https://github.com/jipinwz/i-chenzhe_qx/raw/main/z_xmf.js, tag=京东小魔方, img-url=https://qxzy.top/rules/QuantumultX/img/jd_xmf.png, enabled=true", 157 | "0 9 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/fqxs.js, tag=番茄小说, img-url=https://qxzy.top/rules/QuantumultX/img/fqxs.png, enabled=true", 158 | "*/30 8-22 * * * https://raw.githubusercontent.com/age174/-/main/cfz.js, tag=春风转, img-url=https://qxzy.top/rules/QuantumultX/img/cfz.jpg, enabled=true", 159 | "15 10 26-31 2,3 * https://github.com/jipinwz/i-chenzhe_qx/raw/main/z_unionPoster.js, tag=美的家电节, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 160 | "15 13 * * * https://raw.githubusercontent.com/age174/-/main/hldsp.js, tag=哈喽短视频, img-url=https://ae01.alicdn.com/kf/Uda8ecbbe50444fe293b538cbccf9d719q.jpg, enabled=true", 161 | "20 12 * * * https://raw.githubusercontent.com/age174/-/main/xyzd.js, tag=幸运赚点, img-url=https://ae01.alicdn.com/kf/U1680ecdfa17544669c71e00400c542e31.jpg, enabled=true", 162 | "13 8,10 8-15 3 * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_superDay.js, tag=超级品类日, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 163 | "30,31 20-23/1 9,12 3 * https://qxzy.top/rules/QuantumultX/js/jd_live_redrain.js, tag=超级直播间红包雨, img-url=https://qxzy.top/rules/QuantumultX/img/jd_live_redrain_half.png, enabled=true", 164 | "15 7,15 * * * https://raw.githubusercontent.com/ddgksf2013/Cuttlefish/master/Jd/jd_cash_reward.js, tag=领现金自动获得酬劳, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 165 | "0 9 8-31 3 * https://qxzy.top/rules/QuantumultX/js/lxk0301/activity/jd_global.js, tag=环球挑战赛, img-url=https://qxzy.top/rules/QuantumultX/img/jd_global.png, enabled=true", 166 | "30 8 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/activity/jd_jxd.js, tag=京小兑, img-url=https://qxzy.top/rules/QuantumultX/img/jd_jxd.png, enabled=true", 167 | "0 9 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/pyq.js, tag=评有圈, img-url=https://qxzy.top/rules/QuantumultX/img/pyq.png, enabled=true", 168 | "3 10 * * * https://raw.githubusercontent.com/i-chenzhe/qx/main/z_marketLottery.js, tag=⚠️京东超市-大转盘, img-url=https://qxzy.top/rules/QuantumultX/img/z_marketLottery.png, enabled=true", 169 | "0 */1 * * * https://raw.githubusercontent.com/age174/-/main/yggy.js, tag=阳光果园, img-url=https://qxzy.top/rules/QuantumultX/img/yggy.png, enabled=true", 170 | "0,30 0-23 * * * https://qxzy.top/rules/QuantumultX/js/ZIYE/Task/qmyd.js, tag=全民悦动, img-url=https://qxzy.top/rules/QuantumultX/img/qmyd.png, enabled=true", 171 | "15 0,6,12,18, * * * https://raw.githubusercontent.com/age174/-/main/ddxq.js, tag=嘀嗒星球, img-url=https://qxzy.top/rules/QuantumultX/img/ddxq.png, enabled=true", 172 | "15 0,6,12,18, * * * https://raw.githubusercontent.com/age174/-/main/xsmm.js, tag=悬赏喵喵, img-url=https://qxzy.top/rules/QuantumultX/img/Yunsaoma.png, enabled=true", 173 | "5 0 * * * https://qxzy.top/rules/QuantumultX/js/jd_shakeBean.js, tag=摇京豆i-chenzhe, img-url=https://qxzy.top/rules/QuantumultX/img/jdyjd.png, enabled=true", 174 | "15 10 * * * https://qxzy.top/rules/QuantumultX/js/ZIYE/Task/ymzhuan.js, tag=羊毛赚, img-url=https://qxzy.top/rules/QuantumultX/img/ymz.png, enabled=true", 175 | " 0,30 0-23 * * * https://qxzy.top/rules/QuantumultX/js/ZIYE/Task/yuedongzu.js, tag=悦动族, img-url=https://qxzy.top/rules/QuantumultX/img/yuedongzu.png, enabled=true", 176 | "15 12,14,16,20,22 * * * https://raw.githubusercontent.com/age174/-/main/ysm.js, tag=云扫码, img-url=https://s3.ax1x.com/2021/02/28/6CRWb8.jpg, enabled=true", 177 | "15 12,14,16,20 * * * https://raw.githubusercontent.com/age174/-/main/dka.js, tag=蛋咖, img-url=https://s3.ax1x.com/2021/02/28/6C3Gpn.jpg, enabled=true", 178 | "5,35 8-23 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/dyjsb.js, tag=抖音极速版, img-url=https://qxzy.top/rules/QuantumultX/img/dyjsb.png, enabled=true", 179 | "*/5 6-23 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/huoshan.js, tag=抖音火山版, img-url=https://qxzy.top/rules/QuantumultX/img/huoshan.png, enabled=true", 180 | "0 */30 * * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/hotsoon.js, tag=火山极速版, img-url=https://qxzy.top/rules/QuantumultX/img/hotsoon.png, enabled=true", 181 | "15 12 * * * https://raw.githubusercontent.com/age174/-/main/yyxs.js, tag=阅友小说, img-url=https://qxzy.top/rules/QuantumultX/img/yyxs.png, enabled=true", 182 | "30 18 * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jd_zjd.js, tag=半自动领京豆, img-url=https://qxzy.top/rules/QuantumultX/img/jd_zjd.png, enabled=true", 183 | "0 9 * * * https://raw.githubusercontent.com/58xinian/Surge/master/Script/huke.js, tag=虎课网, img-url=https://raw.githubusercontent.com/58xinian/icon/master/huke.png, enabled=true", 184 | "0 9 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/jddj.js, tag=京东到家, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 185 | "3 20 * * * https://raw.githubusercontent.com/i-chenzhe/qx/main/jd_shake.js, tag=⚠️摇一摇, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 186 | "5 0 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/wechatsubs/wechatsubs.js, tag=公众号监控, img-url=https://qxzy.top/rules/QuantumultX/img/wechat.png, enabled=true", 187 | "5 0 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/klcw/klcw-app.js, tag=酷乐潮玩App, img-url=https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/picture/klcw.png, enabled=true", 188 | "*/10 */2 * * * https://qxzy.top/rules/QuantumultX/js/jukan.js, tag=聚看点, img-url=https://qxzy.top/rules/QuantumultX/img/jukan.png, enabled=true", 189 | "0 8 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/TT.js, tag=TT语音签到, img-url=https://qxzy.top/rules/QuantumultX/img/TT.png, enabled=true", 190 | "1 1 * * * https://qxzy.top/rules/QuantumultX/js/jd_redPacket.js, tag=京东全民开红包, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png, enabled=true", 191 | "0 0 * * * https://qxzy.top/rules/QuantumultX/js/zwf234/jx_cfdtx.js, tag=京喜财富岛提现, img-url=https://qxzy.top/rules/QuantumultX/img/jx_cfdtx.png, enabled=true", 192 | "30 8,13,19 * * * https://qxzy.top/rules/QuantumultX/js/jx_cfd.js, tag=京喜财富岛, img-url=https://qxzy.top/rules/QuantumultX/img/jxcfd.png, enabled=true", 193 | "11 1 * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/jd/jd_lotteryMachine.js, tag=京东抽奖机, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=false", 194 | "10 0 * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jd_collectBlueCoin.js, tag=⚠️京小超领蓝币, img-url=https://raw.githubusercontent.com/Xirou/Script/master/jxc.PNG, enabled=true", 195 | "10 12,18 * * * https://raw.githubusercontent.com/id77/QuantumultX/master/task/jdWuLiu.js, tag=京东物流派件提醒, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 196 | "0 9,12,20,21 * * * https://qxzy.top/rules/QuantumultX/js/jd_global_mh.js, tag=京东国际盲盒, img-url=https://qxzy.top/rules/QuantumultX/img/jd_global_mh.png, enabled=true", 197 | "8/30 * 1-6 * * * https://raw.githubusercontent.com/ztxtop/x/main/zqread.js, tag=中青阅读, img-url=https://qxzy.top/rules/QuantumultX/img/youth.png, enabled=true", 198 | "30 6 * * * https://raw.githubusercontent.com/ztxtop/x/main/youth_banner.js, tag=中青看看赚, img-url=https://qxzy.top/rules/QuantumultX/img/youth.png, enabled=true", 199 | "*/30 0-23 * * * https://raw.githubusercontent.com/CenBoMin/QuantumultX/master/Scripts/Youth/youth.js, tag=中青看点极速版, img-url=https://qxzy.top/rules/QuantumultX/img/youth.png, enabled=true", 200 | "10 1-23 * * * https://raw.githubusercontent.com/CenBoMin/QuantumultX/master/Scripts/Youth/Youth_AutoRead.js, tag=中青阅读自动阅读, img-url=https://qxzy.top/rules/QuantumultX/img/youth.png, enabled=true", 201 | "0/15 1-6 * * * https://qxzy.top/rules/QuantumultX/js/ZIYE/Task/xiaole.js, tag=微信小乐优券, img-url=https://qxzy.top/rules/QuantumultX/img/xiaole.png, enabled=true", 202 | "15 12,14,16,20 * * * https://raw.githubusercontent.com/age174/-/main/fqkk.js, tag=番茄看看, img-url=https://qxzy.top/rules/QuantumultX/img/fqkk.png, enabled=true", 203 | "*/10 * * * * https://raw.githubusercontent.com/age174/-/main/sz.js, tag=闪挣, img-url=https://qxzy.top/rules/QuantumultX/img/sz.png, enabled=true", 204 | "15,45 10-22 * * * https://raw.githubusercontent.com/age174/-/main/wnb.js, tag=蜗牛吧, img-url=https://qxzy.top/rules/QuantumultX/img/wnb.png, enabled=true", 205 | "1,30 10-20 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/ranlv.js, tag=燃旅视频, img-url=https://qxzy.top/rules/QuantumultX/img/ranlv.png, enabled=true", 206 | "15 0 * * * https://raw.githubusercontent.com/age174/-/main/jqb.js, tag=金钱豹, img-url=https://ftp.bmp.ovh/imgs/2021/02/9e6d449acb9b6889.png, enabled=true", 207 | "15 10 * * * https://raw.githubusercontent.com/age174/-/main/mhdsp.js, tag=陌嗨短视频, img-url=https://raw.githubusercontent.com/usrnb/options/main/QuantumultX/icons/task/mhdsp.png, enabled=true", 208 | "0 0 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_speed_redpocke.js, tag=京东极速版红包, img-url=https://qxzy.top/rules/QuantumultX/img/jd_speed_sign.png, enabled=true", 209 | "0 7 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_speed_sign.js, tag=京东极速版, img-url=https://qxzy.top/rules/QuantumultX/img/jd_speed_sign.png, enabled=true", 210 | "0 9,18 * * 1-5 https://raw.githubusercontent.com/yichahucha/surge/master/clock_in.js, tag=钉钉打卡提醒, img-url=https://qxzy.top/rules/QuantumultX/img/dingding.png, enabled=true", 211 | "30 8 * * * https://raw.githubusercontent.com/nzw9314/QuantumultX/master/yichahucha/cron_daily.js, tag=每日一句+蚂蚁森林收能量, img-url=https://qxzy.top/rules/QuantumultX/img/cron_daily.png, enabled=true", 212 | "10 9 * * * https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/scripts/ttwk/ttwk.js, tag=支付宝天天挖矿, img-url=https://raw.githubusercontent.com/yangtingxiao/QuantumultX/master/image/ttwk.png, enabled=true", 213 | "*/10 * * * * https://raw.githubusercontent.com/DD-D1/Script/main/zoulusign.js, tag=走路赚, img-url=https://qxzy.top/rules/QuantumultX/img/zoulusign.png, enabled=true", 214 | "0 0 * * * https://raw.githubusercontent.com/CenBoMin/GithubSync/main/RUNSTEP/cash.js, tag=走路赚钱-提现专用, img-url=https://gitee.com/ydj0602/hym/raw/img/ZLZQ1.png, enabled=true", 215 | "5 0 * * * https://raw.githubusercontent.com/ZCY01/daily_scripts/main/jd/jd_priceProtect.js, tag=京东价格保护, img-url=https://raw.githubusercontent.com/ZCY01/img/master/pricev1.png, enabled=true", 216 | "55 20 */3 * * * https://gitee.com/curtinlv/qx/raw/master/Script/zmsp.js, tag=芝嫲视频, img-url=https://s3.ax1x.com/2021/02/06/yYzeWn.png, enabled=true", 217 | "10 10,11 * * 2-5 https://github.com/i-chenzhe/qx/raw/main/jd_entertainment.js, tag=⚠️百变大咖秀, img-url=https://qxzy.top/rules/QuantumultX/img/jd_entertainment.png, enabled=true", 218 | "36 0 8,12,13,14,18,19,20,21,22,23 * * * https://raw.githubusercontent.com/elecV2/QuantumultX-Tools/master/dianx/dxbox.js, tag=整点开宝箱, img-url=https://raw.githubusercontent.com/elecV2/QuantumultX-Tools/master/dianx/dxbox.png, enabled=true", 219 | "30 7-23 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/baidu_speed.js, tag=百度极速版, img-url=https://qxzy.top/rules/QuantumultX/img/baidu_speed.png, enabled=true", 220 | "35 5 0 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/kuaishou.js, tag=快手极速版, img-url=https://qxzy.top/rules/QuantumultX/img/kuaishou.png, enabled=true", 221 | "0 9 * * * https://raw.githubusercontent.com/ZhiYi-N/script/master/kkd.js, tag=快看点, img-url=https://qxzy.top/rules/QuantumultX/img/kkd.png, enabled=true", 222 | "5,35 8-23 * * * https://raw.githubusercontent.com/ZhiYi-N/Private-Script/master/Scripts/jrtt.js, tag=今日头条极速版, img-url=https://qxzy.top/rules/QuantumultX/img/jrtt.png, enabled=true", 223 | "1 * * * * https://raw.githubusercontent.com/age174/-/main/baosxq.js, tag=宝石星球, img-url=https://raw.githubusercontent.com/sngxpro/icons/main/genshin/mona.png, enabled=true", 224 | "2 9 * * * https://qxzy.top/rules/QuantumultX/js/jd_bean_change.js , tag=京豆变动通知 , img-url=https://qxzy.top/rules/QuantumultX/img/jd.png", 225 | "5 1 * * * https://raw.githubusercontent.com/age174/-/main/bigfun.js, tag=bigfun签到, img-url=https://raw.githubusercontent.com/shoujiqiyuan/PokemonGOforQuanX/master/IconSet/Z003.png, enabled=true", 226 | "3 0 * * * https://raw.githubusercontent.com/NobyDa/Script/master/JD-DailyBonus/JD_DailyBonus.js, tag=京东多合一, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 227 | "00 16 * * * https://raw.githubusercontent.com/CenBoMin/GithubSync/main/TXSTOCK/txstockqx.js, tag=腾讯自选股, img-url=https://raw.githubusercontent.com/CenBoMin/GithubSync/main/TXSTOCK/txzxg.png, enabled=true", 228 | "3,30 0 * * * https://raw.githubusercontent.com/CenBoMin/GithubSync/main/TXSTOCK/txstockcow.js, tag=活动-长牛来了, img-url=https://raw.githubusercontent.com/CenBoMin/GithubSync/main/TXSTOCK/txzxg.png, enabled=true", 229 | "20 8 * * * https://qxzy.top/rules/QuantumultX/js/jd_sgmh.js, tag=闪购盲盒, img-url=https://qxzy.top/rules/QuantumultX/img/sgmh.png, enabled=true", 230 | "10 * * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jd_zjd_tuan.js, tag=京东赚京东开团, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_syj.png, enabled=true", 231 | "10 0 * * * https://qxzy.top/rules/QuantumultX/js/jd_jdzz.js, tag=京东赚赚, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdzz.png, enabled=true", 232 | "10 10 * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jx_products_detail.js, tag=京喜工厂商品列表详情, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdgc.png, enabled=true", 233 | "20 13 * * 6 https://qxzy.top/rules/QuantumultX/js/jd_get_share_code.js, tag=获取互助码, img-url=https://qxzy.top/rules/QuantumultX/img/huzhucode.png, enabled=true", 234 | "0 10 0 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/pupu/pupuCheckIn.js, tag=朴朴, img-url=https://qxzy.top/rules/QuantumultX/img/pupuCheckIn.png, enabled=true", 235 | "0 9 * * * https://qxzy.top/rules/QuantumultX/js/ZIYE/Task/flw.js, tag=返利网, img-url=https://qxzy.top/rules/QuantumultX/img/fanli.png, enabled=true", 236 | "0,30 * * * * https://qxzy.top/rules/QuantumultX/js/ZIYE/Task/步步宝.js, tag=步步宝, img-url=https://qxzy.top/rules/QuantumultX/img/bbb.png, enabled=true", 237 | "0,30 0-12 * * * https://qxzy.top/rules/QuantumultX/js/yike.js, tag=一刻视频, img-url=https://qxzy.top/rules/QuantumultX/img/yike.png, enabled=true", 238 | "3 10 * * * https://raw.githubusercontent.com/i-chenzhe/qx/main/jd_fanslove.js, tag=⚠️粉丝互动, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 239 | "0 * * * * https://qxzy.top/rules/QuantumultX/js/jd_xxl.js, tag=东东爱消除, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/shylocks/jd_xxl.jpg, enabled=true", 240 | "0 9,12,18 * * * https://qxzy.top/rules/QuantumultX/js/jd_jxnc.js, tag=京喜农场, img-url=https://raw.githubusercontent.com/ChuheGit/1/main/QuantumultX/Gallery/API-Icon/jx_nc.png, enabled=true", 241 | "10 7 * * * https://qxzy.top/rules/QuantumultX/js/jd_ms.js, tag=京东秒秒币, img-url=https://raw.githubusercontent.com/yogayyy/Scripts/main/Icon/shylocks/jd_ms.jpg, enabled=true", 242 | "0 10 0 * * * https://raw.githubusercontent.com/XidNDD/2020scripts/master/jddsSign.js, tag=京东读书签到, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 243 | "5 8 * * * https://raw.githubusercontent.com/iisams/Scripts/master/liwo/jdtqz.js, tag= 京东特权值, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 244 | "1 7 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_wechat_sign.js, tag=⚠️京东粉丝专享, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 245 | "30 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_gyec.js, tag=工业品爱消除, img-url=https://qxzy.top/rules/QuantumultX/img/jd_gyec.png, enabled=true", 246 | "0 30 2 1,10,20 * ? https://gitee.com/qq34347476/quantumult-x/raw/master/get_share_jd_code.js, tag=获取并提交hz码, img-url=https://qxzy.top/rules/QuantumultX/img/huzhucode.png, enabled=true", 247 | "1 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_family.js, tag=京东家庭号, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_family.png, enabled=true", 248 | "0 2 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_price.js, tag=京东保价, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 249 | "10 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_daily_egg.js, tag=天天提鹅, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdte.png, enabled=true", 250 | "15 0-23/2 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_joy.js, tag=京东宠汪汪, img-url=https://qxzy.top/rules/QuantumultX/img/jdcww.png, enabled=true", 251 | "15 0-23/1 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_joy_feedPets.js, tag=京东宠汪汪喂食, img-url=https://qxzy.top/rules/QuantumultX/img/jdcww.png, enabled=true", 252 | "0 0 0,8,16 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_joy_reward.js, tag=宠汪汪积分兑换奖品, img-url=https://qxzy.top/rules/QuantumultX/img/jdcww.png, enabled=true", 253 | "15 10 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_joy_run.js, tag=宠汪汪邀请助力与赛跑助力, img-url=https://qxzy.top/rules/QuantumultX/img/jdcww.png, enabled=true", 254 | "0 0-10/2 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_joy_steal.js, tag=宠汪汪偷好友积分与狗粮, img-url=https://qxzy.top/rules/QuantumultX/img/jdcww.png, enabled=true", 255 | "12 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_pigPet.js, tag=京融养猪, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdyz.png, enabled=true", 256 | "5 6-18/6 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_fruit.js , tag=东东农场 , img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdnc.png", 257 | "10 7 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_crazy_joy_coin.js, tag=crazyJoy挂机, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 258 | "10 7 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_crazy_joy.js, tag=crazyJoy任务, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 259 | "10 12 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_crazy_joy_bonus.js, tag=监控crazyJoy分红, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_crazy_joy.png, enabled=true", 260 | "2 0 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_cash.js, tag=签到领现金, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 261 | "5 0 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jx_sign.js, tag=京喜签到, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 262 | "0/30 * * * * https://raw.githubusercontent.com/whyour/hundun/master/quanx/jx_factory.js, tag=京喜工厂助力+自动开团参团, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jdgc.png, enabled=true", 263 | "10 0 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_kd.js, tag=京东快递签到, img-url=https://qxzy.top/rules/QuantumultX/img/jd_kd.png, enabled=true", 264 | "15 6-18/6 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_pet.js, tag=东东萌宠, img-url=https://qxzy.top/rules/QuantumultX/img/jdmc.png", 265 | "12 * * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_pigPet.js, tag=京东金融养猪猪, img-url=https://qxzy.top/rules/QuantumultX/img/jdyz.png, enabled=true", 266 | "1 7-21/2 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_plantBean.js, tag=京东种豆得豆, img-url=https://qxzy.top/rules/QuantumultX/img/jdzd.png", 267 | "1 8,12,18 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_bookshop.js, tag=口袋书店, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 268 | "8 0-23/3 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_speed.js, tag=京东天天加速, img-url=https://qxzy.top/rules/QuantumultX/img/jdjs.png", 269 | "16 22 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_small_home.js, tag=东东小窝, img-url=https://qxzy.top/rules/QuantumultX/img/ddxw.png, enabled=true", 270 | "3 0-23/2 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_moneyTree.js, tag=京东摇钱树, img-url=https://qxzy.top/rules/QuantumultX/img/jdyqs.png", 271 | "5 0,23 * * * https://qxzy.top/rules/QuantumultX/js/lxk0301/jd_club_lottery.js, tag=摇京豆, img-url=https://qxzy.top/rules/QuantumultX/img/jdyjd.png", 272 | "55 23 * * * https://qxzy.top/rules/QuantumultX/js/zwf234/jd_unsubscribe.js, tag=取关京东店铺商品, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 273 | "10 0 * * * https://qxzy.top/rules/QuantumultX/js/jd_shop.js, tag=进店领豆 , img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_shop.png", 274 | "10 0,20 * * * https://qxzy.top/rules/QuantumultX/js/jd_necklace.js, tag=点点券, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png", 275 | "10 * * * * https://qxzy.top/rules/QuantumultX/js/jd_dreamFactory.js, tag=京喜工厂, img-url=https://github.com/58xinian/icon/raw/master/jdgc.png", 276 | "10 * * * * https://qxzy.top/rules/QuantumultX/js/jd_jdfactory.js, tag=东东工厂, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_factory.png", 277 | "10 7 * * * https://qxzy.top/rules/QuantumultX/js/jd_syj.js, tag=赚京豆, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_syj.png, enabled=true", 278 | "0 0 0 * * * https://qxzy.top/rules/QuantumultX/js/jd_blueCoin.js, tag=东东超市兑换奖品, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true", 279 | "11 1-23/5 * * * https://qxzy.top/rules/QuantumultX/js/jd_superMarket.js, tag=东东超市, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jxc.png, enabled=true", 280 | "10 7 * * * https://qxzy.top/rules/QuantumultX/js/jd_bean_home.js, tag=领京豆额外奖励, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_bean_home.png, enabled=true", 281 | "10 7 * * * https://qxzy.top/rules/QuantumultX/js/jd_car.js, tag=京东汽车, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_car.png, enabled=true", 282 | "0 0 * * * https://qxzy.top/rules/QuantumultX/js/jd_car_exchange.js, tag=京东汽车兑换, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png, enabled=true", 283 | "5 0 * * * https://raw.githubusercontent.com/toulanboy/scripts/master/jd_price_detect/jd_price_detect.js, tag=京东价格提醒, img-url=https://qxzy.top/rules/QuantumultX/img/jd.png, enabled=true", 284 | "15 17 * * * https://qxzy.top/rules/QuantumultX/js/backUp/xmSports.js, tag=小米运动, img-url=https://raw.githubusercontent.com/58xinian/icon/master/xmyd.png", 285 | "0 9 * * * https://raw.githubusercontent.com/NobyDa/Script/master/52pojie-DailyBonus/52pojie.js, tag=吾爱破解, img-url=https://qxzy.top/rules/QuantumultX/img/52pj.png, enabled=true", 286 | "0 9 * * * https://raw.githubusercontent.com/NobyDa/Script/master/iQIYI-DailyBonus/iQIYI.js, tag=爱奇艺, img-url=https://qxzy.top/rules/QuantumultX/img/iQIYI.png, enabled=true", 287 | "0 9 * * * https://raw.githubusercontent.com/NobyDa/Script/master/KuaiKan-DailyBonus/KKMH.js, tag=快看漫画, img-url=https://qxzy.top/rules/QuantumultX/img/KuaiKan.png, enabled=true", 288 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/10000/10000.js, tag=中国电信, img-url=https://qxzy.top/rules/QuantumultX/img/10000.png, enabled=true", 289 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/10086/10086.js, tag=中国移动, img-url=https://qxzy.top/rules/QuantumultX/img/10086.png, enabled=true", 290 | "15 0 * * * https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/10010/unicom_checkin.js, tag=联通_签到与抽奖, img-url=https://qxzy.top/rules/QuantumultX/img/10010.png, enabled=true", 291 | "10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/10086/10086.fee.js, tag=10086查话费, img-url=https://qxzy.top/rules/QuantumultX/img/10086fee.png, enabled=true", 292 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/acfun/acfun.js, tag=AcFun, img-url=https://qxzy.top/rules/QuantumultX/img/acfun.png, enabled=true", 293 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/apktw/apktw.js, tag=APK.TW, img-url=https://qxzy.top/rules/QuantumultX/img/apktw.png, enabled=true", 294 | "50 23 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bcz/bcz.js, tag=百词斩, img-url=https://qxzy.top/rules/QuantumultX/img/bcz.png, enabled=true", 295 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bilibili/bilibili.js, tag=哔哩哔哩签到, img-url=https://qxzy.top/rules/QuantumultX/img/bilibili.png, enabled=true", 296 | "0 9 * * * https://raw.githubusercontent.com/NobyDa/Script/master/Bilibili-DailyBonus/Manga.js, tag=哔哩漫画签到, img-url=https://qxzy.top/rules/QuantumultX/img/manga.png, enabled=true", 297 | "0 0 0,1 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/bilibili/bangumiMonitor.js, tag=哔哩哔哩番剧监控, img-url=https://qxzy.top/rules/QuantumultX/img/bilibili.png, enabled=true", 298 | "0 1 0 1 * ? https://raw.githubusercontent.com/lowking/Scripts/master/bilibili/privilegeReceive.js, tag=哔哩哔哩大会员特权领取, img-url=https://qxzy.top/rules/QuantumultX/img/bilibili.png, enabled=true", 299 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/bubei/bubei.js, tag=不背单词, img-url=https://qxzy.top/rules/QuantumultX/img/bubei.png, enabled=true", 300 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/csdn/csdn.js, tag=CSDN, img-url=https://qxzy.top/rules/QuantumultX/img/csdn.png, enabled=true", 301 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/dbsj/dbsj.js, tag=豆瓣时间, img-url=https://qxzy.top/rules/QuantumultX/img/dbsj.png, enabled=true", 302 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/dongqiudi/dongqiudi.js, tag=懂球帝, img-url=https://qxzy.top/rules/QuantumultX/img/dongqiudi.png, enabled=true", 303 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/duokan/duokan.js, tag=多看阅读, img-url=https://qxzy.top/rules/QuantumultX/img/duokan.png, enabled=true", 304 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/everphoto/everphoto.js, tag=时光相册, img-url=https://qxzy.top/rules/QuantumultX/img/everphoto.png, enabled=true", 305 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/fandeng/fandeng.js, tag=樊登读书, img-url=https://qxzy.top/rules/QuantumultX/img/fandeng.png, enabled=true", 306 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/feng/feng.js, tag=威锋网, img-url=https://qxzy.top/rules/QuantumultX/img/feng.png, enabled=true", 307 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/fenqile/fenqile.js, tag=分期乐, img-url=https://qxzy.top/rules/QuantumultX/img/fenqile.png, enabled=true", 308 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/flyertea/flyertea.js, tag=飞客茶馆, img-url=https://qxzy.top/rules/QuantumultX/img/flyertea.png, enabled=true", 309 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/gdoil/gdoil.js, tag=加油广东, img-url=https://qxzy.top/rules/QuantumultX/img/gdoil.png, enabled=true", 310 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/haidilao/hdl.js, tag=海底捞, img-url=https://qxzy.top/rules/QuantumultX/img/haidilao.png, enabled=true", 311 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/hellobike/hellobike.js, tag=哈啰出行, img-url=https://qxzy.top/rules/QuantumultX/img/hellbike.png, enabled=true", 312 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/hycan/hycan.js, tag=HYCAN合创, img-url=https://qxzy.top/rules/QuantumultX/img/hycan.png, enabled=true", 313 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/jddj/jddj.js, tag=京东到家, img-url=https://qxzy.top/rules/QuantumultX/img/jddj.png, enabled=true", 314 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/maomicd/maomicd.js, tag=猫咪音乐, img-url=https://qxzy.top/rules/QuantumultX/img/maomicd.png, enabled=true", 315 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/mcdd/mcdd.js, tag=叮咚买菜, img-url=https://qxzy.top/rules/QuantumultX/img/mcdd.png, enabled=true", 316 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/meituan/meituan.js, tag=美团, img-url=https://qxzy.top/rules/QuantumultX/img/meituan.png, enabled=true", 317 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/mgtv/mgtv.js, tag=芒果TV, img-url=https://qxzy.top/rules/QuantumultX/img/mgtv.png, enabled=true", 318 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/midu/miduSign.js, tag=米读签到, img-url=https://qxzy.top/rules/QuantumultX/img/midu.png, enabled=true", 319 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/midu/miduRead.js, tag=米读阅读时长, img-url=https://qxzy.top/rules/QuantumultX/img/midu.png, enabled=true", 320 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/mihoyo/mihoyo.js, tag=米游社, img-url=https://qxzy.top/rules/QuantumultX/img/mihoyo.png, enabled=true", 321 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/neteasemusic/quanx/neteasemusic.js, tag=网易云音乐, img-url=https://qxzy.top/rules/QuantumultX/img/Netease.png, enabled=true", 322 | "0 10 0 * * * https://raw.githubusercontent.com/XidNDD/2020scripts/master/sjdjSign.js, tag=水晶DJ, img-url=https://qxzy.top/rules/QuantumultX/img/sjdj.png, enabled=true", 323 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/wsxqSign.js, tag= 微商星球, img-url=https://qxzy.top/rules/QuantumultX/img/wsxq.png, enabled=true", 324 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/yzkbSign.js, tag= 柚子快报, img-url=https://qxzy.top/rules/QuantumultX/img/yzkb.png, enabled=true", 325 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/zscdbSign.js, tag=追书畅读版, img-url=https://qxzy.top/rules/QuantumultX/img/zscdb.png, enabled=true", 326 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/zymkSign.js, tag= 知音漫客, img-url=https://qxzy.top/rules/QuantumultX/img/zymk.png, enabled=true", 327 | "5 5 * * * https://raw.githubusercontent.com/799953468/Quantumult-X/master/Scripts/JD/jd_paopao.js, tag=泡泡大作战, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_paopao.png, enabled=true", 328 | "0 0 8 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/tvpreview.js, tag=节目预告, img-url=https://qxzy.top/rules/QuantumultX/img/tvpreview.png, enabled=true", 329 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/hdhycSign.js, tag=海德汇一城, img-url=https://qxzy.top/rules/QuantumultX/img/hdhyc.png, enabled=true", 330 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/mygmcSign.js, tag=民盈国贸城, img-url=https://qxzy.top/rules/QuantumultX/img/mygmc.png, enabled=true", 331 | "0 10 0 * * * https://raw.githubusercontent.com/DD-D1/2020scripts/master/qczjSign.js, tag= 汽车之家极速版, img-url=https://qxzy.top/rules/QuantumultX/img/qczj.png, enabled=true", 332 | "0 10 0 * * * https://raw.githubusercontent.com/XidNDD/2020scripts/master/sdcbxscSign.js, tag=水滴筹保险商城小程序, img-url=https://qxzy.top/rules/QuantumultX/img/sdc.png, enabled=true", 333 | "0 0 8 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/trainquery.js, tag=12306火车时刻, img-url=https://qxzy.top/rules/QuantumultX/img/12306.png, enabled=true", 334 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/neteasenews/neteasenews.js, tag=网易新闻, img-url=https://qxzy.top/rules/QuantumultX/img/neteasenews.png, enabled=true", 335 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/nio/nio.js, tag=蔚来, img-url=https://qxzy.top/rules/QuantumultX/img/nio.png, enabled=true", 336 | "*/2 0-16 * * * https://raw.githubusercontent.com/CenBoMin/QuantumultX/master/Scripts/HTT/htt_task_4.js, tag=惠头条, img-url=https://qxzy.top/rules/QuantumultX/img/htt.png, enabled=true", 337 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/noteyoudao/noteyoudao.js, tag=有道云笔记, img-url=https://qxzy.top/rules/QuantumultX/img/noteyoudao.png, enabled=true", 338 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qimao/qmnovel.js, tag=七猫小说, img-url=https://qxzy.top/rules/QuantumultX/img/qimao.png, enabled=true", 339 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qmkg/qmkg.js, tag=全民K歌, img-url=https://qxzy.top/rules/QuantumultX/img/qmkg.png, enabled=true", 340 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qqmusic/qqmusic.js, tag=QQ音乐, img-url=https://qxzy.top/rules/QuantumultX/img/qqmusic.png, enabled=true", 341 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qtt/qtt.js, tag=趣头条, img-url=https://qxzy.top/rules/QuantumultX/img/qtt.png, enabled=true", 342 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/qunar/qunar.js, tag=去哪儿, img-url=https://qxzy.top/rules/QuantumultX/img/qunar.png, enabled=true", 343 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/rrtv/rrtv.js, tag=人人视频, img-url=https://qxzy.top/rules/QuantumultX/img/rrtv.png, enabled=true", 344 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/sfexpress/sfexpress.js, tag=顺丰速运, img-url=https://qxzy.top/rules/QuantumultX/img/sfexpress.png, enabled=true", 345 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/smzdm/quanx/smzdm.js, tag=什么值得买, img-url=https://qxzy.top/rules/QuantumultX/img/smzdm.png, enabled=true", 346 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/suning/suning.js, tag=苏宁易购, img-url=https://qxzy.top/rules/QuantumultX/img/suning.png, enabled=true", 347 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/tieba/tieba.js, tag=百度签到, img-url=https://qxzy.top/rules/QuantumultX/img/baidu.png, enabled=true", 348 | "0 9 * * * https://raw.githubusercontent.com/NobyDa/Script/master/BDTieBa-DailyBonus/TieBa.js, tag=百度贴吧, img-url=https://qxzy.top/rules/QuantumultX/img/tieba.png, enabled=true", 349 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/v2ex/quanx/v2ex.js, tag=V2EX, img-url=https://qxzy.top/rules/QuantumultX/img/v2ex.png, enabled=true", 350 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/videoqq/videoqq.js, tag=腾讯视频, img-url=https://qxzy.top/rules/QuantumultX/img/videoqq.png, enabled=true", 351 | "10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wanda/wanda.js, tag=万达电影, img-url=https://qxzy.top/rules/QuantumultX/img/wanda.png, enabled=true", 352 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wmmeituan/wmmeituan.js, tag=美团外卖, img-url=https://qxzy.top/rules/QuantumultX/img/wmmeituan.png, enabled=true", 353 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wps/wps.js, tag=WPS, img-url=https://qxzy.top/rules/QuantumultX/img/wps.png, enabled=true", 354 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/wykl/wykl.js, tag=网易考拉, img-url=https://qxzy.top/rules/QuantumultX/img/wykl.png, enabled=true", 355 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/ximalaya/ximalaya.js, tag=喜马拉雅, img-url=https://qxzy.top/rules/QuantumultX/img/ximalaya.png, enabled=true", 356 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zaker/zaker.js, tag=Zaker, img-url=https://qxzy.top/rules/QuantumultX/img/zaker.png, enabled=true", 357 | "10 0 * * * https://raw.githubusercontent.com/id77/QuantumultX/master/task/yiLi.js, tag=伊利乳品, img-url=https://raw.githubusercontent.com/id77/QuantumultX/master/icon/yiLi.png, enabled=true", 358 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zimuzu/zimuzu.js, tag=字幕组, img-url=https://qxzy.top/rules/QuantumultX/img/zimuzu.png, enabled=true", 359 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zxhc/zxhc.js, tag=智行火车, img-url=https://qxzy.top/rules/QuantumultX/img/zxhc.png, enabled=true", 360 | "1 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/zsfc/zsfc.js, tag=掌上飞车, img-url=https://qxzy.top/rules/QuantumultX/img/zsfc.png, enabled=true", 361 | "10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/pagoda/pagoda.js, tag=百果园, img-url=https://qxzy.top/rules/QuantumultX/img/pagoda.png, enabled=true", 362 | "10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/ithome/ithome.js, tag=IT之家, img-url=https://qxzy.top/rules/QuantumultX/img/ithome.png, enabled=true", 363 | "10 0 * * * https://raw.githubusercontent.com/chavyleung/scripts/master/nfzm/nfzm.js, tag=nfzm-签到, img-url=https://qxzy.top/rules/QuantumultX/img/nfzm.png, enabled=true", 364 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/115/115.js, tag=115, img-url=https://qxzy.top/rules/QuantumultX/img/115.png, enabled=true", 365 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/Blibee/Blibee.js, tag=便利蜂, img-url=https://qxzy.top/rules/QuantumultX/img/Blibee.png, enabled=true", 366 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/DiDi/DiDi_new.js, tag=滴滴出行, img-url=https://qxzy.top/rules/QuantumultX/img/didi.png, enabled=true", 367 | "59 23 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/DiDi/DiDi_reward.js, tag=滴滴出行, img-url=https://qxzy.top/rules/QuantumultX/img/didi.png, enabled=true", 368 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/Naixue/Naixue.js, tag=奈雪, img-url=https://qxzy.top/rules/QuantumultX/img/Naixue.png, enabled=true", 369 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/ZMTeacher/ZMTeacher.js, tag=掌门好老师, img-url=https://qxzy.top/rules/QuantumultX/img/ZMTeacher.png, enabled=true", 370 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/elem/elemCheckIn.js, tag=饿了么-打卡领红包, img-url=https://qxzy.top/rules/QuantumultX/img/elem.png, enabled=true", 371 | "10 00 * * * https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/eleme/eleme_daily.js, tag=饿了么领豆(超级吃货卡抓ck), img-url=https://qxzy.top/rules/QuantumultX/img/elem.png, enabled=true", 372 | "00 10 * * * https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/eleme/eleme_mission.js, tag=饿了么会员任务(超级吃货卡抓ck), img-url=https://qxzy.top/rules/QuantumultX/img/elem.png, enabled=true", 373 | "1 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/Oclean/Oclean.js, tag=欧可林, img-url=https://qxzy.top/rules/QuantumultX/img/Oclean.png, enabled=true", 374 | "0 * * * * https://raw.githubusercontent.com/zZPiglet/Task/master/heybox/heybox.js, tag=小黑盒, img-url=https://qxzy.top/rules/QuantumultX/img/heybox.png, enabled=true", 375 | "0 0 0 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/sony/sonyClub.js, tag=索尼俱乐部, img-url=https://qxzy.top/rules/QuantumultX/img/SONY.png, enabled=true", 376 | "0 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/Domino/Domino_getSMS.js, tag=达美乐, img-url=https://qxzy.top/rules/QuantumultX/img/Domino.png, enabled=true", 377 | "0 7 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/MovieCalendar/MovieCalendar.js, tag=电影日历, img-url=https://qxzy.top/rules/QuantumultX/img/MovieCalendar.png, enabled=true", 378 | "0 0 * * * https://raw.githubusercontent.com/zZPiglet/Task/master/umetrip/umetrip.js, tag=航旅纵横, img-url=https://qxzy.top/rules/QuantumultX/img/umetrip.png, enabled=true", 379 | "1 0 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/elem/elemSign.js, tag=饿了么, img-url=https://qxzy.top/rules/QuantumultX/img/elem.png, enabled=true", 380 | "0 0 0,1 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/douyu/yubaSign.js, tag=斗鱼鱼吧, img-url=https://qxzy.top/rules/QuantumultX/img/douyu.png, enabled=true", 381 | "1 0 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/lol.js, tag=LOL排行查询, img-url=https://qxzy.top/rules/QuantumultX/img/lol.png, enabled=true", 382 | "5 0 * * * https://raw.githubusercontent.com/toulanboy/scripts/master/muchong/muchong.js, tag=小木虫论坛, img-url=https://qxzy.top/rules/QuantumultX/img/muchong.png, enabled=true", 383 | "0 9 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/dianshijia.js, tag=电视家, img-url=https://qxzy.top/rules/QuantumultX/img/dianshijia.png, enabled=true", 384 | "0 10 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/exchangeRate.js, tag=实时货币换算, img-url=https://qxzy.top/rules/QuantumultX/img/exchangerate.png, enabled=true", 385 | "0 9 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/lkyl.js, tag=来客有礼, img-url=https://qxzy.top/rules/QuantumultX/img/lkyl.png, enabled=true", 386 | "0 9 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/sinanews.js, tag=新浪新闻, img-url=https://qxzy.top/rules/QuantumultX/img/sinanews.png, enabled=true", 387 | "0 10 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/translate.js, tag=谷歌中英互译, img-url=https://qxzy.top/rules/QuantumultX/img/translate.png, enabled=true", 388 | "0 9 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/txnews.js, tag=腾讯新闻, img-url=https://qxzy.top/rules/QuantumultX/img/txnews.png, enabled=true", 389 | "0 9 * * * https://raw.githubusercontent.com/toulanboy/scripts/master/weibo/weibotalk.js, tag=微博超话, img-url=https://qxzy.top/rules/QuantumultX/img/weibo.png, enabled=true", 390 | "0 11 8 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/weibo.js, tag=微博签到, img-url=https://qxzy.top/rules/QuantumultX/img/weibo.png, enabled=true", 391 | "0 9 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/mydigit.js, tag=数码之家, img-url=https://qxzy.top/rules/QuantumultX/img/mydigit.png, enabled=true", 392 | "0 10 * * * https://raw.githubusercontent.com/GoodHolidays/Scripts/master/Task/trainquery.js, tag=火车票及列车时刻, img-url=https://qxzy.top/rules/QuantumultX/img/12306.png, enabled=true", 393 | "0 9 */7 * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/epic.js, tag=Epic周免, img-url=https://qxzy.top/rules/QuantumultX/img/epic.png, enabled=true", 394 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/exchange.js, tag=汇率监控, img-url=https://qxzy.top/rules/QuantumultX/img/exchangerate.png, enabled=true", 395 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/github.js, tag=GitHub, img-url=https://qxzy.top/rules/QuantumultX/img/github.png, enabled=true", 396 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/nCov.js, tag=疫情日报, img-url=https://qxzy.top/rules/QuantumultX/img/COVID-19.png, enabled=true", 397 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/psn.js, tag=PSN会免, img-url=https://qxzy.top/rules/QuantumultX/img/PSN.png, enabled=true", 398 | "0 21 * * * https://raw.githubusercontent.com/Orz-3/QuantumultX/master/telegram.js, tag=Telegram频道图片推送, img-url=https://qxzy.top/rules/QuantumultX/img/tgpic.png, enabled=true", 399 | "30 0 8-22/2 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/hotsearch/hot.js, tag=热门监控, img-url=https://qxzy.top/rules/QuantumultX/img/tgpic.png, enabled=true", 400 | "0 8 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/glados/checkin_env.js, tag=机场签到, img-url=https://qxzy.top/rules/QuantumultX/img/airport.png, enabled=true", 401 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/flow.js, tag=机场流量, img-url=https://qxzy.top/rules/QuantumultX/img/airport.png, enabled=true", 402 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/zongheng.js, tag=纵横小说, img-url=https://qxzy.top/rules/QuantumultX/img/zongheng.png, enabled=true", 403 | "0 9 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/steam.js, tag=Steam价格, img-url=https://qxzy.top/rules/QuantumultX/img/steam.png, enabled=true", 404 | "0 9 * * * https://raw.githubusercontent.com/iepngs/Script/master/lxhealth/manual.js, tag=步数上传, img-url=https://qxzy.top/rules/QuantumultX/img/lxhealth.png, enabled=true", 405 | "0 9 * * * https://raw.githubusercontent.com/iepngs/Script/master/studygolang/index.js, tag=go语言中文网, img-url=https://qxzy.top/rules/QuantumultX/img/studygolang.png, enabled=true", 406 | "29 8 * * * https://raw.githubusercontent.com/iepngs/Script/master/ctrip/index.js,tag=携程旅行, img-url=https://qxzy.top/rules/QuantumultX/img/ctrip.png, enabled=true", 407 | "0 9 * * * https://raw.githubusercontent.com/iepngs/Script/master/lxsj/index.js,tag=旅行世界购物版, img-url=https://qxzy.top/rules/QuantumultX/img/lxsj.png, enabled=true", 408 | "0 9 * * * https://ooxx.be/js/jegotrip.js, tag=无忧行, img-url=https://qxzy.top/rules/QuantumultX/img/jegotrip.png, enabled=true", 409 | "0 18 * * * https://ooxx.be/js/maoyan.js, tag=猫眼电影, img-url=https://qxzy.top/rules/QuantumultX/img/maoyan.png, enabled=true", 410 | "0 9 * * * https://ooxx.be/js/umer.js, tag=优麦医生, img-url=https://qxzy.top/rules/QuantumultX/img//umer.png, enabled=true", 411 | "25 4 8 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/jiumu/jiumu.js, tag=九木杂物社, img-url=https://qxzy.top/rules/QuantumultX/img/jiumu.png, enabled=true", 412 | "10 0 * * * https://raw.githubusercontent.com/chouchoui/QuanX/master/Scripts/nga/nga.js, tag=NGA刮墙, enabled=true, img-url=https://qxzy.top/rules/QuantumultX/img//nga.png", 413 | "0 0 6 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/nasa/nasapic.js, tag=NASA每日一图, img-url=https://qxzy.top/rules/QuantumultX/img/nasa.png, enabled=true", 414 | "0 4 8 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/funboat/funboat.js, tag=Funboat, img-url=https://qxzy.top/rules/QuantumultX/img/funboat.png, enabled=true", 415 | "5 0 * * * https://raw.githubusercontent.com/evilbutcher/Quantumult_X/master/check_in/idaily/idaily.js, tag=iDaily每日环球视野, img-url=https://qxzy.top/rules/QuantumultX/img/idaily.png, enabled=true", 416 | "0 0 0,1 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/QQVip/qqVipCheckIn.js, tag=qq会员成长值, img-url=https://qxzy.top/rules/QuantumultX/img/qqvip.png, enabled=true", 417 | "0 0 0,1 * * ? https://raw.githubusercontent.com/lowking/Scripts/master/QQPet/lkQQPet.js, tag=QQ萌宠, img-url=https://qxzy.top/rules/QuantumultX/img/QQ.png, enabled=true", 418 | "0 1 * * * https://raw.githubusercontent.com/id77/QuantumultX/master/task/thg.js, tag=太好购, img-url=https://qxzy.top/rules/QuantumultX/img/thg.png, enabled=true", 419 | "2 10 * * * https://raw.githubusercontent.com/id77/QuantumultX/master/task/163GameVip.js, tag=网易游戏会员签到, img-url=https://qxzy.top/rules/QuantumultX/img/163GameVip.png, enabled=true", 420 | "1 0 * * * https://raw.githubusercontent.com/id77/QuantumultX/master/task/geekhub.js, tag=geekhub, img-url=https://qxzy.top/rules/QuantumultX/img/geekhub.png, enabled=true", 421 | "1 0 * * * https://raw.githubusercontent.com/dompling/Script/master/birthdayCountDown/index.js, tag=生日倒计时, img-url=https://qxzy.top/rules/QuantumultX/img/birthday.png, enabled=true", 422 | "1 9 * * * https://raw.githubusercontent.com/dompling/Script/master/xiaomiyp/xiaomiyp.js, tag=小米有品, img-url=https://qxzy.top/rules/QuantumultX/img/xiaomiyp.png, enabled=true", 423 | "1 9 * * * https://raw.githubusercontent.com/dompling/Script/master/oneSay/oneSay.js, tag=每日一言, img-url=https://qxzy.top/rules/QuantumultX/img/calendar.png, enabled=true", 424 | "1 9 * * * https://raw.githubusercontent.com/dompling/Script/master/historyToday/index.js, tag=历史上的今天, img-url=https://qxzy.top/rules/QuantumultX/img/historyToday.png, enabled=true", 425 | "10 0 * * * https://raw.githubusercontent.com/dompling/Script/master/ymatou/ymatou.js, tag=洋码头, img-url=https://qxzy.top/rules/QuantumultX/img/ymatou.png, enabled=true", 426 | "1 0 * * * https://raw.githubusercontent.com/dompling/Script/master/biyao/biyao.js, tag=必要, img-url=https://qxzy.top/rules/QuantumultX/img/biyao.png, enabled=true", 427 | "0 0 * * * https://raw.githubusercontent.com/barrym-chen/Script/master/ctrip/ctrip.js, tag=携程旅行, img-url=https://qxzy.top/rules/QuantumultX/img/ctrip.png, enabled=true", 428 | "0 0 * * * https://raw.githubusercontent.com/barrym-chen/Script/master/ctrip_wx/ct_sign.js, tag=携程小程序, img-url=https://qxzy.top/rules/QuantumultX/img/ctrip.png, enabled=true", 429 | "0 0 * * * https://raw.githubusercontent.com/barrym-chen/Script/master/elong/elong_draw.js, tag=艺龙酒店, img-url=https://qxzy.top/rules/QuantumultX/img/elong.png, enabled=true", 430 | "0 0 * * * https://raw.githubusercontent.com/barrym-chen/Script/master/fcz/fcz_sign.js, tag=飞常准, img-url=https://qxzy.top/rules/QuantumultX/img/fcz.png, enabled=true", 431 | "0 0 * * * https://raw.githubusercontent.com/barrym-chen/Script/master/icbc/icbc_sign.js, tag=工银e生活, img-url=https://qxzy.top/rules/QuantumultX/img/icbc.png, enabled=true", 432 | "0 0 * * * https://raw.githubusercontent.com/barrym-chen/Script/master/tongc/tongc_sign.js, tag=同程小程序, img-url=https://qxzy.top/rules/QuantumultX/img/tongc.png, enabled=true", 433 | "0 9 * * * https://raw.githubusercontent.com/wangdelu2020/hongliyu/master/quwalk2.2.js, tag=趣走签到, img-url=https://qxzy.top/rules/QuantumultX/img/quwalk.png, enabled=true", 434 | "7 0 * * * https://raw.githubusercontent.com/iisams/Scripts/master/liwo/7days.js,tag=梨涡签到领现金, img-url=https://qxzy.top/rules/QuantumultX/img/liwo.png, enabled=true", 435 | "0 8 * * * https://github.com/congcong0806/surge-list/raw/master/Script/daysmatter.js, tag= 倒数日, img-url=https://qxzy.top/rules/QuantumultX/img/daysmatter.png, enabled=true", 436 | "0 9 * * * https://gitee.com/passerby-b/javascript/raw/master/unipay.js, tag=云闪付, img-url=https://qxzy.top/rules/QuantumultX/img/unipay.png, enabled=true", 437 | "10 0 8 * * * https://raw.githubusercontent.com/photonmang/quantumultX/master/tuhu/tuhu.js, tag=途虎养车, img-url=https://qxzy.top/rules/QuantumultX/img/tuhu.png, enabled=true", 438 | "0 0-23/1 * * * https://raw.githubusercontent.com/songyangzz/QuantumultX/master/testflight.js, tag=testflight公测监控, img-url=https://qxzy.top/rules/QuantumultX/img/testflight.png, enabled=true", 439 | "10 8-22/2 * * * https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/caiyun.js, tag=彩云天气, img-url=https://qxzy.top/rules/QuantumultX/img/caiyun.png, enabled=true" 440 | ] 441 | } 442 | --------------------------------------------------------------------------------