├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── branch_sync.yml ├── README.md ├── apk └── tachiyomi-zh.copymanga-v1.4.9.apk ├── icon └── eu.kanade.tachiyomi.extension.zh.copymanga.png ├── index.html ├── index.json ├── index.min.json └── repo.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | 40 | **Additional logs** 41 | Add logs about error 42 | -------------------------------------------------------------------------------- /.github/workflows/branch_sync.yml: -------------------------------------------------------------------------------- 1 | name: Sync Main to Repo Branch 2 | on: 3 | push: 4 | branches: [ main ] 5 | 6 | jobs: 7 | sync-repo-branch: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Checkout main 11 | uses: actions/checkout@v4 12 | with: 13 | fetch-depth: 0 14 | 15 | - name: Configure Git 16 | run: | 17 | git config --global user.name "GitHub Actions" 18 | git config --global user.email "actions@github.com" 19 | 20 | - name: Push to repo branch 21 | run: | 22 | git push origin HEAD:repo --force 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 毕竟是个码农,毕竟自己也要用。群友优先,其他随缘。 4 | 5 | # 使用方式 6 | 7 | 1. 下载插件 8 | - [Releases](https://github.com/cofedream/extensions-copymanga/releases)下载插件 9 | - 浏览-右上角-插件仓库-添加 输入以下网址`https://raw.githubusercontent.com/cofedream/extensions-copymanga/repo/index.min.json` 10 | 2. 打开Mihon-更多-设置-高级 11 | - 清除Cookie 12 | - 清除Webview缓存 13 | - 默认UA设置 14 | 15 | # 问答 16 | 17 | > Q: 插件怎么做的,是原先上改的吗? 18 | > A:不是,重新写的,群友有需求,我也用所以就简单写写。所以有些功能可能没,可能会加也可能不会 19 | > 20 | > Q: 仓库地址无效? 21 | > A: 不知道,挠头。多试几次。 22 | > 23 | > Q: 404? 24 | > A: 漫画详情页,右上角刷新 25 | 26 | # 更新日志 27 | 28 | ## v1.4.5 29 | 30 | **新增** 31 | 1. 新增翻译设置(默认关闭) 32 | 2. 新增页尾评论区设置(默认关闭) 33 | 3. 添加标签筛选功能。首次点重置刷新 34 | 35 | **修复** 36 | 37 | 1. 修复小说名称问题 38 | 2. 修复章节序号问题 39 | -------------------------------------------------------------------------------- /apk/tachiyomi-zh.copymanga-v1.4.9.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofedream/extensions-copymanga/87b661f1d4b92f3d70553981224514ca4c5e659b/apk/tachiyomi-zh.copymanga-v1.4.9.apk -------------------------------------------------------------------------------- /icon/eu.kanade.tachiyomi.extension.zh.copymanga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cofedream/extensions-copymanga/87b661f1d4b92f3d70553981224514ca4c5e659b/icon/eu.kanade.tachiyomi.extension.zh.copymanga.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | extensions-Copymanga 8 | 9 | 10 | 11 | Redirecting to https://github.com/cofedream/extensions-copymanga... 12 | 13 | 14 | -------------------------------------------------------------------------------- /index.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Tachiyomi: CopyManga", 4 | "pkg": "eu.kanade.tachiyomi.extension.zh.copymanga", 5 | "apk": "tachiyomi-zh.copymanga-v1.4.9.apk", 6 | "lang": "zh", 7 | "code": 9, 8 | "version": "1.4.9", 9 | "nsfw": 0, 10 | "sources": [ 11 | { 12 | "id": "1926243573716484096", 13 | "lang": "zh", 14 | "name": "拷贝漫画", 15 | "baseUrl": "https://www.mangacopy.com" 16 | } 17 | ] 18 | } 19 | ] -------------------------------------------------------------------------------- /index.min.json: -------------------------------------------------------------------------------- 1 | [{"name":"Tachiyomi: CopyManga","pkg":"eu.kanade.tachiyomi.extension.zh.copymanga","apk":"tachiyomi-zh.copymanga-v1.4.9.apk","lang":"zh","code":9,"version":"1.4.9","nsfw":0,"sources":[{"id":"1926243573716484096","lang":"zh","name":"拷贝漫画","baseUrl":"https://www.mangacopy.com"}]}] -------------------------------------------------------------------------------- /repo.json: -------------------------------------------------------------------------------- 1 | { 2 | "meta": { 3 | "name": "CopyManga", 4 | "website": "https://github.com/cofedream/extensions-copymanga", 5 | "signingKeyFingerprint": "76051A91677D8C900EE8F27375EAD3A4830987C6CE674E69282688F2A9CC5D5D" 6 | } 7 | } 8 | 9 | --------------------------------------------------------------------------------