diff --git a/.github/ISSUE_TEMPLATE/3_discussion_en.md b/.github/ISSUE_TEMPLATE/3_discussion_en.md new file mode 100644 index 000000000..76e021d40 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/3_discussion_en.md @@ -0,0 +1,7 @@ +--- +name: 💬 Ask a Question or Start a Discussion +about: For general discussions or questions. +labels: under discussion +--- + + \ No newline at end of file diff --git a/.github/workflows/SyncDoc.yml b/.github/workflows/SyncDoc.yml index c1f379247..01cadaf4a 100644 --- a/.github/workflows/SyncDoc.yml +++ b/.github/workflows/SyncDoc.yml @@ -16,7 +16,7 @@ jobs: TZ: Asia/Shanghai steps: - name: 检出代码 - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.QWY_SYNC_BOT_TOKEN }} fetch-depth: 0 #检查时间用. @@ -27,7 +27,7 @@ jobs: node-version: "lts/*" - name: 设置 Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: "3.12.4" @@ -58,12 +58,12 @@ jobs: - name: 刷新仓库自述中的脚本列表 run: python utils/update_scripts_list.py - - name: 修复其他语言readme中的相对路径 - run: python utils/fix_toc.py - - name: 翻译仓库自述 run: python utils/translate_force_chinese_to_lang.py + - name: 修复其他语言readme中的相对路径 + run: python utils/fix_toc.py + # `徽章信息` `帮助信息` 需要从修复toc之后提取脚本列表标记点. - name: 徽章信息 run: python utils/update_shields.py diff --git a/.github/workflows/SyncGreasyFork.yml b/.github/workflows/SyncGreasyFork.yml index a6df98e2d..d61ad721c 100644 --- a/.github/workflows/SyncGreasyFork.yml +++ b/.github/workflows/SyncGreasyFork.yml @@ -8,10 +8,10 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 设置 Python - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: "3.12.4" diff --git a/.github/workflows/eslint-on-push-pr.yml b/.github/workflows/eslint-on-push-pr.yml index 7a68144ae..f5fcee71d 100644 --- a/.github/workflows/eslint-on-push-pr.yml +++ b/.github/workflows/eslint-on-push-pr.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/issue-branch&assign.yml b/.github/workflows/issue-branch&assign.yml index 5206ff4ec..23ea39e67 100644 --- a/.github/workflows/issue-branch&assign.yml +++ b/.github/workflows/issue-branch&assign.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create branch - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.QWY_SYNC_BOT_TOKEN }} script: | @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 自动分配问题到人民的勤务员 - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.QWY_SYNC_BOT_TOKEN }} script: | diff --git a/.github/workflows/issue-reminders.yml b/.github/workflows/issue-reminders.yml index 60c62c3ed..b92c3c19b 100644 --- a/.github/workflows/issue-reminders.yml +++ b/.github/workflows/issue-reminders.yml @@ -16,4 +16,4 @@ jobs: steps: - name: check for reminder - uses: agrc/create-reminder-action@64196866d8d89ce172328d200d15afb8533b7992 # v1.1.24 + uses: agrc/create-reminder-action@8798362d131d74a70435283581f566c4986328dd # v1.1.25 diff --git a/.github/workflows/pr-assign-to-chinagodman.yml b/.github/workflows/pr-assign-to-chinagodman.yml index 7d16e67e6..7ea3039b0 100644 --- a/.github/workflows/pr-assign-to-chinagodman.yml +++ b/.github/workflows/pr-assign-to-chinagodman.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 自动分配审查和受理至人民的勤务员 - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.QWY_SYNC_BOT_TOKEN }} script: | diff --git a/.github/workflows/pr-dependency-review.yml b/.github/workflows/pr-dependency-review.yml index ae5ae5989..9f0314652 100644 --- a/.github/workflows/pr-dependency-review.yml +++ b/.github/workflows/pr-dependency-review.yml @@ -9,6 +9,6 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 'Dependency Review' - uses: actions/dependency-review-action@v4 + uses: actions/dependency-review-action@v5 diff --git a/.github/workflows/pr-merge-dependabot.yml b/.github/workflows/pr-merge-dependabot.yml index 640148266..233734892 100644 --- a/.github/workflows/pr-merge-dependabot.yml +++ b/.github/workflows/pr-merge-dependabot.yml @@ -11,7 +11,7 @@ jobs: if: github.actor == 'dependabot[bot]' steps: - name: Check and merge ⛙ - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.QWY_SYNC_BOT_TOKEN }} script: | diff --git a/.github/workflows/update-contributors.yml b/.github/workflows/update-contributors.yml index f847b1461..d505c5fa7 100644 --- a/.github/workflows/update-contributors.yml +++ b/.github/workflows/update-contributors.yml @@ -10,7 +10,7 @@ jobs: TZ: Asia/Shanghai steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.QWY_SYNC_BOT_TOKEN }} - name: Generate Contributors Images diff --git a/.github/workflows/validate-links-on-push-pr.yml b/.github/workflows/validate-links-on-push-pr.yml new file mode 100644 index 000000000..0c3fcc220 --- /dev/null +++ b/.github/workflows/validate-links-on-push-pr.yml @@ -0,0 +1,19 @@ +name: Validate links on push + PR + +on: + #push: + #pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + linkinator: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v7 + - uses: JustinBeckwith/linkinator-action@v2.4.2 + with: + paths: "**/*.md" + statusCodes: '{ "408": "skip", "429": "skip", "503": "skip" }' diff --git a/.gitignore b/.gitignore index 1a7616675..8745dce2f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,4 @@ node_modules/ __pycache__/ .history/ changelog.config.js -commitlint.config.js tempCodeRunnerFile.* diff --git a/LICENSE.md b/LICENSE.md index 6b0686636..3375ba0c6 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -11,7 +11,7 @@ # 🏛️ MIT 许可协议 -[人民的勤务员](https://github.com/ChinaGodMan) 2024-2025 版权所有 © , 保留所有权利。 +[人民的勤务员](https://github.com/ChinaGodMan) 2024-2026 版权所有 © , 保留所有权利。 特此免费授予任何获得本软件及相关文档文件(“软件”)副本的人员, 允许其不受限制地处理软件,包括但不限于使用、复制、修改、合并、 diff --git a/assets/lib/totp-generator.js b/assets/lib/totp-generator.js index 531989453..bca6f719a 100644 --- a/assets/lib/totp-generator.js +++ b/assets/lib/totp-generator.js @@ -3,7 +3,7 @@ // @namespace https://github.com/ChinaGodMan/UserScripts // @version 2024/10/07 // @description https://greasyfork.org/zh-CN/scripts/502291 脚本使用 -// @author 人民的勤务员 +// @author 人民的勤务员 // @license MIT // @supportURL https://github.com/ChinaGodMan/UserScripts/issues // @homepageURL https://github.com/ChinaGodMan/UserScripts diff --git a/assets/lib/video-list.js b/assets/lib/video-list.js index c63d6dcc0..c174e8f6c 100644 --- a/assets/lib/video-list.js +++ b/assets/lib/video-list.js @@ -284,7 +284,7 @@ function generateJsonIndexContent(finalData) {

备份数量:

备份时间:

备份地址: 访问

-

联系作者: 人民的勤务员

+

联系作者: 人民的勤务员

diff --git a/bilibili-liveroom-filter/README.md b/bilibili-liveroom-filter/README.md index e01ba1b7a..ff4aac8a5 100644 --- a/bilibili-liveroom-filter/README.md +++ b/bilibili-liveroom-filter/README.md @@ -38,7 +38,7 @@ Gmail - +
推荐使用:
Support
@@ -47,7 +47,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -109,7 +109,7 @@ - + ## 使用帮助 @@ -123,14 +123,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/bilibili-video-downloader/README.md b/bilibili-video-downloader/README.md index 7f75d1e3d..488e8efbc 100644 --- a/bilibili-video-downloader/README.md +++ b/bilibili-video-downloader/README.md @@ -38,7 +38,7 @@ Gmail - +
推荐使用:
Support
@@ -47,7 +47,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -161,7 +161,7 @@ - + ## 使用帮助 @@ -175,14 +175,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-code-hightlight/README.md b/chatgpt-code-hightlight/README.md index a4b516965..76b5800ce 100644 --- a/chatgpt-code-hightlight/README.md +++ b/chatgpt-code-hightlight/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -98,7 +98,7 @@ 3. 查看代码高亮效果 - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -110,7 +110,7 @@ - + ## 使用帮助 @@ -124,13 +124,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -142,7 +142,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -208,7 +208,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -246,7 +246,7 @@ - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-code-hightlight/README_en.md b/chatgpt-code-hightlight/README_en.md index 845afa6ca..6f50e86cb 100644 --- a/chatgpt-code-hightlight/README_en.md +++ b/chatgpt-code-hightlight/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -98,7 +98,7 @@ support [Highlight.js](https://highlightjs.org/) All 192 One language,and Chat 3. View code highlighting effect - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -110,7 +110,7 @@ support [Highlight.js](https://highlightjs.org/) All 192 One language,and Chat - + ## Help @@ -124,13 +124,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -142,7 +142,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -159,7 +159,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -181,7 +181,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -190,7 +190,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -208,7 +208,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -225,7 +225,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -235,7 +235,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -246,7 +246,7 @@ Recommended browser and script manager: - +

More user scripts /Back to top↑

diff --git a/chatgpt-code-hightlight/README_ko.md b/chatgpt-code-hightlight/README_ko.md index f9a336c68..40940cc64 100644 --- a/chatgpt-code-hightlight/README_ko.md +++ b/chatgpt-code-hightlight/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -98,7 +98,7 @@ 3. 코드 강조 표시 효과를 봅니다 - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -110,7 +110,7 @@ - + ## 돕다 @@ -124,13 +124,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -142,7 +142,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -159,7 +159,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -181,7 +181,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -190,7 +190,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -208,7 +208,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -225,7 +225,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -235,7 +235,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -246,7 +246,7 @@ - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-code-hightlight/README_vi.md b/chatgpt-code-hightlight/README_vi.md index ccfa7bb81..a6c99fd94 100644 --- a/chatgpt-code-hightlight/README_vi.md +++ b/chatgpt-code-hightlight/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -98,7 +98,7 @@ vì ChatGPT Thêm tô sáng cho tất cả các mã ngôn ngữ được viết 3. Xem hiệu ứng làm nổi bật mã - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -110,7 +110,7 @@ vì ChatGPT Thêm tô sáng cho tất cả các mã ngôn ngữ được viết - + ## Giúp đỡ @@ -124,13 +124,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -142,7 +142,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -159,7 +159,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -181,7 +181,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -190,7 +190,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -208,7 +208,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -225,7 +225,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -235,7 +235,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -246,7 +246,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-code-hightlight/README_zh-TW.md b/chatgpt-code-hightlight/README_zh-TW.md index df362fc53..1fecec8de 100644 --- a/chatgpt-code-hightlight/README_zh-TW.md +++ b/chatgpt-code-hightlight/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -98,7 +98,7 @@ 3. 查看代碼高亮效果 - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -110,7 +110,7 @@ - + ## 使用幫助 @@ -124,13 +124,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -142,7 +142,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -208,7 +208,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -246,7 +246,7 @@ - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-code-styling/README.md b/chatgpt-code-styling/README.md index c16e9ca47..4ffbe77ea 100644 --- a/chatgpt-code-styling/README.md +++ b/chatgpt-code-styling/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -72,7 +72,7 @@ 让 ChatGPT 输出的代码框字体变小 - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -84,7 +84,7 @@ - + ## 使用帮助 @@ -98,14 +98,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -118,7 +118,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -136,7 +136,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -169,7 +169,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -188,7 +188,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -228,7 +228,7 @@ - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-code-styling/README_en.md b/chatgpt-code-styling/README_en.md index a3a6f64cf..e2f0f7d9a 100644 --- a/chatgpt-code-styling/README_en.md +++ b/chatgpt-code-styling/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -72,7 +72,7 @@ let ChatGPT The output code box font becomes smaller - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -84,7 +84,7 @@ let ChatGPT The output code box font becomes smaller - + ## Help @@ -98,14 +98,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -118,7 +118,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -136,7 +136,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -159,7 +159,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -169,7 +169,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -188,7 +188,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -217,7 +217,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - +

More user scripts /Back to top↑

diff --git a/chatgpt-code-styling/README_ko.md b/chatgpt-code-styling/README_ko.md index 494bf3bc1..58c8fb199 100644 --- a/chatgpt-code-styling/README_ko.md +++ b/chatgpt-code-styling/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -72,7 +72,7 @@ 허락하다 ChatGPT 출력 코드 박스 글꼴이 작아집니다 - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -84,7 +84,7 @@ - + ## 돕다 @@ -98,14 +98,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -118,7 +118,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -136,7 +136,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -159,7 +159,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -169,7 +169,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -188,7 +188,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -206,7 +206,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -217,7 +217,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -228,7 +228,7 @@ - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-code-styling/README_vi.md b/chatgpt-code-styling/README_vi.md index ebc433635..8b4070715 100644 --- a/chatgpt-code-styling/README_vi.md +++ b/chatgpt-code-styling/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -72,7 +72,7 @@ cho phép ChatGPT Phông chữ hộp mã đầu ra trở nên nhỏ hơn - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -84,7 +84,7 @@ cho phép ChatGPT Phông chữ hộp mã đầu ra trở nên nhỏ hơn - + ## Giúp đỡ @@ -98,14 +98,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -118,7 +118,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -136,7 +136,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -159,7 +159,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -169,7 +169,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -188,7 +188,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -206,7 +206,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -217,7 +217,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -228,7 +228,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-code-styling/README_zh-TW.md b/chatgpt-code-styling/README_zh-TW.md index c8a2cd22a..89c3eeef4 100644 --- a/chatgpt-code-styling/README_zh-TW.md +++ b/chatgpt-code-styling/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -72,7 +72,7 @@ 讓 ChatGPT 輸出的代碼框字體變小 - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -84,7 +84,7 @@ - + ## 使用幫助 @@ -98,14 +98,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -118,7 +118,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -136,7 +136,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -169,7 +169,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -188,7 +188,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -228,7 +228,7 @@ - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-code-tools/README.md b/chatgpt-code-tools/README.md index fcedd8b26..0b9f8bafc 100644 --- a/chatgpt-code-tools/README.md +++ b/chatgpt-code-tools/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -126,7 +126,7 @@ - + ## 使用帮助 @@ -140,14 +140,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-code-tools/README_en.md b/chatgpt-code-tools/README_en.md index e9504e4a7..585f70f17 100644 --- a/chatgpt-code-tools/README_en.md +++ b/chatgpt-code-tools/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -126,7 +126,7 @@ Code block addition“Save the code”and“Copy the code”Button,To quickly - + ## Help @@ -140,14 +140,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +

More user scripts /Back to top↑

diff --git a/chatgpt-code-tools/README_ko.md b/chatgpt-code-tools/README_ko.md index 6974ea8c6..08b73b48e 100644 --- a/chatgpt-code-tools/README_ko.md +++ b/chatgpt-code-tools/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -126,7 +126,7 @@ - + ## 돕다 @@ -140,14 +140,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-code-tools/README_vi.md b/chatgpt-code-tools/README_vi.md index 203e328e8..5507d2e04 100644 --- a/chatgpt-code-tools/README_vi.md +++ b/chatgpt-code-tools/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -126,7 +126,7 @@ Bổ sung khối mã“Lưu mã”Và“Sao chép mã”Cái nút,Để nhanh - + ## Giúp đỡ @@ -140,14 +140,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-code-tools/README_zh-TW.md b/chatgpt-code-tools/README_zh-TW.md index 1aa883e32..ab3359bee 100644 --- a/chatgpt-code-tools/README_zh-TW.md +++ b/chatgpt-code-tools/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -126,7 +126,7 @@ - + ## 使用幫助 @@ -140,14 +140,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-copy-code-button/README.md b/chatgpt-copy-code-button/README.md index a624689be..871f0c489 100644 --- a/chatgpt-copy-code-button/README.md +++ b/chatgpt-copy-code-button/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -130,7 +130,7 @@ ![Snipaste_2024-09-22_07-32-11.png](https://s2.loli.net/2024/09/22/VexqWUEA6GYPQjN.png) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -143,7 +143,7 @@ - + ## 使用帮助 @@ -157,14 +157,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -177,7 +177,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -195,7 +195,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -218,7 +218,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -247,7 +247,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -276,7 +276,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -287,7 +287,7 @@ - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-copy-code-button/README_en.md b/chatgpt-copy-code-button/README_en.md index e2ff3ae77..0210ed71d 100644 --- a/chatgpt-copy-code-button/README_en.md +++ b/chatgpt-copy-code-button/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -130,7 +130,7 @@ The user script is [chatgpt.com](https://chatgpt.com) and [share.nezhagpt.cloud] ![Snipaste_2024-09-22_07-32-11.png](https://s2.loli.net/2024/09/22/VexqWUEA6GYPQjN.png) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -143,7 +143,7 @@ The user script is [chatgpt.com](https://chatgpt.com) and [share.nezhagpt.cloud] - + ## Help @@ -157,14 +157,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -177,7 +177,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -195,7 +195,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -218,7 +218,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -247,7 +247,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -265,7 +265,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -276,7 +276,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -287,7 +287,7 @@ Recommended browser and script manager: - +

More user scripts /back to top↑

diff --git a/chatgpt-copy-code-button/README_ko.md b/chatgpt-copy-code-button/README_ko.md index 4cc36f8eb..0f3230268 100644 --- a/chatgpt-copy-code-button/README_ko.md +++ b/chatgpt-copy-code-button/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -130,7 +130,7 @@ ![Snipaste_2024-09-22_07-32-11.png](https://s2.loli.net/2024/09/22/VexqWUEA6GYPQjN.png) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -143,7 +143,7 @@ - + ## 돕다 @@ -157,14 +157,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -177,7 +177,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -195,7 +195,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -218,7 +218,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -228,7 +228,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -247,7 +247,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -265,7 +265,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -276,7 +276,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -287,7 +287,7 @@ - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-copy-code-button/README_vi.md b/chatgpt-copy-code-button/README_vi.md index 63a788ffb..e886f1b64 100644 --- a/chatgpt-copy-code-button/README_vi.md +++ b/chatgpt-copy-code-button/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -130,7 +130,7 @@ Tập lệnh người dùng là [chatgpt.com](https://chatgpt.com) Và [share.ne ![Snipaste_2024-09-22_07-32-11.png](https://s2.loli.net/2024/09/22/VexqWUEA6GYPQjN.png) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -143,7 +143,7 @@ Tập lệnh người dùng là [chatgpt.com](https://chatgpt.com) Và [share.ne - + ## Giúp đỡ @@ -157,14 +157,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -177,7 +177,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -195,7 +195,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -218,7 +218,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -228,7 +228,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -265,7 +265,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -276,7 +276,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -287,7 +287,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-copy-code-button/README_zh-TW.md b/chatgpt-copy-code-button/README_zh-TW.md index 06aacb77c..58cc704b8 100644 --- a/chatgpt-copy-code-button/README_zh-TW.md +++ b/chatgpt-copy-code-button/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -130,7 +130,7 @@ ![Snipaste_2024-09-22_07-32-11.png](https://s2.loli.net/2024/09/22/VexqWUEA6GYPQjN.png) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -143,7 +143,7 @@ - + ## 使用幫助 @@ -157,14 +157,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -177,7 +177,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -195,7 +195,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -218,7 +218,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -247,7 +247,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -276,7 +276,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -287,7 +287,7 @@ - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-counter/README.md b/chatgpt-counter/README.md index 0451d2347..7d9d5cc8b 100644 --- a/chatgpt-counter/README.md +++ b/chatgpt-counter/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -74,13 +74,13 @@ ![Snipaste_2024-09-01_10-05-11.png](https://s2.loli.net/2024/09/01/uJZIDbie6fdmOQH.png) - + ## 描述 ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT 的输入框添加一个字符计数器,限制为 32732 个字符。这个脚本可以帮助用户在输入时实时查看已输入字符的数量,并在超出限制时给出视觉提示。. - + ## 功能 @@ -90,7 +90,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - 当字符数接近限制时,计数器文本颜色变为绿色,显示警告。 - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -102,14 +102,14 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + ## Thanks 修改自用户 [Emree.el](https://greasyfork.org/zh-CN/users/1297357)的脚本 [ChatGPT Character Counter Limit (CCCL)](https://greasyfork.org/scripts/505802) - + ## 使用帮助 @@ -123,14 +123,14 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -143,7 +143,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找网页相关脚本 > @@ -161,7 +161,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找GitHub相关脚本 > @@ -184,7 +184,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找Google相关脚本 > @@ -194,7 +194,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -213,7 +213,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找成人脚本 > @@ -231,7 +231,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找自动翻译 > @@ -242,7 +242,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - + > ### 🔍你可能在找社交媒体脚本 > @@ -253,7 +253,7 @@ ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-counter/README_en.md b/chatgpt-counter/README_en.md index e3dfe617a..f0dd73f10 100644 --- a/chatgpt-counter/README_en.md +++ b/chatgpt-counter/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -74,7 +74,7 @@ - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -86,7 +86,7 @@ - + ## Help @@ -100,13 +100,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking for web-related scripts > @@ -124,7 +124,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -137,7 +137,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -160,7 +160,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -170,7 +170,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -189,7 +189,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -207,7 +207,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -218,7 +218,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -229,7 +229,7 @@ Recommended browser and script manager: - +

More user scripts /back to top↑

diff --git a/chatgpt-counter/README_ko.md b/chatgpt-counter/README_ko.md index 1cbf2b694..f8c5222f5 100644 --- a/chatgpt-counter/README_ko.md +++ b/chatgpt-counter/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -74,13 +74,13 @@ ![Snipaste_2024-09-01_10-05-11.png](https://s2.loli.net/2024/09/01/uJZIDbie6fdmOQH.png) - + ## 설명하다 ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 ChatGPT 입력 상자를 추가하십시오캐릭터계수기,제한 32732 캐릭터。이 스크립트는 사용자가 입력 할 때 실시간으로 입력 한 문자 수를 볼 수 있도록 도와줍니다.,제한이 초과 될 때 시각적 프롬프트를 제공합니다。. - + ## 기능 @@ -90,7 +90,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - 문자 수가 한계에 가까운 경우,카운터 텍스트 색상은 녹색으로 변경됩니다,경고를 보여주십시오。 - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -102,14 +102,14 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + ## Thanks 사용자로부터 수정 [Emree.el](https://greasyfork.org/zh-CN/users/1297357)스크립트 [ChatGPT Character Counter Limit (CCCL)](https://greasyfork.org/scripts/505802) - + ## 돕다 @@ -123,14 +123,14 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -143,7 +143,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -161,7 +161,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -184,7 +184,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -194,7 +194,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -213,7 +213,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -231,7 +231,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -242,7 +242,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -253,7 +253,7 @@ ChatGPT Character Counter Limit (CCCL) 사용자 스크립트입니다,목표 - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-counter/README_vi.md b/chatgpt-counter/README_vi.md index 2e0c6b229..ce257b38b 100644 --- a/chatgpt-counter/README_vi.md +++ b/chatgpt-counter/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -74,13 +74,13 @@ ![Snipaste_2024-09-01_10-05-11.png](https://s2.loli.net/2024/09/01/uJZIDbie6fdmOQH.png) - + ## mô tả ChatGPT Character Counter Limit (CCCL) Đó là một tập lệnh người dùng,Nhằm mục đích ChatGPT Thêm một hộp đầu vào vàoKý tựquầy tính tiền,Giới hạn 32732 Ký tự。Tập lệnh này giúp người dùng xem số lượng ký tự được nhập vào thời gian thực khi nhập,Và đưa ra lời nhắc trực quan khi vượt quá giới hạn。. - + ## Chức năng @@ -90,7 +90,7 @@ ChatGPT Character Counter Limit (CCCL) Đó là một tập lệnh người dùn - Khi số lượng ký tự gần với giới hạn,Màu văn bản truy cập thay đổi thành màu xanh lá cây,Hiển thị cảnh báo。 - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -102,14 +102,14 @@ ChatGPT Character Counter Limit (CCCL) Đó là một tập lệnh người dùn - + ## Thanks Sửa đổi từ người dùng [Emree.el](https://greasyfork.org/zh-CN/users/1297357)Kịch bản [ChatGPT Character Counter Limit (CCCL)](https://greasyfork.org/scripts/505802) - + ## Giúp đỡ @@ -123,14 +123,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -143,7 +143,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -161,7 +161,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -184,7 +184,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -194,7 +194,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -213,7 +213,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -231,7 +231,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -242,7 +242,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -253,7 +253,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-counter/README_zh-TW.md b/chatgpt-counter/README_zh-TW.md index 83a1a1bb1..1e7994f90 100644 --- a/chatgpt-counter/README_zh-TW.md +++ b/chatgpt-counter/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -74,13 +74,13 @@ ![Snipaste_2024-09-01_10-05-11.png](https://s2.loli.net/2024/09/01/uJZIDbie6fdmOQH.png) - + ## 描述 ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT 的输入框添加一個字符计数器,限制為 32732 個字符。這個腳本可以幫助用戶在輸入時實時查看已輸入字符的數量,並在超出限制時給出視覺提示。. - + ## 功能 @@ -90,7 +90,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - 當字符數接近限制時,計數器文本顏色變為綠色,顯示警告。 - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -102,14 +102,14 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + ## Thanks 修改自用戶 [Emree.el](https://greasyfork.org/zh-CN/users/1297357)的腳本 [ChatGPT Character Counter Limit (CCCL)](https://greasyfork.org/scripts/505802) - + ## 使用幫助 @@ -123,14 +123,14 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -143,7 +143,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找網頁相關腳本 > @@ -161,7 +161,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找GitHub相關腳本 > @@ -184,7 +184,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找Google相關腳本 > @@ -194,7 +194,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -213,7 +213,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找成人腳本 > @@ -231,7 +231,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找自動翻譯 > @@ -242,7 +242,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - + > ### 🔍你可能在找社交媒體腳本 > @@ -253,7 +253,7 @@ ChatGPT Character Counter Limit (CCCL) 是一個用戶腳本,旨在為 ChatGPT - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-easy-management/README.md b/chatgpt-easy-management/README.md index 7bdcd66c3..1214137f4 100644 --- a/chatgpt-easy-management/README.md +++ b/chatgpt-easy-management/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -96,7 +96,7 @@ ChatGPT 批量删除会话功能。管理会话数据,以及在网页中提供 - + ## 使用帮助 @@ -110,14 +110,14 @@ ChatGPT 批量删除会话功能。管理会话数据,以及在网页中提供 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-easy-management/README_en.md b/chatgpt-easy-management/README_en.md index 61e362d58..c8daf391c 100644 --- a/chatgpt-easy-management/README_en.md +++ b/chatgpt-easy-management/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -96,7 +96,7 @@ ChatGPT Batch delete session function。Manage session data,and provide delete - + ## Help @@ -110,14 +110,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +

More user scripts /Back to top↑

diff --git a/chatgpt-easy-management/README_ko.md b/chatgpt-easy-management/README_ko.md index d19871de6..07b3059a6 100644 --- a/chatgpt-easy-management/README_ko.md +++ b/chatgpt-easy-management/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -96,7 +96,7 @@ ChatGPT 배치 삭제 세션 기능。세션 데이터를 관리합니다,웹 - + ## 돕다 @@ -110,14 +110,14 @@ ChatGPT 배치 삭제 세션 기능。세션 데이터를 관리합니다,웹 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-easy-management/README_vi.md b/chatgpt-easy-management/README_vi.md index 968a25410..bbf148195 100644 --- a/chatgpt-easy-management/README_vi.md +++ b/chatgpt-easy-management/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -96,7 +96,7 @@ ChatGPT Chức năng phiên xóa hàng loạt。Quản lý dữ liệu phiên, - + ## Giúp đỡ @@ -110,14 +110,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-easy-management/README_zh-TW.md b/chatgpt-easy-management/README_zh-TW.md index 8ecb2ed6a..f3ec165e1 100644 --- a/chatgpt-easy-management/README_zh-TW.md +++ b/chatgpt-easy-management/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -96,7 +96,7 @@ ChatGPT 批量刪除會話功能。管理會話數據,以及在網頁中提供 - + ## 使用幫助 @@ -110,14 +110,14 @@ ChatGPT 批量刪除會話功能。管理會話數據,以及在網頁中提供 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-insert-text/README.md b/chatgpt-insert-text/README.md index e5613f280..db5fc57d7 100644 --- a/chatgpt-insert-text/README.md +++ b/chatgpt-insert-text/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -113,7 +113,7 @@ ChatGPT 输入框、文本区域或可编辑内容区域,通过预设的快捷 - + ## 使用帮助 @@ -127,14 +127,14 @@ ChatGPT 输入框、文本区域或可编辑内容区域,通过预设的快捷 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-insert-text/README_en.md b/chatgpt-insert-text/README_en.md index 3a0077fb8..f27ff3450 100644 --- a/chatgpt-insert-text/README_en.md +++ b/chatgpt-insert-text/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -113,7 +113,7 @@ ChatGPT Input box、Text area or editable content area,Quickly insert specific - + ## Help @@ -127,14 +127,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +

More user scripts /Back to top↑

diff --git a/chatgpt-insert-text/README_ko.md b/chatgpt-insert-text/README_ko.md index d419181c6..327067fea 100644 --- a/chatgpt-insert-text/README_ko.md +++ b/chatgpt-insert-text/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -113,7 +113,7 @@ ChatGPT 입력 상자、텍스트 영역 또는 편집 가능한 콘텐츠 영 - + ## 돕다 @@ -127,14 +127,14 @@ ChatGPT 입력 상자、텍스트 영역 또는 편집 가능한 콘텐츠 영 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-insert-text/README_vi.md b/chatgpt-insert-text/README_vi.md index a8682ad8f..11897d4a2 100644 --- a/chatgpt-insert-text/README_vi.md +++ b/chatgpt-insert-text/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -113,7 +113,7 @@ ChatGPT Hộp đầu vào、Khu vực văn bản hoặc khu vực nội dung có - + ## Giúp đỡ @@ -127,14 +127,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-insert-text/README_zh-TW.md b/chatgpt-insert-text/README_zh-TW.md index 4ddeb6c0d..6eb82a776 100644 --- a/chatgpt-insert-text/README_zh-TW.md +++ b/chatgpt-insert-text/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -113,7 +113,7 @@ ChatGPT 輸入框、文本區域或可編輯內容區域,通過預設的快捷 - + ## 使用幫助 @@ -127,14 +127,14 @@ ChatGPT 輸入框、文本區域或可編輯內容區域,通過預設的快捷 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-plus/README.md b/chatgpt-plus/README.md index cfcbea654..8365269b2 100644 --- a/chatgpt-plus/README.md +++ b/chatgpt-plus/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -80,24 +80,24 @@ ![1.png](https://s2.loli.net/2024/08/24/BEyFS87bgMjJX1R.png) - + # ChatGPT Chat Fold Script & MAXWidth - + ## 简介 `ChatGPT Chat Fold Script & MAXWidth` 是一个用于在 ChatGPT 中折叠较长的“你”发送的消息并设置最大宽度的脚本。这可以帮助你更好地管理长消息,并改善界面布局。 - + ## 功能 - **折叠长消息**:自动折叠由你发送的长消息,节省屏幕空间。 - **设置最大宽度**:允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。 - + ## 使用方法 @@ -105,14 +105,14 @@ - 你可以点击消息旁边的 “折叠” 按钮来手动折叠或展开消息。 - 在设置中调整聊天窗口的最大宽度。 - + ## 更新日志 - **v0.1**:初始版本,添加折叠功能和最大宽度设置。 - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -124,14 +124,14 @@ - + ## 贡献 如果你有任何建议或发现了问题,请通过 GitHub 或者GreasyFork 提交问题。 - + ## 使用帮助 @@ -145,14 +145,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -183,7 +183,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -264,7 +264,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -275,7 +275,7 @@ - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-plus/README_en.md b/chatgpt-plus/README_en.md index 75402f3e9..1c7f8b2b1 100644 --- a/chatgpt-plus/README_en.md +++ b/chatgpt-plus/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -78,24 +78,24 @@ - + # ChatGPT Chat Fold Script & MAXWidth - + ## Introduction `ChatGPT Chat Fold Script & MAXWidth` is one used in ChatGPT The middle fold is longer“you”Script that sends the message and sets the maximum width。thisCanbyhelphelpyouEvengoodlandTubereasonlongremovebreath,and improve the interface layout。 - + ## Function - **Collapse long messages**:Automatically collapse long messages sent by you,Save screen space。 - **Set maximum width**:Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。 - + ## How to use @@ -103,13 +103,13 @@ - You can click next to the message “fold” according tobuttonComehandmovefoldorexhibitionopenremovebreath。 - Adjust the maximum width of the chat window in settings。 - + ## Change log - **v0.1**:initial version,Add folding functionality and max-width settings。 - + ## contribute @@ -118,7 +118,7 @@ If you have any suggestions or find a problem,Please pass GitHub orGreasyFork ![1.png](https://s2.loli.net/2024/08/24/BEyFS87bgMjJX1R.png) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -130,7 +130,7 @@ If you have any suggestions or find a problem,Please pass GitHub orGreasyFork - + ## Help @@ -144,14 +144,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -164,7 +164,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -182,7 +182,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -205,7 +205,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -215,7 +215,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -234,7 +234,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -263,7 +263,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -274,7 +274,7 @@ Recommended browser and script manager: - +

More user scripts /back to top↑

diff --git a/chatgpt-plus/README_ko.md b/chatgpt-plus/README_ko.md index 3769b458d..4cb8f47df 100644 --- a/chatgpt-plus/README_ko.md +++ b/chatgpt-plus/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -80,24 +80,24 @@ ![1.png](https://s2.loli.net/2024/08/24/BEyFS87bgMjJX1R.png) - + # ChatGPT Chat Fold Script & MAXWidth - + ## 소개 `ChatGPT Chat Fold Script & MAXWidth` 사용 중입니다 ChatGPT 중간 정도 더 길다“너”메시지를 보내고 최대 너비 스크립트를 설정하십시오。이것은 긴 메시지를 더 잘 관리하는 데 도움이 될 수 있습니다,인터페이스 레이아웃을 향상시킵니다。 - + ## 기능 - **긴 메시지를 접 사람**:당신이 보낸 긴 메시지를 자동으로 무너 뜨립니다,화면 공간을 저장하십시오。 - **최대 너비를 설정합니다**:채팅 창의 최대 너비를 설정할 수 있습니다.,긴 메시지가 지정된 범위를 초과하지 않습니다。 - + ## 사용 방법 @@ -105,14 +105,14 @@ - 메시지 옆을 클릭 할 수 있습니다 “겹” 메시지가 수동으로 붕괴되거나 확장되는 버튼。 - 설정에서 채팅 창의 최대 너비 조정。 - + ## 로그 업데이트 - **v0.1**:초기 버전,접이식 기능과 최대 너비 설정을 추가하십시오。 - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -124,14 +124,14 @@ - + ## 기여하다 제안이 있거나 문제가있는 경우,제발 통과하십시오 GitHub 또는GreasyFork 질문을 제출하십시오。 - + ## 돕다 @@ -145,14 +145,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -165,7 +165,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -183,7 +183,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -206,7 +206,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -216,7 +216,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -235,7 +235,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -253,7 +253,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -264,7 +264,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -275,7 +275,7 @@ - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-plus/README_vi.md b/chatgpt-plus/README_vi.md index 16d71784d..e59f4ee06 100644 --- a/chatgpt-plus/README_vi.md +++ b/chatgpt-plus/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -78,24 +78,24 @@ - + # ChatGPT Chat Fold Script & MAXWidth - + ## Giới thiệu `ChatGPT Chat Fold Script & MAXWidth` là một cái được sử dụng trong ChatGPT Nếp gấp ở giữa dài hơn“Bạn”Tập lệnh gửi tin nhắn và đặt độ rộng tối đa。cái nàyCó thểquagiúp đỡgiúp đỡBạnThậm chíTốtđấtỐnglý dodàidi dờihơi thở,và cải thiện bố cục giao diện。 - + ## Chức năng - **Thu gọn tin nhắn dài**:Tự động thu gọn các tin nhắn dài do bạn gửi,Tiết kiệm không gian màn hình。 - **Đặt chiều rộng tối đa**:Cho phép bạn đặt độ rộng tối đa của cửa sổ trò chuyện,Giữ tin nhắn dài không vượt quá phạm vi được chỉ định。 - + ## Cách sử dụng @@ -103,13 +103,13 @@ - Bạn có thể bấm vào bên cạnh tin nhắn “nếp gấp” theocái nútĐếntaydi chuyểnnếp gấphoặctriển lãmmởdi dờihơi thở。 - Điều chỉnh độ rộng tối đa của cửa sổ trò chuyện trong cài đặt。 - + ## Nhật ký thay đổi - **v0.1**:phiên bản đầu tiên,Thêm chức năng gấp và cài đặt chiều rộng tối đa。 - + ## đóng góp @@ -117,16 +117,16 @@ Nếu bạn có bất kỳ đề xuất hoặc tìm thấy một vấn đề,X ![1.png](https://s2.loli.net/2024/08/24/BEyFS87bgMjJX1R.png) - + ## làmsử dụnggiúp đỡgiúp đỡ - + ## Giúp đỡ - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -138,7 +138,7 @@ Nếu bạn có bất kỳ đề xuất hoặc tìm thấy một vấn đề,X - + ## Giúp đỡ @@ -152,14 +152,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -172,7 +172,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -190,7 +190,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -213,7 +213,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -223,7 +223,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -242,7 +242,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -260,7 +260,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -271,7 +271,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -282,7 +282,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +

Nhiều tập lệnh người dùng hơn /trở lại đầu trang↑

diff --git a/chatgpt-plus/README_zh-TW.md b/chatgpt-plus/README_zh-TW.md index 2b3cd0afb..fcc05387b 100644 --- a/chatgpt-plus/README_zh-TW.md +++ b/chatgpt-plus/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -78,24 +78,24 @@ - + # ChatGPT Chat Fold Script & MAXWidth - + ## 簡介 `ChatGPT Chat Fold Script & MAXWidth` 是一個用於在 ChatGPT 中折疊較長的“你”發送的訊息並設定最大寬度的腳本。這可以幫助你更好地管理長訊息,並改善介面佈局。 - + ## 功能 - **折疊長訊息**:自動折疊由你發送的長訊息,節省螢幕空間。 - **設定最大寬度**:允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。 - + ## 使用方法 @@ -103,13 +103,13 @@ - 你可以點擊訊息旁邊的 “折疊” 按钮来手动折疊或展开消息。 - 在設定中調整聊天視窗的最大寬度。 - + ## 更新日誌 - **v0.1**:初始版本,添加折疊功能和最大寬度設置。 - + ## 貢獻 @@ -118,7 +118,7 @@ ![1.png](https://s2.loli.net/2024/08/24/BEyFS87bgMjJX1R.png) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -130,7 +130,7 @@ - + ## 使用幫助 @@ -144,14 +144,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -164,7 +164,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -182,7 +182,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -215,7 +215,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -234,7 +234,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -252,7 +252,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -274,7 +274,7 @@ - +

更多用戶腳本 /回到頂部↑

diff --git a/chatgpt-save-conversation/README.md b/chatgpt-save-conversation/README.md index e58d31f1d..e67aefe98 100644 --- a/chatgpt-save-conversation/README.md +++ b/chatgpt-save-conversation/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -148,7 +148,7 @@ - + ## 使用帮助 @@ -162,14 +162,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/chatgpt-save-conversation/README_en.md b/chatgpt-save-conversation/README_en.md index 2fc2c735f..e2765dd8f 100644 --- a/chatgpt-save-conversation/README_en.md +++ b/chatgpt-save-conversation/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -148,7 +148,7 @@ This script is suitable for users who need to quickly save web chat history。 - + ## Help @@ -162,14 +162,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +

More user scripts /Back to top↑

diff --git a/chatgpt-save-conversation/README_ko.md b/chatgpt-save-conversation/README_ko.md index 74fd34652..d54125d8b 100644 --- a/chatgpt-save-conversation/README_ko.md +++ b/chatgpt-save-conversation/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -148,7 +148,7 @@ - + ## 돕다 @@ -162,14 +162,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/chatgpt-save-conversation/README_vi.md b/chatgpt-save-conversation/README_vi.md index cc75fda80..1bc7543e3 100644 --- a/chatgpt-save-conversation/README_vi.md +++ b/chatgpt-save-conversation/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -148,7 +148,7 @@ Kịch bản này phù hợp cho người dùng cần nhanh chóng lưu lịch s - + ## Giúp đỡ @@ -162,14 +162,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/chatgpt-save-conversation/README_zh-TW.md b/chatgpt-save-conversation/README_zh-TW.md index 3bb1f5d51..f4320bf77 100644 --- a/chatgpt-save-conversation/README_zh-TW.md +++ b/chatgpt-save-conversation/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -148,7 +148,7 @@ - + ## 使用幫助 @@ -162,14 +162,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用戶腳本 /回到頂部↑

diff --git a/clean-blog-articles/README.md b/clean-blog-articles/README.md index dce023487..a687baf09 100644 --- a/clean-blog-articles/README.md +++ b/clean-blog-articles/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -105,7 +105,7 @@ - + ## 使用帮助 @@ -119,14 +119,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用户脚本 /回到顶部↑

diff --git a/clean-blog-articles/README_en.md b/clean-blog-articles/README_en.md index 550b71e5e..0f088d994 100644 --- a/clean-blog-articles/README_en.md +++ b/clean-blog-articles/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -105,7 +105,7 @@ - + ## Help @@ -119,14 +119,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +

More user scripts /Back to top↑

diff --git a/clean-blog-articles/README_ko.md b/clean-blog-articles/README_ko.md index 3e5327851..62b84feef 100644 --- a/clean-blog-articles/README_ko.md +++ b/clean-blog-articles/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -105,7 +105,7 @@ - + ## 돕다 @@ -119,14 +119,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +

더 많은 사용자 스크립트 /위로 돌아갑니다↑

diff --git a/clean-blog-articles/README_vi.md b/clean-blog-articles/README_vi.md index 712ce804c..ecd159fd0 100644 --- a/clean-blog-articles/README_vi.md +++ b/clean-blog-articles/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -105,7 +105,7 @@ - + ## Giúp đỡ @@ -119,14 +119,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +

Nhiều tập lệnh người dùng hơn /Quay lại đầu↑

diff --git a/clean-blog-articles/README_zh-TW.md b/clean-blog-articles/README_zh-TW.md index 9a7f41bd7..c7af69683 100644 --- a/clean-blog-articles/README_zh-TW.md +++ b/clean-blog-articles/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -105,7 +105,7 @@ - + ## 使用幫助 @@ -119,14 +119,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +

更多用戶腳本 /回到頂部↑

diff --git a/clipboard-manager/README.md b/clipboard-manager/README.md index a6789d6ac..ff3a04fcf 100644 --- a/clipboard-manager/README.md +++ b/clipboard-manager/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -89,7 +89,7 @@ ## 作者 - **姓名**:人民的勤务员 -- **邮箱**:toniaiwanowskiskr47@gmail.com +- **邮箱**:china.qinwuyuan@gmail.com - **GitHub**:[ChinaGodMan/UserScripts](https://github.com/ChinaGodMan/UserScripts) ## 许可证 @@ -101,7 +101,7 @@ 如有任何问题,请通过 [GitHub Issues](https://github.com/ChinaGodMan/UserScripts/issues) 提交反馈。 - + > ### 🔍你可能在找网页相关脚本 > @@ -118,7 +118,7 @@ - + ## 使用帮助 @@ -132,14 +132,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -152,7 +152,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -170,7 +170,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -240,7 +240,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -262,7 +262,7 @@ - +

更多用户脚本 /回到顶部↑

diff --git a/clipboard-manager/README_en.md b/clipboard-manager/README_en.md index b7824b9bc..a0f9d9252 100644 --- a/clipboard-manager/README_en.md +++ b/clipboard-manager/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -66,7 +66,7 @@ Fork

Update records

🛠️ Web page writing clip version authorization manager Update log

📅 2024-09-28 08:21- Ver 1.2.3.1

repair: •Copy function pc Not for red and from window.navigator.clipboard.writeText ,Need to copy manually to the clip.@90 -repair: •Logical error ↠ 按下快捷键复制后只有指示器for red Reset when,为 green No reset@161

+repair: •Logical error ↠ After pressing the shortcut key to copy, there is only an indicatorfor red Reset when,for green No reset@161


📅 2024-09-27 11:55- Ver 1.2.3.0

New: •monitorclipboard.writeTextevent

@@ -89,7 +89,7 @@ When the script takes effect,A semi-transparent dot will be displayed in the l ## author - **Name**:人民的勤务员 -- **Mail**:toniaiwanowskiskr47@gmail.com +- **Mail**:china.qinwuyuan@gmail.com - **GitHub**:[ChinaGodMan/UserScripts](https://github.com/ChinaGodMan/UserScripts) ## license @@ -101,7 +101,7 @@ This project uses MIT license。 If you have any questions,Please pass [GitHub Issues](https://github.com/ChinaGodMan/UserScripts/issues) Submit feedback。 - + > ### 🔍You may be looking for web-related scripts > @@ -118,7 +118,7 @@ If you have any questions,Please pass [GitHub Issues](https://github.com/China - + ## Help @@ -132,14 +132,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -152,7 +152,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -170,7 +170,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -193,7 +193,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -203,7 +203,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -222,7 +222,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -240,7 +240,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -251,7 +251,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -262,7 +262,7 @@ Recommended browser and script manager: - +

More user scripts /back to top↑

diff --git a/clipboard-manager/README_ko.md b/clipboard-manager/README_ko.md index 0aff67f9e..4b8fe8d71 100644 --- a/clipboard-manager/README_ko.md +++ b/clipboard-manager/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -66,7 +66,7 @@ Fork

레코드 업데이트

🛠️ 웹 페이지 작성 클립 버전 승인 관리자 로그 업데이트

📅 2024-09-28 08:21- Ver 1.2.3.1

수리하다: •복사 기능 pc 그렇지 않다 red 그리고 window.navigator.clipboard.writeText ,클립에 수동으로 복사해야합니다.@90 -수리하다: •논리적 오류 ↠ 按下快捷键复制后只有指示器~을 위한 red 언제 재설정하십시오,为 green 재설정 없음@161

+수리하다: •논리적 오류 ↠ 복사 단축키를 누르면 표시만 나옵니다~을 위한 red 언제 재설정하십시오,~을 위한 green 재설정 없음@161


📅 2024-09-27 11:55- Ver 1.2.3.0

새로운: •감시 장치clipboard.writeText이벤트

@@ -89,7 +89,7 @@ ## 작가 - **이름**:人民的勤务员 -- **우편**:toniaiwanowskiskr47@gmail.com +- **우편**:china.qinwuyuan@gmail.com - **GitHub**:[ChinaGodMan/UserScripts](https://github.com/ChinaGodMan/UserScripts) ## 특허 @@ -101,7 +101,7 @@ 궁금한 점이 있으면,제발 통과하십시오 [GitHub Issues](https://github.com/ChinaGodMan/UserScripts/issues) 피드백을 제출하십시오。 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -118,7 +118,7 @@ - + ## 돕다 @@ -132,14 +132,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -152,7 +152,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -170,7 +170,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -193,7 +193,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -203,7 +203,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -222,7 +222,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -240,7 +240,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -251,7 +251,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -262,7 +262,7 @@ - +
diff --git a/clipboard-manager/README_vi.md b/clipboard-manager/README_vi.md index 78aa1bd21..4d219b265 100644 --- a/clipboard-manager/README_vi.md +++ b/clipboard-manager/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -66,7 +66,7 @@ Fork

Cập nhật hồ sơ

🛠️ Trang web viết clip phiên bản người quản lý ủy quyền Cập nhật nhật ký

📅 2024-09-28 08:21- Ver 1.2.3.1

Sửa chữa: •Chức năng sao chép pc Không dành cho red và từ window.navigator.clipboard.writeText ,Cần sao chép thủ công vào clip.@90 -Sửa chữa: •Lỗi logic ↠ 按下快捷键复制后只有指示器vì red Đặt lại khi nào,为 green Không đặt lại@161

+Sửa chữa: •Lỗi logic ↠ Sau khi nhấn phím tắt để sao chép thì chỉ có đèn báovì red Đặt lại khi nào,vì green Không đặt lại@161


📅 2024-09-27 11:55- Ver 1.2.3.0

Mới: •màn hìnhclipboard.writeTextsự kiện

@@ -89,7 +89,7 @@ Khi tập lệnh có hiệu lực,Các chấm nhỏ mờ sẽ được hiển ## tác giả - **Tên**:人民的勤务员 -- **Thư**:toniaiwanowskiskr47@gmail.com +- **Thư**:china.qinwuyuan@gmail.com - **GitHub**:[ChinaGodMan/UserScripts](https://github.com/ChinaGodMan/UserScripts) ## giấy phép @@ -101,7 +101,7 @@ Dự án này áp dụng MIT giấy phép。 Nếu bạn có bất kỳ câu hỏi nào,Xin vui lòng vượt qua [GitHub Issues](https://github.com/ChinaGodMan/UserScripts/issues) Gửi phản hồi。 - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -118,7 +118,7 @@ Nếu bạn có bất kỳ câu hỏi nào,Xin vui lòng vượt qua [GitHub I - + ## Giúp đỡ @@ -132,14 +132,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -152,7 +152,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -170,7 +170,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -193,7 +193,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -203,7 +203,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -222,7 +222,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -240,7 +240,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -251,7 +251,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -262,7 +262,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/clipboard-manager/README_zh-TW.md b/clipboard-manager/README_zh-TW.md index 09f9761df..29e9c5254 100644 --- a/clipboard-manager/README_zh-TW.md +++ b/clipboard-manager/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -66,7 +66,7 @@ Fork

更新記錄

🛠️ 網頁寫入剪輯版授權管理器 更新日誌

📅 2024-09-28 08:21- Ver 1.2.3.1

修復: •複製函數 pc 不為 red 時且來源於為 window.navigator.clipboard.writeText ,需要手動複製到剪輯版.@90 -修復: •邏輯錯誤 ↠ 按下快捷键复制后只有指示器為 red 時候重置,为 green 不重置@161

+修復: •邏輯錯誤 ↠ 按下快捷键复制后只有指示器為 red 時候重置,為 green 不重置@161


📅 2024-09-27 11:55- Ver 1.2.3.0

新增: •監聽clipboard.writeText事件

@@ -89,7 +89,7 @@ ## 作者 - **姓名**:人民的勤务员 -- **郵箱**:toniaiwanowskiskr47@gmail.com +- **郵箱**:china.qinwuyuan@gmail.com - **GitHub**:[ChinaGodMan/UserScripts](https://github.com/ChinaGodMan/UserScripts) ## 許可證 @@ -101,7 +101,7 @@ 如有任何問題,請通過 [GitHub Issues](https://github.com/ChinaGodMan/UserScripts/issues) 提交反饋。 - + > ### 🔍你可能在找網頁相關腳本 > @@ -118,7 +118,7 @@ - + ## 使用幫助 @@ -132,14 +132,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -152,7 +152,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -170,7 +170,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -185,7 +185,7 @@ > - [**GitHub 倉庫快速跳轉助手**](https://greasyfork.org/scripts/515205): 🤠 GitHub 倉庫快速跳轉助手,專為幫助用戶快速存取自己在 GitHub 上的倉庫而設計 。它在導覽列頂部產生一個按鈕,點擊展開自己的所有倉庫,輕鬆跳到自己的 GitHub 倉庫頁面,而無需使用 GitHub 的二級選單 > - [**在Github上打開jsDelivr鏈接**](https://greasyfork.org/scripts/527870): 打開jsDelivr上的GitHub鏈接,用於快速下載文件 > - [**GitHub Gist 代碼片段複製與下載器**](https://greasyfork.org/scripts/529534): 向 Gist 文件添加複制按鈕,以便輕鬆複製代碼。 | 向 Gist 文件添加下載按鈕,以便輕鬆下載代碼。 -> - [**GitHub 快捷鍵翻譯助手**](https://greasyfork.org/scripts/530312): 監聽鍵盤快捷鍵 Ctrl + Q,實現對文本進行翻譯並將翻譯結果替換到原文本框中的功能 支持Issue和pull request 頁面. +> - [**GitHub 快捷鍵翻譯助手**](https://greasyfork.org/scripts/530312): 監聽鍵盤快捷鍵 Ctrl + Q,實現對文本進行翻譯並將翻譯結果替換到原文本框中的功能 支援Issue和pull request 頁面. > - [**GitHub 星標倉庫備註助手**](https://greasyfork.org/scripts/533511): 曾經 Star 過的倉庫是不是忘記了它們的用途? 這是一個可以給你收藏過的倉庫添加備註的的腳本,並且你備註的信息可以上傳下載到 GitHub Gist > - [**GitHub 跳轉到 DeepWiKi**](https://greasyfork.org/scripts/536279): GitHub 存儲庫跳轉到 DeepWiKi,支持電腦桌面端和移動端 > - [**GitHub 隱藏 Copilot**](https://greasyfork.org/scripts/536423): 在 GitHub 上隱藏愚蠢的 Copilot @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -240,7 +240,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -251,18 +251,18 @@ - + > ### 🔍你可能在找社交媒體腳本 > > - [**Twitter/X 隱藏轉發的帖子**](https://greasyfork.org/scripts/529450): 自動隱藏轉發轉發內容,並且在首次加載時隱藏轉發內容,移除煩人的廣告 -> - [**Twitter 媒體下載 (2025.04.28 修復)**](https://greasyfork.org/scripts/529453): 一鍵下載視頻/圖片,支持批量下載時自動打包為一個ZIP文件下載.支持新版API接口 +> - [**Twitter 媒體下載 (2025.04.28 修復)**](https://greasyfork.org/scripts/529453): 一鍵下載視頻/圖片,支持批量下載時自動打包為一個ZIP文件下載.支援新版API介面 > - [**YouTube 小助手**](https://greasyfork.org/scripts/529845): YouTube 1.視頻循環播放 2.截圖下載 3.主題進度條 - +
diff --git a/cnm.r18/README.md b/cnm.r18/README.md index f8eeda8c4..c065150b8 100644 --- a/cnm.r18/README.md +++ b/cnm.r18/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -112,7 +112,7 @@ - + ## 使用帮助 @@ -126,14 +126,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/cnm.r18/README_en.md b/cnm.r18/README_en.md index fe50b27c8..f8afa6b51 100644 --- a/cnm.r18/README_en.md +++ b/cnm.r18/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -112,7 +112,7 @@ By matching the website domain name and specific CSS Selector,Automatically cl - + ## Help @@ -126,14 +126,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/cnm.r18/README_ko.md b/cnm.r18/README_ko.md index 4faa16413..4e85a8231 100644 --- a/cnm.r18/README_ko.md +++ b/cnm.r18/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -112,7 +112,7 @@ - + ## 돕다 @@ -126,14 +126,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/cnm.r18/README_vi.md b/cnm.r18/README_vi.md index 90e5935a8..b40b79ab4 100644 --- a/cnm.r18/README_vi.md +++ b/cnm.r18/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -112,7 +112,7 @@ Bằng cách khớp tên miền trang web và cụ thể CSS Người chọn,T - + ## Giúp đỡ @@ -126,14 +126,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/cnm.r18/README_zh-TW.md b/cnm.r18/README_zh-TW.md index 7b8d5d0eb..8594db1cc 100644 --- a/cnm.r18/README_zh-TW.md +++ b/cnm.r18/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -112,7 +112,7 @@ - + ## 使用幫助 @@ -126,14 +126,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/colorful-table/README.md b/colorful-table/README.md index 712f6b87c..6a0cc7062 100644 --- a/colorful-table/README.md +++ b/colorful-table/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -72,7 +72,7 @@ - + # 绚丽渐变美化网页表格脚本 @@ -102,7 +102,7 @@ 该脚本适用于任何包含网页表格场景,能够自动为网页表格应用颜色渐变,帮助用户快速识别数据的差异,提升表格的可视化效果。 - + > ### 🔍你可能在找网页相关脚本 > @@ -119,7 +119,7 @@ - + ## 项目与反馈 @@ -131,7 +131,7 @@ ![colorful-table.png](https://s2.loli.net/2024/09/06/IA7pxwj1ZC4c56a.png) - + ## 使用帮助 @@ -145,14 +145,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -183,7 +183,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -264,7 +264,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -275,7 +275,7 @@ - +
diff --git a/colorful-table/README_en.md b/colorful-table/README_en.md index 87790e2d4..07115f536 100644 --- a/colorful-table/README_en.md +++ b/colorful-table/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -72,7 +72,7 @@ - + # Gorgeous Gradient Table Beautification Script @@ -101,7 +101,7 @@ This script automatically applies gradient colors to all tables on a webpage, ba This script is suitable for any webpage containing tables, automatically applying gradient colors to enhance data visualization and make it easier to distinguish data differences. - + ## Project & Feedback @@ -113,7 +113,7 @@ This script is suitable for any webpage containing tables, automatically applyin ![colorful-table.png](https://s2.loli.net/2024/09/06/IA7pxwj1ZC4c56a.png) - + > ### 🔍You may be looking for web-related scripts > @@ -130,7 +130,7 @@ This script is suitable for any webpage containing tables, automatically applyin - + ## Help @@ -144,14 +144,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -164,7 +164,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -182,7 +182,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -205,7 +205,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -215,7 +215,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -234,7 +234,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -263,7 +263,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -274,7 +274,7 @@ Recommended browser and script manager: - +
diff --git a/colorful-table/README_ko.md b/colorful-table/README_ko.md index 787118990..435ca0721 100644 --- a/colorful-table/README_ko.md +++ b/colorful-table/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -72,7 +72,7 @@ - + # 화려한 그라디언트 웹 페이지 테이블 스크립트를 아름답게합니다 @@ -102,7 +102,7 @@ 이 스크립트는 웹 테이블이 포함 된 모든 시나리오에 적합합니다.,웹 테이블에 컬러 그라디언트를 자동으로 적용 할 수 있습니다,사용자가 데이터 차이를 신속하게 식별하도록 도와줍니다,테이블의 시각화를 향상시킵니다。 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -119,7 +119,7 @@ - + ## 프로젝트 및 피드백 @@ -131,7 +131,7 @@ ![colorful-table.png](https://s2.loli.net/2024/09/06/IA7pxwj1ZC4c56a.png) - + ## 돕다 @@ -145,14 +145,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -165,7 +165,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -183,7 +183,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -206,7 +206,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -216,7 +216,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -235,7 +235,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -253,7 +253,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -264,7 +264,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -275,7 +275,7 @@ - +
diff --git a/colorful-table/README_vi.md b/colorful-table/README_vi.md index 9abaae2fc..876cc1ef6 100644 --- a/colorful-table/README_vi.md +++ b/colorful-table/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -72,7 +72,7 @@ - + # Gradient tuyệt đẹp làm đẹp tập lệnh bảng trang web @@ -102,7 +102,7 @@ Tập lệnh này tự động áp dụng một gradient màu cho tất cả cá Kịch bản này phù hợp cho bất kỳ kịch bản nào chứa bảng web,Khả năng tự động áp dụng độ dốc màu cho bảng web,Giúp người dùng nhanh chóng xác định sự khác biệt về dữ liệu,Cải thiện hình dung của bảng。 - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -119,7 +119,7 @@ Kịch bản này phù hợp cho bất kỳ kịch bản nào chứa bảng web - + ## Dự án và phản hồi @@ -131,7 +131,7 @@ Kịch bản này phù hợp cho bất kỳ kịch bản nào chứa bảng web ![colorful-table.png](https://s2.loli.net/2024/09/06/IA7pxwj1ZC4c56a.png) - + ## Giúp đỡ @@ -145,14 +145,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -165,7 +165,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -183,7 +183,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -206,7 +206,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -216,7 +216,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -235,7 +235,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -253,7 +253,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -264,7 +264,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -275,7 +275,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/colorful-table/README_zh-TW.md b/colorful-table/README_zh-TW.md index 0dc3f6eb9..973611904 100644 --- a/colorful-table/README_zh-TW.md +++ b/colorful-table/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -72,7 +72,7 @@ - + # 絢麗漸變美化網頁表格腳本 @@ -102,7 +102,7 @@ 該腳本適用於任何包含網頁表格場景,能夠自動為網頁表格應用顏色漸變,幫助用戶快速識別數據的差異,提升表格的可視化效果。 - + > ### 🔍你可能在找網頁相關腳本 > @@ -119,7 +119,7 @@ - + ## 項目與反饋 @@ -131,7 +131,7 @@ ![colorful-table.png](https://s2.loli.net/2024/09/06/IA7pxwj1ZC4c56a.png) - + ## 使用幫助 @@ -145,14 +145,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -183,7 +183,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -264,7 +264,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -275,7 +275,7 @@ - +
diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 000000000..5a258f696 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,67 @@ +const { defineConfig } = require('cz-git') + +module.exports = defineConfig({ + rules: { + // @see: https://commitlint.js.org/#/reference-rules + }, + prompt: { + alias: { fd: 'docs: fix typos' }, + messages: { + type: '选择你要提交的变更类型:', + scope: '标明此变更的范围(可选):', + customScope: '标明此变更的范围:', + subject: '写一个简短的、命令式的变更描述:\n', + body: '提供一个更长的变更描述(可选)。使用 "|" 来分隔换行:\n', + breaking: '列出任何破坏性变更(可选)。使用 "|" 来分隔换行:\n', + footerPrefixesSelect: '选择此变更所关联的ISSUES类型(可选):', + customFooterPrefix: '输入ISSUES前缀:', + footer: '列出此变更相关的ISSUES。例如:#31, #34:\n', + generatingByAI: '正在生成你的AI提交标题...', + generatedSelectByAI: '选择AI生成的合适标题:', + confirmCommit: '你确定要提交上述变更吗?' + }, + types: [ + { value: 'feat', name: 'feat: ✨ 新功能', emoji: '✨' }, + { value: 'fix', name: 'fix: 🐛 修复 bug', emoji: '🐛' }, + { value: 'docs', name: 'docs: 📝 仅修改文档', emoji: '📝' }, + { value: 'style', name: 'style: 💄 不影响代码意义的变动', emoji: '💄' }, + { value: 'refactor', name: 'refactor: ♻️ 代码重构,既不修复bug也不新增功能', emoji: '♻️' }, + { value: 'perf', name: 'perf: ⚡️ 提升性能的代码变动', emoji: '⚡️' }, + { value: 'test', name: 'test: ✅ 添加或修正测试', emoji: ':✅' }, + { value: 'build', name: 'build: 📦️ 影响构建系统或外部依赖的变动', emoji: '📦️' }, + { value: 'ci', name: 'ci: 🎡 修改CI配置文件和脚本', emoji: '🎡' }, + { value: 'chore', name: 'chore: 🔨 其他不修改源代码或测试文件的变动', emoji: '🔨' }, + { value: 'revert', name: 'revert: ⏪️ 回滚之前的提交', emoji: '⏪️' } + ] + , + useEmoji: false, + emojiAlign: 'center', + useAI: false, + aiNumber: 1, + themeColorCode: '', + scopes: [], + allowCustomScopes: true, + allowEmptyScopes: true, + customScopesAlign: 'bottom', + customScopesAlias: '自定义', + emptyScopesAlias: '无', + upperCaseSubject: false, + markBreakingChangeMode: false, + allowBreakingChanges: ['feat', 'fix'], + breaklineNumber: 100, + breaklineChar: '|', + skipQuestions: [], + issuePrefixes: [{ value: 'closed', name: 'closed: ISSUES has been processed' }], + customIssuePrefixAlign: 'top', + emptyIssuePrefixAlias: '跳过', + customIssuePrefixAlias: '自定义', + allowCustomIssuePrefix: true, + allowEmptyIssuePrefix: true, + confirmColorize: true, + scopeOverrides: undefined, + defaultBody: '', + defaultIssues: '', + defaultScope: '', + defaultSubject: '' + } +}) diff --git a/csdn-blocker/README.md b/csdn-blocker/README.md index ca97f3769..9f1fe058b 100644 --- a/csdn-blocker/README.md +++ b/csdn-blocker/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -75,7 +75,7 @@ 解除CSDN需要登录复制的限制 - + > ### 🔍你可能在找网页相关脚本 > @@ -92,7 +92,7 @@ - + ## 使用帮助 @@ -106,14 +106,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -126,7 +126,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -144,7 +144,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -167,7 +167,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -177,7 +177,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -236,7 +236,7 @@ - +
diff --git a/csdn-blocker/README_en.md b/csdn-blocker/README_en.md index 2f11c7242..73ef074d5 100644 --- a/csdn-blocker/README_en.md +++ b/csdn-blocker/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -75,7 +75,7 @@ RemovalCSDNRestrictions on login copying required - + > ### 🔍You may be looking for web-related scripts > @@ -92,7 +92,7 @@ RemovalCSDNRestrictions on login copying required - + ## Help @@ -106,14 +106,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -126,7 +126,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -144,7 +144,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -167,7 +167,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -177,7 +177,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -196,7 +196,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -214,7 +214,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -225,7 +225,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -236,7 +236,7 @@ Recommended browser and script manager: - +
diff --git a/csdn-blocker/README_ko.md b/csdn-blocker/README_ko.md index 8195dddf9..4a0dc8242 100644 --- a/csdn-blocker/README_ko.md +++ b/csdn-blocker/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -75,7 +75,7 @@ 제거CSDN로그인 복사 제한이 필요합니다 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -92,7 +92,7 @@ - + ## 돕다 @@ -106,14 +106,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -126,7 +126,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -144,7 +144,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -167,7 +167,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -177,7 +177,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -196,7 +196,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -214,7 +214,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -225,7 +225,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -236,7 +236,7 @@ - +
diff --git a/csdn-blocker/README_vi.md b/csdn-blocker/README_vi.md index d471a7ab9..37898baa4 100644 --- a/csdn-blocker/README_vi.md +++ b/csdn-blocker/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -75,7 +75,7 @@ Loại bỏCSDNHạn chế khi sao chép đăng nhập yêu cầu - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -92,7 +92,7 @@ Loại bỏCSDNHạn chế khi sao chép đăng nhập yêu cầu - + ## Giúp đỡ @@ -106,14 +106,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -126,7 +126,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -144,7 +144,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -167,7 +167,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -177,7 +177,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -196,7 +196,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -225,7 +225,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -236,7 +236,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/csdn-blocker/README_zh-TW.md b/csdn-blocker/README_zh-TW.md index 4e3ddb1af..839218a1b 100644 --- a/csdn-blocker/README_zh-TW.md +++ b/csdn-blocker/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -75,7 +75,7 @@ 解除CSDN需要登錄複製的限制 - + > ### 🔍你可能在找網頁相關腳本 > @@ -92,7 +92,7 @@ - + ## 使用幫助 @@ -106,14 +106,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -126,7 +126,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -144,7 +144,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -167,7 +167,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -177,7 +177,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -236,7 +236,7 @@ - +
diff --git a/docs/README.md b/docs/README.md index a0320f4cc..f24060b4c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -44,12 +44,12 @@ Gmail - +
脚本来自互联网广大网友,本人仅是做了些许改动.感谢网友
如有侵权,联系必删
- + 推荐使用:
Support
Support
@@ -57,24 +57,13 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> 本存储库仅在GitHub上托管,未在GitCodeXPlaza上托管。以下存储库均为镜像。
-> :trollface: 如果你在中国大陆地区使用git clone下载速度太慢,你也可以是使用以下地址进行 -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (镜像账号,非本人) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC @@ -469,7 +458,7 @@ 修改自 - +

GreasyFork (12)

@@ -917,7 +906,7 @@ 修改自 - +

成人脚本 (11)

@@ -1315,7 +1304,7 @@ 修改自 - +

Google 脚本 (2)

@@ -1385,7 +1374,7 @@ 更新日志 - +

GitHub 脚本 (20)

@@ -2147,7 +2136,7 @@ github-notification-inbox-toggle 开发版本 修改自 - +

翻译脚本 (3)

@@ -2251,7 +2240,7 @@ github-notification-inbox-toggle 开发版本 修改自 - +

AI 脚本 (9)

@@ -2565,7 +2554,7 @@ ChatGPT 让代码字体变小 并且自动折行 修改自 - +

博客网站 (5)

@@ -2727,7 +2716,7 @@ ChatGPT 让代码字体变小 并且自动折行 修改自 - +

Twitter (5)

@@ -2918,7 +2907,7 @@ ChatGPT 让代码字体变小 并且自动折行 修改自 - +

YouTube (5)

@@ -3096,7 +3085,7 @@ ChatGPT 让代码字体变小 并且自动折行 修改自 - +

TikTok (1)

@@ -3130,7 +3119,7 @@ TikTok 在个人资料上显示更多扩展信息 修改自 - +

Bilibili (2)

@@ -3196,7 +3185,7 @@ TikTok 在个人资料上显示更多扩展信息 修改自 - + diff --git a/docs/ScriptsPath.json b/docs/ScriptsPath.json index 587981732..5d80788a9 100644 --- a/docs/ScriptsPath.json +++ b/docs/ScriptsPath.json @@ -1,6 +1,6 @@ { "author": { - "name": "人民的勤务员(@ChinaGodMan)", + "name": "人民的勤务员(ChinaGodMan)", "email": "china.qinwuyuan@gmail.com", "url": "https://github.com/ChinaGodMan", "time_zone": "Asia/Shanghai", diff --git a/docs/de/README.md b/docs/de/README.md index acaf9f361..16a1697fb 100644 --- a/docs/de/README.md +++ b/docs/de/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
Das Drehbuch stammt von der großen Zahl von Internetnutzern,Ich habe gerade einige Änderungen vorgenommen.Danke Netizens
Wenn ein Verstoß vorliegt,Der Kontakt muss gelöscht werden
- + Empfohlen:
Support
Support
@@ -57,30 +57,19 @@ 💡 Tip: Die obige Liste der Skriptmanager und Browser ist nicht vollständig
Das Skript läuft in der folgenden Umgebung einwandfrei
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Dieses Repository ist nur verfügbar inGitHubgehostet am,Nicht hierGitCodeUndXPlazagehostet am。Die folgenden Repositorys sind alle Spiegel。
-> :trollface: Wenn Sie es auf dem chinesischen Festland verwendengit cloneDie Download-Geschwindigkeit ist zu langsam,Sie können auch die folgende Adresse verwenden -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Spiegelkonto,Nicht-Identität) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Browser- und Skript-Manager](#-Browser- und Skript-Manager) | -[❔️ So installieren oder verwenden Sie das Skript](#%EF%B8%8F-So installieren oder verwenden Sie das Skript) | -[🙏 Besonderer Dank geht an Open Source](#-Besonderer Dank geht an Open Source) | +[🌐 Browser- und Skript-Manager](#-Browser--und-Skript-Manager) | +[❔️ So installieren oder verwenden Sie das Skript](#%EF%B8%8F-So-installieren-oder-verwenden-Sie-das-Skript) | +[🙏 Besonderer Dank geht an Open Source](#-Besonderer-Dank-geht-an-Open-Source) | [🛡️ Sicherheitspolitik](#%EF%B8%8F-Sicherheitspolitik) | [🤝 Verhaltenskodex](#-Verhaltenskodex) | [🏛️ Open-Source-Lizenzvereinbarung](#%EF%B8%8F-Open-Source-Lizenzvereinbarung) | @@ -98,11 +87,11 @@ **Die aktuelle Anzahl veröffentlichter Skripte im Repository:85,Skript beinhaltet:**
Webskript (10) | GreasyFork (12) - | Drehbuch für Erwachsene (11) - | Google Skript (2) - | GitHub Skript (20) - | Skript übersetzen (3) - | AI Skript (9) + | Drehbuch für Erwachsene (11) + | Google Skript (2) + | GitHub Skript (20) + | Skript übersetzen (3) + | AI Skript (9) | Blogseite (5) | Twitter (5) | YouTube (5) @@ -113,9 +102,9 @@

Webskript (10)

- + - Scroll-Taste  + Scroll-Taste  @@ -136,22 +125,22 @@ Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Autorisierungsmanager für Webseiten-Schreibclip-Versionen  + Autorisierungsmanager für Webseiten-Schreibclip-Versionen  @@ -172,14 +161,14 @@ Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -187,9 +176,9 @@ Änderungsprotokoll

- + - Link-Unterstreichung entfernen  + Link-Unterstreichung entfernen  @@ -204,22 +193,22 @@ Entfernen Sie die Link-Unterstreichungen auf allen Websites,und neue Links dyn Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Markieren Sie Web -Keywords hervor  + Markieren Sie Web -Keywords hervor  @@ -234,22 +223,22 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Markieren Sie Keywords im Web  + Markieren Sie Keywords im Web  @@ -270,22 +259,22 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - An die oberen und unteren Knöpfe stecken  + An die oberen und unteren Knöpfe stecken  @@ -306,14 +295,14 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -321,9 +310,9 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Änderungsprotokoll

- + - Kleine Fenstervorschau  + Kleine Fenstervorschau  @@ -344,14 +333,14 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -359,9 +348,9 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Änderungsprotokoll

- + - Verschönern Sie Webformulare mit wunderschönen Farbverläufen  + Verschönern Sie Webformulare mit wunderschönen Farbverläufen  @@ -382,14 +371,14 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -397,9 +386,9 @@ Benutzerdefinierte Schlüsselwort auf Webseiten einschließlich dynamisches Lade Änderungsprotokoll

- + - Text zu Link  + Text zu Link  @@ -414,14 +403,14 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -429,9 +418,9 @@ Konvertieren Sie Textlinks in klickbare Links Geändert von

- + - Markdown Cloud Cut -Notizen  + Markdown Cloud Cut -Notizen  @@ -452,14 +441,14 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -469,11 +458,11 @@ Konvertieren Sie Textlinks in klickbare Links Geändert von - +

GreasyFork (12)

- + - Fettige Gabelskriptseiten für die URL -Verbesserung  + Fettige Gabelskriptseiten für die URL -Verbesserung  @@ -494,22 +483,22 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Greasyfork Kleberhandwerker  + Greasyfork Kleberhandwerker  @@ -530,14 +519,14 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -545,9 +534,9 @@ Konvertieren Sie Textlinks in klickbare Links Änderungsprotokoll

- + - Script Finder Nachschlagen von GreasyFork-Skripten  + Script Finder Nachschlagen von GreasyFork-Skripten  @@ -568,14 +557,14 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -583,9 +572,9 @@ Konvertieren Sie Textlinks in klickbare Links Änderungsprotokoll

- + - Greasyfork Skript zur Anzeige von Bewertungen  + Greasyfork Skript zur Anzeige von Bewertungen  @@ -606,22 +595,22 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - GreasyFork: Verbesserung der Navigationsleiste  + GreasyFork: Verbesserung der Navigationsleiste  @@ -642,22 +631,22 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Konvertieren Sie Textlinks in klickbare Links Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -693,9 +682,9 @@ Konvertieren Sie Textlinks in klickbare Links Änderungsprotokoll

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - GreasyFork Benachrichtigungsassistent  + GreasyFork Benachrichtigungsassistent  @@ -746,14 +735,14 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -761,9 +750,9 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Änderungsprotokoll

- + - GreaysFork ErweiternWebHookSynchronisierungseinstellungen  + GreaysFork ErweiternWebHookSynchronisierungseinstellungen  @@ -784,14 +773,14 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -799,9 +788,9 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Änderungsprotokoll

- + - GreasyFork Vom Benutzer veröffentlichte Skriptdatenvisualisierung  + GreasyFork Vom Benutzer veröffentlichte Skriptdatenvisualisierung  @@ -822,14 +811,14 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -837,9 +826,9 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Änderungsprotokoll

- + - Greasyfork Zeigen Sie Registrierungszeit  + Greasyfork Zeigen Sie Registrierungszeit  @@ -860,14 +849,14 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -877,9 +866,9 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Geändert von

- + - FreasyFork nicht aktualisiertes Skript hervorgehoben  + FreasyFork nicht aktualisiertes Skript hervorgehoben  @@ -900,14 +889,14 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -917,11 +906,11 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Geändert von - +

Drehbuch für Erwachsene (11)

- + - Missav Batch Backup Collection Videos  + Missav Batch Backup Collection Videos  @@ -942,14 +931,14 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -957,9 +946,9 @@ Suchen Sie mit GoogleGreasyForkUndSleazyForkOberschrift Änderungsprotokoll

- + - MissAV Automatische Anmeldung  + MissAV Automatische Anmeldung  @@ -974,14 +963,14 @@ Erkennung MissAV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ange Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -989,9 +978,9 @@ Erkennung MissAV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ange Änderungsprotokoll

- + - ThisAV Automatische Anmeldung  + ThisAV Automatische Anmeldung  @@ -1006,14 +995,14 @@ Erkennung ThisAV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ange Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1021,9 +1010,9 @@ Erkennung ThisAV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ange Änderungsprotokoll

- + - JableTV Automatische Anmeldung  + JableTV Automatische Anmeldung  @@ -1038,14 +1027,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1053,9 +1042,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Missav Video Download Tool  + Missav Video Download Tool  @@ -1076,14 +1065,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1091,9 +1080,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Xvideos Push -Download  + Xvideos Push -Download  @@ -1114,14 +1103,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1129,9 +1118,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Pornhub Video Download mit einem Klick  + Pornhub Video Download mit einem Klick  @@ -1152,14 +1141,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1167,9 +1156,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Xhamster Video One-Click-Download-Assistent  + Xhamster Video One-Click-Download-Assistent  @@ -1190,14 +1179,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1205,9 +1194,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Xnxxvideos Video Ein-Klick-Download-Assistent  + Xnxxvideos Video Ein-Klick-Download-Assistent  @@ -1228,14 +1217,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1243,9 +1232,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Missav Enhanced Assistant  + Missav Enhanced Assistant  @@ -1266,14 +1255,14 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1281,9 +1270,9 @@ Erkennung JableTV Zustand,und melden Sie sich automatisch an, wenn Sie nicht ang Änderungsprotokoll

- + - Ich bin gerade 18 Jahre alt geworden  + Ich bin gerade 18 Jahre alt geworden  @@ -1298,14 +1287,14 @@ Da ich gerade 18 Jahre alt bin, kann ich erwachsene Inhalte sehen Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1315,11 +1304,11 @@ Da ich gerade 18 Jahre alt bin, kann ich erwachsene Inhalte sehen Geändert von - +

Google Skript (2)

- + - Blockieren Sie Google -Suchwebsites  + Blockieren Sie Google -Suchwebsites  @@ -1334,22 +1323,22 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Google Erweiterter Suchassistent  + Google Erweiterter Suchassistent  @@ -1370,14 +1359,14 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1385,11 +1374,11 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Änderungsprotokoll - +

GitHub Skript (20)

- + - 🤠 Github hat die Anzeigegröße des Assistentenlagers verbessert  + 🤠 Github hat die Anzeigegröße des Assistentenlagers verbessert  @@ -1410,14 +1399,14 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1427,9 +1416,9 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Geändert von

- + - GitHub Nach Datum sortieren  + GitHub Nach Datum sortieren  @@ -1450,22 +1439,22 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - GitHub Ordner-Downloader  + GitHub Ordner-Downloader  @@ -1486,14 +1475,14 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1501,9 +1490,9 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Änderungsprotokoll

- + - Github Originaldatei kopieren URL mit Download-Dateien  + Github Originaldatei kopieren URL mit Download-Dateien  @@ -1524,14 +1513,14 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1539,9 +1528,9 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Änderungsprotokoll

- + - GitHub Webansicht zur Anzeige von Informationen übermitteln  + GitHub Webansicht zur Anzeige von Informationen übermitteln  @@ -1562,22 +1551,22 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - GitHub Dateilisten-Verschönerer  + GitHub Dateilisten-Verschönerer  @@ -1598,14 +1587,14 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1613,9 +1602,9 @@ Suchen Sie nach einer Google, die eine bestimmte Website blockiert Änderungsprotokoll

- + - GitHub Geräteautorisierung automatisch bestätigen  + GitHub Geräteautorisierung automatisch bestätigen  @@ -1630,14 +1619,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1645,9 +1634,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Änderungsprotokoll

- + - Github Liste der Codesprachen alle anzeigen  + Github Liste der Codesprachen alle anzeigen  @@ -1668,14 +1657,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1683,9 +1672,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Änderungsprotokoll

- + - GitHub Warehouse-Schnellsprungassistent  + GitHub Warehouse-Schnellsprungassistent  @@ -1706,14 +1695,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1721,9 +1710,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Änderungsprotokoll

- + - Öffnen Sie den JSDelivr -Link auf GitHub  + Öffnen Sie den JSDelivr -Link auf GitHub  @@ -1744,14 +1733,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1759,9 +1748,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Änderungsprotokoll

- + - Github Gist Code Snippet Copy und Downloader  + Github Gist Code Snippet Copy und Downloader  @@ -1782,14 +1771,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1799,9 +1788,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - GitHub Shortcut Key Übersetzungsassistent  + GitHub Shortcut Key Übersetzungsassistent  @@ -1822,14 +1811,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1837,9 +1826,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Änderungsprotokoll

- + - Github Star Warehouse Note Assistent  + Github Star Warehouse Note Assistent  @@ -1860,14 +1849,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1877,9 +1866,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - Github springen nach Deepwiki  + Github springen nach Deepwiki  @@ -1900,14 +1889,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1917,9 +1906,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - Github Copilot verstecken  + Github Copilot verstecken  @@ -1940,14 +1929,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1957,9 +1946,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - Github -E -Mail -Adressfinder  + Github -E -Mail -Adressfinder  @@ -1980,14 +1969,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -1995,9 +1984,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - GitHub zeigt Datei- und Ordnergrößen an  + GitHub zeigt Datei- und Ordnergrößen an  @@ -2019,14 +2008,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2036,9 +2025,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - Github Co-Autor  + Github Co-Autor  @@ -2060,14 +2049,14 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2075,9 +2064,9 @@ existierenGitHubAuf der Autorisierungsseite wird der Autorisierungscode automati Geändert von

- + - Status des Github -Benachrichtigungsfilters  + Status des Github -Benachrichtigungsfilters  @@ -2092,14 +2081,14 @@ GitHub-Notification-in-Box-Toggle-Entwicklung Version Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2107,9 +2096,9 @@ GitHub-Notification-in-Box-Toggle-Entwicklung Version Geändert von

- + - GitHub-Befehlsschaltfläche zum Kopieren und Klonen (Fork)  + GitHub-Befehlsschaltfläche zum Kopieren und Klonen (Fork)  @@ -2130,14 +2119,14 @@ GitHub-Notification-in-Box-Toggle-Entwicklung Version Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2147,11 +2136,11 @@ GitHub-Notification-in-Box-Toggle-Entwicklung Version Geändert von - +

Skript übersetzen (3)

- + - Fremdsprachterminator  + Fremdsprachterminator  @@ -2166,14 +2155,14 @@ Identifizieren Sie nicht chinesische Charaktere. Wenn die Länge größer als 5 Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2181,9 +2170,9 @@ Identifizieren Sie nicht chinesische Charaktere. Wenn die Länge größer als 5 Änderungsprotokoll

- + - Webseitenübersetzung - Automatische Übersetzung in Chinesisch  + Webseitenübersetzung - Automatische Übersetzung in Chinesisch  @@ -2198,22 +2187,22 @@ Fügen Sie ein Google-Übersetzungssymbol in die untere rechte Ecke jeder nichtc Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Übersetzungs -Widget |  + Übersetzungs -Widget |  @@ -2234,14 +2223,14 @@ Fügen Sie ein Google-Übersetzungssymbol in die untere rechte Ecke jeder nichtc Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2251,11 +2240,11 @@ Fügen Sie ein Google-Übersetzungssymbol in die untere rechte Ecke jeder nichtc Geändert von - +

AI Skript (9)

- + - ChatGPT Selbstnachricht minimieren und maximale Breite erreichen  + ChatGPT Selbstnachricht minimieren und maximale Breite erreichen  @@ -2276,14 +2265,14 @@ Fügen Sie ein Google-Übersetzungssymbol in die untere rechte Ecke jeder nichtc Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2291,9 +2280,9 @@ Fügen Sie ein Google-Übersetzungssymbol in die untere rechte Ecke jeder nichtc Änderungsprotokoll

- + - ChatGPTDie Schriftgröße des Codes wurde reduziert  + ChatGPTDie Schriftgröße des Codes wurde reduziert  @@ -2308,22 +2297,22 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - ChatGPT Zeichenzählerlimit  + ChatGPT Zeichenzählerlimit  @@ -2344,14 +2333,14 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2359,9 +2348,9 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Änderungsprotokoll

- + - ChatGPT Chat-Schaltflächen zum Kopieren und Exportieren von Code  + ChatGPT Chat-Schaltflächen zum Kopieren und Exportieren von Code  @@ -2382,14 +2371,14 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2397,9 +2386,9 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Änderungsprotokoll

- + - Chatgpt -Code hervorgehoben  + Chatgpt -Code hervorgehoben  @@ -2420,14 +2409,14 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2435,9 +2424,9 @@ ChatGPT Verkleinern Sie die Codeschrift und automatisch umwickeln Änderungsprotokoll

- + - Chatgpt -Code -Tool  + Chatgpt -Code -Tool  @@ -2452,14 +2441,14 @@ Fügen Sie den ChatGPT -Codeblöcken Funktionen hinzu, einschließlich der Optio Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2467,9 +2456,9 @@ Fügen Sie den ChatGPT -Codeblöcken Funktionen hinzu, einschließlich der Optio Geändert von

- + - Chatgpt Eingabeaufforderung einlegen  + Chatgpt Eingabeaufforderung einlegen  @@ -2484,14 +2473,14 @@ Fügen Sie den Befehl über die Schlüsselkombination in das ChatGPT -Eingangsfe Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2499,9 +2488,9 @@ Fügen Sie den Befehl über die Schlüsselkombination in das ChatGPT -Eingangsfe Geändert von

- + - Chatgpt speichern Gespräch  + Chatgpt speichern Gespräch  @@ -2516,14 +2505,14 @@ Speichern Sie die Konversation als .txt -Datei Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2533,9 +2522,9 @@ Speichern Sie die Konversation als .txt -Datei Geändert von

- + - ChatGPT verwalten einfach Chats  + ChatGPT verwalten einfach Chats  @@ -2550,14 +2539,14 @@ Suchen Sie Chat, Filter -Chat, Schnell/Stapel -Chat löschen. Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2565,11 +2554,11 @@ Suchen Sie Chat, Filter -Chat, Schnell/Stapel -Chat löschen. Geändert von - +

Blogseite (5)

- + - Un eingeschränkte CSDN -Login  + Un eingeschränkte CSDN -Login  @@ -2584,14 +2573,14 @@ Gehen Sie zu Ihrem verdammten CSDN -Login und kopieren Sie, Sie können kopieren Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2599,9 +2588,9 @@ Gehen Sie zu Ihrem verdammten CSDN -Login und kopieren Sie, Sie können kopieren Änderungsprotokoll

- + - Saubere Blog -Beiträge  + Saubere Blog -Beiträge  @@ -2616,14 +2605,14 @@ Entfernen Sie nervige Seitenleisten, Kommentarblöcke, Anzeigen und mehr. Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2631,9 +2620,9 @@ Entfernen Sie nervige Seitenleisten, Kommentarblöcke, Anzeigen und mehr. Geändert von

- + - Zhihu dunkles Thema  + Zhihu dunkles Thema  @@ -2648,14 +2637,14 @@ Zhihus dunkler Themenstil Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2663,9 +2652,9 @@ Zhihus dunkler Themenstil Geändert von

- + - Dunkler Modus der WeChat-Webversion  + Dunkler Modus der WeChat-Webversion  @@ -2680,14 +2669,14 @@ Aktivieren Sie das Web-WeChat-Vollbildfenster,Dunkelmodus Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2695,9 +2684,9 @@ Aktivieren Sie das Web-WeChat-Vollbildfenster,Dunkelmodus Geändert von

- + - Sprung in die mobile Version von Sina Weibo  + Sprung in die mobile Version von Sina Weibo  @@ -2712,14 +2701,14 @@ Sina Weibo springt automatisch zur mobilen Version,Unterstützen Sie Weibo、A Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2727,11 +2716,11 @@ Sina Weibo springt automatisch zur mobilen Version,Unterstützen Sie Weibo、A Geändert von - +

Twitter (5)

- + - Twitter/X verstecken retweetete Beiträge  + Twitter/X verstecken retweetete Beiträge  @@ -2752,14 +2741,14 @@ Sina Weibo springt automatisch zur mobilen Version,Unterstützen Sie Weibo、A Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2769,9 +2758,9 @@ Sina Weibo springt automatisch zur mobilen Version,Unterstützen Sie Weibo、A Geändert von

- + - Download von Twitter Media (2025.12.02 behoben)  + Download von Twitter Media (2025.12.02 behoben)  @@ -2792,14 +2781,14 @@ Sina Weibo springt automatisch zur mobilen Version,Unterstützen Sie Weibo、A Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2809,9 +2798,9 @@ Sina Weibo springt automatisch zur mobilen Version,Unterstützen Sie Weibo、A Geändert von

- + - Twitter (x) Blacklist und Blocked List Download  + Twitter (x) Blacklist und Blocked List Download  @@ -2826,14 +2815,14 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2841,9 +2830,9 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Geändert von

- + - Twitter zeigt das normale Datum und die normale Uhrzeit an  + Twitter zeigt das normale Datum und die normale Uhrzeit an  @@ -2865,22 +2854,22 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2918,11 +2907,11 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Geändert von - +

YouTube (5)

- + - YouTube -Assistent  + YouTube -Assistent  @@ -2943,14 +2932,14 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2960,9 +2949,9 @@ Wird verwendet, um Twitter (x) Blacklists und blockierte Listen herunterzuladen, Geändert von

- + - YouTube -Uhrenverknüpfungen später  + YouTube -Uhrenverknüpfungen später  @@ -2977,14 +2966,14 @@ Verwenden Sie Tastaturverknüpfungen, um das aktuelle YouTube -Video zum oder vo Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -2992,9 +2981,9 @@ Verwenden Sie Tastaturverknüpfungen, um das aktuelle YouTube -Video zum oder vo Geändert von

- + - Bessere YouTube -Volumensteuerungen  + Bessere YouTube -Volumensteuerungen  @@ -3009,14 +2998,14 @@ Fügen Sie den YouTube -Video -Player Schieberegler hinzu, um die Volumenänderu Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -3024,9 +3013,9 @@ Fügen Sie den YouTube -Video -Player Schieberegler hinzu, um die Volumenänderu Geändert von

- + - YouTube Dynamic Video Grid  + YouTube Dynamic Video Grid  @@ -3041,14 +3030,14 @@ Passen Sie das YouTube -Video -Netz dynamisch anhand der Fensterbreite an, um di Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -3058,9 +3047,9 @@ Passen Sie das YouTube -Video -Netz dynamisch anhand der Fensterbreite an, um di Geändert von

- + - YouTube Pro: Audio-Enhancer  + YouTube Pro: Audio-Enhancer  @@ -3081,14 +3070,14 @@ Passen Sie das YouTube -Video -Netz dynamisch anhand der Fensterbreite an, um di Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -3096,11 +3085,11 @@ Passen Sie das YouTube -Video -Netz dynamisch anhand der Fensterbreite an, um di Geändert von - +

TikTok (1)

- + - TIKTOK -Benutzerinformationen  + TIKTOK -Benutzerinformationen  @@ -3115,14 +3104,14 @@ TIKTOK zeigt erweiterte Informationen zum Profil an Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -3130,11 +3119,11 @@ TIKTOK zeigt erweiterte Informationen zum Profil an Geändert von - +

Bilibili (2)

- + - Bilibili-Video-Downloader  + Bilibili-Video-Downloader  @@ -3149,14 +3138,14 @@ Laden Sie Bilibili-Videos herunter(Unterstützt keine Dramen) Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -3164,9 +3153,9 @@ Laden Sie Bilibili-Videos herunter(Unterstützt keine Dramen) Geändert von

- + - Bilibili Live-Raumblockierungstool  + Bilibili Live-Raumblockierungstool  @@ -3174,21 +3163,21 @@ Laden Sie Bilibili-Videos herunter(Unterstützt keine Dramen)

-Bilibili Live-Raumblockierungstool,Support-Management-Liste,Batch-Blockierung,Export、Importlisten etc.…… +Bilibili Live-Raumblockierungstool,Support-Management-Liste,Batch-Blockierung,Export、Importlisten usw.……
Greasemonkey / - + - + Readme-Datei / diskutieren / - + Quellcode / Installieren / @@ -3196,7 +3185,7 @@ Bilibili Live-Raumblockierungstool,Support-Management-Liste,Batch-Blockierun Geändert von
- + @@ -3205,7 +3194,7 @@ Bilibili Live-Raumblockierungstool,Support-Management-Liste,Batch-Blockierun Um ein beliebiges Skript zu verwenden,Zuerst müssen Sie den Browser installieren **Tampermonkey Script Manager-Erweiterung([Chrome](https://pan.lanpw.com/b073l8d1e)** / **[Firefox](https://addons.mozilla.org/firefox/addon/tampermonkey/)** / **[Edge](https://microsoftedge.microsoft.com/addons/detail/tampermonkey/iikmkjmpaadaobahmlepeloendndfphd?hl=zh-CN))。** - Klicken Sie auf das Formular **\[Installieren\]** Rufen Sie direkt die Installationsoberfläche des Skript-Managers auf。 -- Wenn Github Die Zugriffsgeschwindigkeit ist zu langsam,Sie können wählen, ob Sie klicken möchten GreasyFork **\[Installieren\]** Danach wird eine Eingabeaufforderung zur Erweiterung angezeigt,Klicken Sie erneut **\[Installieren\]** Das ist es。 +- Wenn Github Die Zugriffsgeschwindigkeit ist zu langsam,Sie können wählen, ob Sie klicken möchten GreasyFork **\[Installieren\]** Danach erscheint eine Eingabeaufforderung zur Erweiterung,Klicken Sie erneut **\[Installieren\]** Das ist es。 - [Detailliertes Tutorial ansehen](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md) > [!IMPORTANT] @@ -3245,7 +3234,7 @@ Um ein beliebiges Skript zu verwenden,Zuerst müssen Sie den Browser installie > - Sohn der Wüste :+1: > - Kopiert [Sohn der Wüste](https://github.com/maboloshi)Lager[github-chinese](https://github.com/maboloshi/github-chinese)Code innerhalb
> - In diesem Lager`writer.py` `update-contributors.yml` Kopiert mit[tributors_images.yml](https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml)Code im Inneren -> - Diese Repository-Readme-Datei wird kopiert[github-chinese/README.md](https://github.com/maboloshi/github-chinese#:~:text=%E6%B5%8F%E8%A7%88%E5%99%A8%E4%B8%8ESkriptmanager)Inhalt `So installieren Sie es/Verwenden Sie ein Skript?` +> - Diese Repository-Readme-Datei wird kopiert[github-chinese/README.md](https://github.com/maboloshi/github-chinese#:~:text=%E6%B5%8F%E8%A7%88%E5%99%A8%E4%B8%8ESkriptmanager)Inhalt `Anleitung zur Installation/Verwenden Sie ein Skript?` > [!TIP] > @@ -3271,6 +3260,7 @@ Um ein beliebiges Skript zu verwenden,Zuerst müssen Sie den Browser installie 人民的勤务员 Volksroboter +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Beitragsliste von: [contributors](https://github.com/jaywcjlove/github-action- ## 🏛️ Open-Source-Lizenzvereinbarung -Dieses Projekt verwendet MIT Lizenz Autorisieren。 -MIT Bei der Lizenz handelt es sich um eine freizügige Open-Source-Lizenzvereinbarung,Einzelheiten finden Sie unter Vollständiger Lizenztext。 +Dieses Projekt verwendet MIT Lizenz Autorisieren。 +MIT Bei der Lizenz handelt es sich um eine freizügige Open-Source-Lizenzvereinbarung,Einzelheiten finden Sie unter Vollständiger Lizenztext
@@ -3297,7 +3287,7 @@ MIT Bei der Lizenz handelt es sich um eine freizügige Open-Source-Lizenzvereinb ## 🤝 Verhaltenskodex -Um eine freundliche Atmosphäre zu gewährleisten、Eine respektvolle und integrative Entwicklungsumgebung,Wir haben Folgendes entwickeltVerhaltenskodex。Jeder Mitwirkende wird gebeten, diese Richtlinien zu befolgen。 +Um eine freundliche Atmosphäre zu gewährleisten、Eine respektvolle und integrative Entwicklungsumgebung,Wir haben Folgendes entwickeltVerhaltenskodex。Jeder Mitwirkende wird gebeten, diese Richtlinien zu befolgen。
@@ -3310,7 +3300,7 @@ Um eine freundliche Atmosphäre zu gewährleisten、Eine respektvolle und integr Wenn Sie eine Schwachstelle finden,Bitte öffnen Sie eines[Entwurf von Sicherheitsempfehlungen](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Auch Pull-Requests sind willkommen,aber aus Sicherheitsgründen,Bitte senden Sie eine E-Mail an und warten Sie auf eine Antwort, bevor Sie sie veröffentlichen。 -Einzelheiten finden Sie unter Sicherheitspolitik +Einzelheiten finden Sie unter Sicherheitspolitik
@@ -3320,7 +3310,7 @@ Einzelheiten finden Sie unter Sicherheitspolitik ## 💖 Beitragsleitfaden -Vielen Dank für Ihr Interesse an diesem Projekt!Wir haben Folgendes entwickeltBeitragsleitfaden。Damit Sie reibungslos Code oder Dokumentation beisteuern können,Bitte bevor Sie Code oder Fragen einreichen,Lesen Sie den Inhalt sorgfältig durch。 +Vielen Dank für Ihr Interesse an diesem Projekt!Wir haben Folgendes entwickeltBeitragsleitfaden。Damit Sie reibungslos Code oder Dokumentation beisteuern können,Bitte bevor Sie Code oder Fragen einreichen,Lesen Sie den Inhalt sorgfältig durch。
diff --git a/docs/en/LICENSE.md b/docs/en/LICENSE.md index 52a313b6a..5b2f61cb6 100644 --- a/docs/en/LICENSE.md +++ b/docs/en/LICENSE.md @@ -11,7 +11,7 @@ # 🏛️ MIT License -Copyright © 2024-2025 [人民的勤务员](https://github.com/ChinaGodMan) +Copyright © 2024-2026 [人民的勤务员](https://github.com/ChinaGodMan) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/en/README.md b/docs/en/README.md index f22de0339..775f69316 100644 --- a/docs/en/README.md +++ b/docs/en/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국
- +
The script comes from the vast number of netizens on the Internet,I just made some changes.Thanks netizens
If there is any infringement,Contact must be deleted
- + Recommended:
Support
Support
@@ -57,37 +57,26 @@ 💡 Tip: The above list of script managers and browsers is not exhaustive
The script runs fine in the following environment
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> This repository is only available inGitHubhosted on,Not hereGitCodeandXPlazahosted on。The following repositories are all mirrors。
-> :trollface: If you are using it in mainland Chinagit cloneDownload speed is too slow,You can also use the following address -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Mirror account,non-identity) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Browser and Script Manager](#-Browser and Script Manager) | -[❔️ How to install or use the script](#%EF%B8%8F-How to install or use the script) | -[🙏 Special thanks to open source](#-Special thanks to open source) | -[🛡️ security policy](#%EF%B8%8F-security policy) | -[🤝 code of conduct](#-code of conduct) | -[🏛️ Open source license agreement](#%EF%B8%8F-Open source license agreement) | +[🌐 Browser and Script Manager](#-Browser-and-Script-Manager) | +[❔️ How to install or use the script](#%EF%B8%8F-How-to-install-or-use-the-script) | +[🙏 Special thanks to open source](#-Special-thanks-to-open-source) | +[🛡️ security policy](#%EF%B8%8F-security-policy) | +[🤝 code of conduct](#-code-of-conduct) | +[🏛️ Open source license agreement](#%EF%B8%8F-Open-source-license-agreement) | [🧠 Contributor](#-Contributor) | -[💖 Contribution Guide](#-Contribution Guide) | -[⭐ star history](#-star history) | -[📜 script list](#-script list) +[💖 Contribution Guide](#-Contribution-Guide) | +[⭐ star history](#-star-history) | +[📜 script list](#-script-list) ## 📜 script list @@ -96,14 +85,14 @@ **The current number of published scripts in the repository:85,Script includes:** -
web script (10) +
web script (10) | GreasyFork (12) - | adult script (11) - | Google Script (2) - | GitHub Script (20) - | Translate script (3) - | AI Script (9) - | blog site (5) + | adult script (11) + | Google Script (2) + | GitHub Script (20) + | Translate script (3) + | AI Script (9) + | blog site (5) | Twitter (5) | YouTube (5) | TikTok (1) @@ -113,9 +102,9 @@

web script (10)

- + - scroll button  + scroll button  @@ -136,22 +125,22 @@ Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Web page writing clip version authorization manager  + Web page writing clip version authorization manager  @@ -172,14 +161,14 @@ Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -187,9 +176,9 @@ Change log

- + - Remove link underline  + Remove link underline  @@ -204,22 +193,22 @@ Remove link underlines on all sites,and handle new links dynamically Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Highlight web keywords  + Highlight web keywords  @@ -234,22 +223,22 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Highlight keywords on the web  + Highlight keywords on the web  @@ -270,22 +259,22 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Pin to top and bottom buttons  + Pin to top and bottom buttons  @@ -306,14 +295,14 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -321,9 +310,9 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Change log

- + - Small window preview  + Small window preview  @@ -344,14 +333,14 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -359,9 +348,9 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Change log

- + - Beautify web forms with gorgeous gradients  + Beautify web forms with gorgeous gradients  @@ -382,14 +371,14 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -397,9 +386,9 @@ Custom keyword highlighting on web pages including dynamic loading when scrollin Change log

- + - Text to link  + Text to link  @@ -414,14 +403,14 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -429,9 +418,9 @@ Convert text links to clickable links Modified from

- + - MarkDown Cloud Cut Notes  + MarkDown Cloud Cut Notes  @@ -452,14 +441,14 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -468,12 +457,12 @@ Convert text links to clickable links Modified from - - + +

GreasyFork (12)

- + - Greasy fork script pages for URL enhancement  + Greasy fork script pages for URL enhancement  @@ -494,22 +483,22 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Greasyfork Glue craftsman  + Greasyfork Glue craftsman  @@ -530,14 +519,14 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -545,9 +534,9 @@ Convert text links to clickable links Change log

- + - Script Finder GreasyFork Script Lookup  + Script Finder GreasyFork Script Lookup  @@ -568,14 +557,14 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -583,9 +572,9 @@ Convert text links to clickable links Change log

- + - Greasyfork Script to display ratings  + Greasyfork Script to display ratings  @@ -606,22 +595,22 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - GreasyFork: Navigation bar enhancement  + GreasyFork: Navigation bar enhancement  @@ -642,22 +631,22 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Convert text links to clickable links Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -693,9 +682,9 @@ Convert text links to clickable links Change log

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - GreasyFork Notification Assistant  + GreasyFork Notification Assistant  @@ -746,14 +735,14 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -761,9 +750,9 @@ Search using GoogleGreasyForkandSleazyForkupper script Change log

- + - GreaysFork EnhanceWebHookSync settings  + GreaysFork EnhanceWebHookSync settings  @@ -784,14 +773,14 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -799,9 +788,9 @@ Search using GoogleGreasyForkandSleazyForkupper script Change log

- + - GreasyFork User-published script data visualization  + GreasyFork User-published script data visualization  @@ -822,14 +811,14 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -837,9 +826,9 @@ Search using GoogleGreasyForkandSleazyForkupper script Change log

- + - Greasyfork Display registration time  + Greasyfork Display registration time  @@ -860,14 +849,14 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -877,9 +866,9 @@ Search using GoogleGreasyForkandSleazyForkupper script Modified from

- + - Greasyfork not updated script highlighted  + Greasyfork not updated script highlighted  @@ -900,14 +889,14 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -916,12 +905,12 @@ Search using GoogleGreasyForkandSleazyForkupper script Modified from - - + +

adult script (11)

- + - MissAv batch backup collection videos  + MissAv batch backup collection videos  @@ -942,14 +931,14 @@ Search using GoogleGreasyForkandSleazyForkupper script Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -957,9 +946,9 @@ Search using GoogleGreasyForkandSleazyForkupper script Change log

- + - MissAV Automatic login  + MissAV Automatic login  @@ -974,14 +963,14 @@ Detection MissAV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -989,9 +978,9 @@ Detection MissAV state,and automatically log in when not logged in Change log

- + - ThisAV Automatic login  + ThisAV Automatic login  @@ -1006,14 +995,14 @@ Detection ThisAV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1021,9 +1010,9 @@ Detection ThisAV state,and automatically log in when not logged in Change log

- + - JableTV Automatic login  + JableTV Automatic login  @@ -1038,14 +1027,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1053,9 +1042,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - MissAV video download tool  + MissAV video download tool  @@ -1076,14 +1065,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1091,9 +1080,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - xvideos push download  + xvideos push download  @@ -1114,14 +1103,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1129,9 +1118,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - Pornhub video download with one click  + Pornhub video download with one click  @@ -1152,14 +1141,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1167,9 +1156,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - xhamster video one-click download assistant  + xhamster video one-click download assistant  @@ -1190,14 +1179,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1205,9 +1194,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - XnxxVideos Video One-click Download Assistant  + XnxxVideos Video One-click Download Assistant  @@ -1228,14 +1217,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1243,9 +1232,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - MissAV Enhanced Assistant  + MissAV Enhanced Assistant  @@ -1266,14 +1255,14 @@ Detection JableTV state,and automatically log in when not logged in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1281,9 +1270,9 @@ Detection JableTV state,and automatically log in when not logged in Change log

- + - Just turned 18 years old  + Just turned 18 years old  @@ -1298,14 +1287,14 @@ Since I just turned 18, I can watch adult content Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1314,12 +1303,12 @@ Since I just turned 18, I can watch adult content Modified from - - + +

Google Script (2)

- + - Block Google search sites  + Block Google search sites  @@ -1334,22 +1323,22 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Google Advanced search assistant  + Google Advanced search assistant  @@ -1370,26 +1359,26 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install / Change log - - + +

GitHub Script (20)

- + - 🤠 Github enhanced assistant warehouse display size  + 🤠 Github enhanced assistant warehouse display size  @@ -1410,14 +1399,14 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1427,9 +1416,9 @@ Search for a Google Blocking a specified site Modified from

- + - GitHub Sort by date  + GitHub Sort by date  @@ -1450,22 +1439,22 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - GitHub folder downloader  + GitHub folder downloader  @@ -1486,14 +1475,14 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1501,9 +1490,9 @@ Search for a Google Blocking a specified site Change log

- + - Github Copy original file URL with download files  + Github Copy original file URL with download files  @@ -1524,14 +1513,14 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1539,9 +1528,9 @@ Search for a Google Blocking a specified site Change log

- + - GitHub Submit information display web view  + GitHub Submit information display web view  @@ -1562,22 +1551,22 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - GitHub File list beautifier  + GitHub File list beautifier  @@ -1598,14 +1587,14 @@ Search for a Google Blocking a specified site Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1613,9 +1602,9 @@ Search for a Google Blocking a specified site Change log

- + - GitHub Automatically confirm device authorization  + GitHub Automatically confirm device authorization  @@ -1630,14 +1619,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1645,9 +1634,9 @@ existGitHubThe authorization page automatically enters the authorization code an Change log

- + - Github List of code languages show all  + Github List of code languages show all  @@ -1668,14 +1657,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1683,9 +1672,9 @@ existGitHubThe authorization page automatically enters the authorization code an Change log

- + - GitHub warehouse quick jump assistant  + GitHub warehouse quick jump assistant  @@ -1706,14 +1695,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1721,9 +1710,9 @@ existGitHubThe authorization page automatically enters the authorization code an Change log

- + - Open jsDelivr link on Github  + Open jsDelivr link on Github  @@ -1744,14 +1733,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1759,9 +1748,9 @@ existGitHubThe authorization page automatically enters the authorization code an Change log

- + - GitHub Gist code snippet copy and downloader  + GitHub Gist code snippet copy and downloader  @@ -1782,14 +1771,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1799,9 +1788,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub shortcut key translation assistant  + GitHub shortcut key translation assistant  @@ -1822,14 +1811,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1837,9 +1826,9 @@ existGitHubThe authorization page automatically enters the authorization code an Change log

- + - GitHub Star Warehouse Notes Assistant  + GitHub Star Warehouse Notes Assistant  @@ -1860,14 +1849,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1877,9 +1866,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub jump to DeepWiKi  + GitHub jump to DeepWiKi  @@ -1900,14 +1889,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1917,9 +1906,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub Hide Copilot  + GitHub Hide Copilot  @@ -1940,14 +1929,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1957,9 +1946,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub Email Address Finder  + GitHub Email Address Finder  @@ -1980,14 +1969,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -1995,9 +1984,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub displays file and folder sizes  + GitHub displays file and folder sizes  @@ -2019,14 +2008,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2036,9 +2025,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub Co-author  + GitHub Co-author  @@ -2060,14 +2049,14 @@ existGitHubThe authorization page automatically enters the authorization code an Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2075,9 +2064,9 @@ existGitHubThe authorization page automatically enters the authorization code an Modified from

- + - GitHub Notification Filter Status  + GitHub Notification Filter Status  @@ -2092,14 +2081,14 @@ github-notification-inbox-toggle development version Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2107,9 +2096,9 @@ github-notification-inbox-toggle development version Modified from

- + - GitHub copy clone command button (fork)  + GitHub copy clone command button (fork)  @@ -2130,14 +2119,14 @@ github-notification-inbox-toggle development version Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2146,12 +2135,12 @@ github-notification-inbox-toggle development version Modified from - - + +

Translate script (3)

- + - Foreign Language Terminator  + Foreign Language Terminator  @@ -2166,14 +2155,14 @@ Identify non-Chinese characters. If the length is greater than 5 and the transla Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2181,9 +2170,9 @@ Identify non-Chinese characters. If the length is greater than 5 and the transla Change log

- + - Web page translation – automatic translation into Chinese  + Web page translation – automatic translation into Chinese  @@ -2198,22 +2187,22 @@ Add a Google Translation icon to the lower right corner of each non-Chinese web Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Translation widget | Translate any language  + Translation widget | Translate any language  @@ -2234,14 +2223,14 @@ Add a Google Translation icon to the lower right corner of each non-Chinese web Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2250,12 +2239,12 @@ Add a Google Translation icon to the lower right corner of each non-Chinese web Modified from - - + +

AI Script (9)

- + - ChatGPT Collapse self message and max width  + ChatGPT Collapse self message and max width  @@ -2276,14 +2265,14 @@ Add a Google Translation icon to the lower right corner of each non-Chinese web Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2291,9 +2280,9 @@ Add a Google Translation icon to the lower right corner of each non-Chinese web Change log

- + - ChatGPTCode font size reduced  + ChatGPTCode font size reduced  @@ -2308,22 +2297,22 @@ ChatGPT Make code font smaller and automatically wrap Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - ChatGPT Character counter limit (CCCL)  + ChatGPT Character counter limit (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT Make code font smaller and automatically wrap Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2359,9 +2348,9 @@ ChatGPT Make code font smaller and automatically wrap Change log

- + - ChatGPT Chat copy code and export code buttons  + ChatGPT Chat copy code and export code buttons  @@ -2382,14 +2371,14 @@ ChatGPT Make code font smaller and automatically wrap Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2397,9 +2386,9 @@ ChatGPT Make code font smaller and automatically wrap Change log

- + - ChatGPT code highlighted  + ChatGPT code highlighted  @@ -2420,14 +2409,14 @@ ChatGPT Make code font smaller and automatically wrap Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2435,9 +2424,9 @@ ChatGPT Make code font smaller and automatically wrap Change log

- + - ChatGPT Code Tool  + ChatGPT Code Tool  @@ -2452,14 +2441,14 @@ Add functionality to ChatGPT code blocks, including the option to save or copy c Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2467,9 +2456,9 @@ Add functionality to ChatGPT code blocks, including the option to save or copy c Modified from

- + - ChatGPT Insert Prompt Word  + ChatGPT Insert Prompt Word  @@ -2484,14 +2473,14 @@ Insert the command into the ChatGPT input box via key combination Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2499,9 +2488,9 @@ Insert the command into the ChatGPT input box via key combination Modified from

- + - ChatGPT Save conversation  + ChatGPT Save conversation  @@ -2516,14 +2505,14 @@ Save the conversation as a .txt file Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2533,9 +2522,9 @@ Save the conversation as a .txt file Modified from

- + - ChatGPT Easily manage chats  + ChatGPT Easily manage chats  @@ -2550,26 +2539,26 @@ Search chat, filter chat, fast/batch delete chat. Greasemonkey / - + - + readme file / discuss / - + Source code / Install / Modified from - - + +

blog site (5)

- + - Unrestricted CSDN login  + Unrestricted CSDN login  @@ -2584,14 +2573,14 @@ Go to your fucking CSDN login and copy, you can copy without logging in Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2599,9 +2588,9 @@ Go to your fucking CSDN login and copy, you can copy without logging in Change log

- + - Clean blog posts  + Clean blog posts  @@ -2616,14 +2605,14 @@ Remove annoying sidebars, comment blocks, ads, and more. Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2631,9 +2620,9 @@ Remove annoying sidebars, comment blocks, ads, and more. Modified from

- + - Zhihu dark theme  + Zhihu dark theme  @@ -2648,14 +2637,14 @@ Zhihu’s dark theme style Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2663,9 +2652,9 @@ Zhihu’s dark theme style Modified from

- + - WeChat web version dark mode  + WeChat web version dark mode  @@ -2680,14 +2669,14 @@ Enable web WeChat full screen window,dark mode Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2695,9 +2684,9 @@ Enable web WeChat full screen window,dark mode Modified from

- + - Sina Weibo mobile version jump  + Sina Weibo mobile version jump  @@ -2712,26 +2701,26 @@ Sina Weibo automatically jumps to the mobile version,Support Weibo、article Greasemonkey / - + - + readme file / discuss / - + Source code / Install / Modified from - - + +

Twitter (5)

- + - Twitter/X Hide retweeted posts  + Twitter/X Hide retweeted posts  @@ -2752,14 +2741,14 @@ Sina Weibo automatically jumps to the mobile version,Support Weibo、article Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2769,9 +2758,9 @@ Sina Weibo automatically jumps to the mobile version,Support Weibo、article Modified from

- + - Twitter Media Downloader (2025.12.02 Fixed)  + Twitter Media Downloader (2025.12.02 Fixed)  @@ -2792,14 +2781,14 @@ Sina Weibo automatically jumps to the mobile version,Support Weibo、article Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2809,9 +2798,9 @@ Sina Weibo automatically jumps to the mobile version,Support Weibo、article Modified from

- + - Twitter(X) Blacklist and Blocked List Download  + Twitter(X) Blacklist and Blocked List Download  @@ -2826,14 +2815,14 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2841,9 +2830,9 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Modified from

- + - Twitter displays normal date and time  + Twitter displays normal date and time  @@ -2865,22 +2854,22 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Greasemonkey / - + - + readme file / discuss / - + Source code / Install

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2917,12 +2906,12 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Modified from - - + +

YouTube (5)

- + - YouTube Assistant  + YouTube Assistant  @@ -2943,14 +2932,14 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2960,9 +2949,9 @@ Used to download Twitter(X) blacklists and blocked lists, support automatic dete Modified from

- + - YouTube Watch shortcuts later  + YouTube Watch shortcuts later  @@ -2977,14 +2966,14 @@ Use keyboard shortcuts to add or delete the current YouTube video to or from the Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -2992,9 +2981,9 @@ Use keyboard shortcuts to add or delete the current YouTube video to or from the Modified from

- + - Better YouTube volume controls  + Better YouTube volume controls  @@ -3009,14 +2998,14 @@ Add sliders to YouTube video player to make volume changes more natural. Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -3024,9 +3013,9 @@ Add sliders to YouTube video player to make volume changes more natural. Modified from

- + - YouTube Dynamic Video Grid  + YouTube Dynamic Video Grid  @@ -3041,14 +3030,14 @@ Dynamically adjust the YouTube video grid based on window width to display the b Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -3058,9 +3047,9 @@ Dynamically adjust the YouTube video grid based on window width to display the b Modified from

- + - YouTube Pro: Audio Enhancer  + YouTube Pro: Audio Enhancer  @@ -3081,26 +3070,26 @@ Dynamically adjust the YouTube video grid based on window width to display the b Greasemonkey / - + - + readme file / discuss / - + Source code / Install / Modified from - - + +

TikTok (1)

- + - TikTok user information  + TikTok user information  @@ -3115,26 +3104,26 @@ TikTok displays more extended information on profile Greasemonkey / - + - + readme file / discuss / - + Source code / Install / Modified from - - + +

Bilibili (2)

- + - Bilibili video downloader  + Bilibili video downloader  @@ -3149,14 +3138,14 @@ Download Bilibili videos(Does not support dramas) Greasemonkey / - + - + readme file / discuss / - + Source code / Install / @@ -3164,9 +3153,9 @@ Download Bilibili videos(Does not support dramas) Modified from

- + - Bilibili Live Room Blocking Tool  + Bilibili Live Room Blocking Tool  @@ -3181,22 +3170,22 @@ Bilibili Live Room Blocking Tool,Support management list,Batch blocking,Ex Greasemonkey / - + - + readme file / discuss / - + Source code / Install / Modified from - - + + @@ -3271,6 +3260,7 @@ To use any script,First you need to install the browser **Tampermonkey Script 人民的勤务员 people’s robots +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Contributions list by: [contributors](https://github.com/jaywcjlove/github-act ## 🏛️ Open source license agreement -This project uses MIT license Authorize。 -MIT The license is a permissive open source licensing agreement,For details, please refer to Full text of license。 +This project uses MIT license Authorize。 +MIT The license is a permissive open source licensing agreement,For details, please refer to Full text of license
@@ -3297,7 +3287,7 @@ MIT The license is a permissive open source licensing agreement,For details, p ## 🤝 code of conduct -To ensure a friendly、A respectful and inclusive development environment,We have developed the followingcode of conduct。Each contributor is asked to follow these guidelines。 +To ensure a friendly、A respectful and inclusive development environment,We have developed the followingcode of conduct。Each contributor is asked to follow these guidelines。
@@ -3310,7 +3300,7 @@ To ensure a friendly、A respectful and inclusive development environment,We h If you find a vulnerability,please open one[draft security recommendations](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Pull requests are also welcome,but for security reasons,Please send an email to and wait for a reply before making it public。 -For details, please refer to security policy +For details, please refer to security policy
@@ -3320,7 +3310,7 @@ For details, please refer to security policyContribution Guide。To help you contribute code or documentation smoothly,Before submitting code or questions, please,Read the content carefully。 +Thank you for your interest in this project!We have developed the followingContribution Guide。To help you contribute code or documentation smoothly,Before submitting code or questions, please,Read the content carefully。
diff --git a/docs/es/README.md b/docs/es/README.md index 734b453cb..2973ee36e 100644 --- a/docs/es/README.md +++ b/docs/es/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
El guión proviene de la gran cantidad de internautas en Internet.,Acabo de hacer algunos cambios.gracias internautas
Si hay alguna infracción,El contacto debe ser eliminado
- + Recomendado:
Support
Support
@@ -57,37 +57,26 @@ 💡 Tip: La lista anterior de administradores de scripts y navegadores no es exhaustiva.
El script funciona bien en el siguiente entorno
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Este repositorio sólo está disponible enGitHubalojado en,aquí noGitCodeyXPlazaalojado en。Los siguientes repositorios son todos espejos.。
-> :trollface: Si lo estás usando en China continentalgit cloneLa velocidad de descarga es demasiado lenta,También puede utilizar la siguiente dirección -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Cuenta espejo,no identidad) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Navegador y administrador de scripts](#-Navegador y administrador de scripts) | -[❔️ Cómo instalar o utilizar el script](#%EF%B8%8F-Cómo instalar o utilizar el script) | -[🙏 Un agradecimiento especial al código abierto.](#-Un agradecimiento especial al código abierto.) | -[🛡️ política de seguridad](#%EF%B8%8F-política de seguridad) | -[🤝 Código de conducta](#-Código de conducta) | -[🏛️ Acuerdo de licencia de código abierto](#%EF%B8%8F-Acuerdo de licencia de código abierto) | +[🌐 Navegador y administrador de scripts](#-Navegador-y-administrador-de-scripts) | +[❔️ Cómo instalar o utilizar el script](#%EF%B8%8F-Cómo-instalar-o-utilizar-el-script) | +[🙏 Un agradecimiento especial al código abierto.](#-Un-agradecimiento-especial-al-código-abierto.) | +[🛡️ política de seguridad](#%EF%B8%8F-política-de-seguridad) | +[🤝 Código de conducta](#-Código-de-conducta) | +[🏛️ Acuerdo de licencia de código abierto](#%EF%B8%8F-Acuerdo-de-licencia-de-código-abierto) | [🧠 Contribuyente](#-Contribuyente) | -[💖 Guía de contribución](#-Guía de contribución) | -[⭐ historia de las estrellas](#-historia de las estrellas) | -[📜 lista de guiones](#-lista de guiones) +[💖 Guía de contribución](#-Guía-de-contribución) | +[⭐ historia de las estrellas](#-historia-de-las-estrellas) | +[📜 lista de guiones](#-lista-de-guiones) ## 📜 lista de guiones @@ -96,14 +85,14 @@ **El número actual de scripts publicados en el repositorio.:85,El guión incluye:** -
guión web (10) +
guión web (10) | GreasyFork (12) - | guión para adultos (11) - | Google Guion (2) - | GitHub Guion (20) - | Traducir guión (3) - | AI Guion (9) - | sitio de blogs (5) + | guión para adultos (11) + | Google Guion (2) + | GitHub Guion (20) + | Traducir guión (3) + | AI Guion (9) + | sitio de blogs (5) | Twitter (5) | YouTube (5) | TikTok (1) @@ -113,9 +102,9 @@

guión web (10)

- + - botón de desplazamiento  + botón de desplazamiento  @@ -136,22 +125,22 @@ Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Administrador de autorización de versión de clip de escritura de página web  + Administrador de autorización de versión de clip de escritura de página web  @@ -172,14 +161,14 @@ Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -187,9 +176,9 @@ Registro de cambios

- + - Quitar enlace subrayado  + Quitar enlace subrayado  @@ -204,22 +193,22 @@ Eliminar enlaces subrayados en todos los sitios,y manejar nuevos enlaces diná Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Resaltar las palabras clave web  + Resaltar las palabras clave web  @@ -234,22 +223,22 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Resaltar las palabras clave en la web  + Resaltar las palabras clave en la web  @@ -270,22 +259,22 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Fijar a los botones superior e inferior  + Fijar a los botones superior e inferior  @@ -306,14 +295,14 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -321,9 +310,9 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Registro de cambios

- + - Vista previa de ventana pequeña  + Vista previa de ventana pequeña  @@ -344,14 +333,14 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -359,9 +348,9 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Registro de cambios

- + - Embellezca los formularios web con magníficos degradados  + Embellezca los formularios web con magníficos degradados  @@ -382,14 +371,14 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -397,9 +386,9 @@ Destacado de palabras clave personalizadas en páginas web que incluyen la carga Registro de cambios

- + - Texto para vincular  + Texto para vincular  @@ -414,14 +403,14 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -429,9 +418,9 @@ Convertir enlaces de texto a enlaces en clic en Modificado de

- + - Notas de corte de nube de markdown  + Notas de corte de nube de markdown  @@ -452,14 +441,14 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -468,12 +457,12 @@ Convertir enlaces de texto a enlaces en clic en Modificado de - - + +

GreasyFork (12)

- + - Páginas de secuencia de comandos de bifurcación grasosa para mejoras de URL  + Páginas de secuencia de comandos de bifurcación grasosa para mejoras de URL  @@ -494,22 +483,22 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Greasyfork Artesano del pegamento  + Greasyfork Artesano del pegamento  @@ -530,14 +519,14 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -545,9 +534,9 @@ Convertir enlaces de texto a enlaces en clic en Registro de cambios

- + - Script Finder Búsqueda de guiones de GreasyFork  + Script Finder Búsqueda de guiones de GreasyFork  @@ -568,14 +557,14 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -583,9 +572,9 @@ Convertir enlaces de texto a enlaces en clic en Registro de cambios

- + - Greasyfork Script para mostrar calificaciones  + Greasyfork Script para mostrar calificaciones  @@ -606,22 +595,22 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - GreasyFork: Mejora de la barra de navegación  + GreasyFork: Mejora de la barra de navegación  @@ -642,22 +631,22 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Convertir enlaces de texto a enlaces en clic en Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -693,9 +682,9 @@ Convertir enlaces de texto a enlaces en clic en Registro de cambios

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - GreasyFork Asistente de notificaciones  + GreasyFork Asistente de notificaciones  @@ -746,14 +735,14 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -761,9 +750,9 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Registro de cambios

- + - GreaysFork MejorarWebHookConfiguración de sincronización  + GreaysFork MejorarWebHookConfiguración de sincronización  @@ -784,14 +773,14 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -799,9 +788,9 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Registro de cambios

- + - GreasyFork Visualización de datos de script publicados por el usuario  + GreasyFork Visualización de datos de script publicados por el usuario  @@ -822,14 +811,14 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -837,9 +826,9 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Registro de cambios

- + - Greasyfork Muestra tiempo de registro  + Greasyfork Muestra tiempo de registro  @@ -860,14 +849,14 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -877,9 +866,9 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Modificado de

- + - GreasyFork no actualizado script resaltado  + GreasyFork no actualizado script resaltado  @@ -900,14 +889,14 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -916,12 +905,12 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Modificado de - - + +

guión para adultos (11)

- + - Videos de colección de copias de seguridad de Missav Batch  + Videos de colección de copias de seguridad de Missav Batch  @@ -942,14 +931,14 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -957,9 +946,9 @@ Buscar usando GoogleGreasyForkySleazyForkguión superior Registro de cambios

- + - MissAV Inicio de sesión automático  + MissAV Inicio de sesión automático  @@ -974,14 +963,14 @@ Detección MissAV estado,e iniciar sesión automáticamente cuando no haya inici Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -989,9 +978,9 @@ Detección MissAV estado,e iniciar sesión automáticamente cuando no haya inici Registro de cambios

- + - ThisAV Inicio de sesión automático  + ThisAV Inicio de sesión automático  @@ -1006,14 +995,14 @@ Detección ThisAV estado,e iniciar sesión automáticamente cuando no haya inici Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1021,9 +1010,9 @@ Detección ThisAV estado,e iniciar sesión automáticamente cuando no haya inici Registro de cambios

- + - JableTV Inicio de sesión automático  + JableTV Inicio de sesión automático  @@ -1038,14 +1027,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1053,9 +1042,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - Herramienta de descarga de video de Missav  + Herramienta de descarga de video de Missav  @@ -1076,14 +1065,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1091,9 +1080,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - descarga de push xvideos  + descarga de push xvideos  @@ -1114,14 +1103,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1129,9 +1118,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - Descarga de video pornhub con un solo clic  + Descarga de video pornhub con un solo clic  @@ -1152,14 +1141,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1167,9 +1156,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - Video de Xhamster Asistente de descarga de un solo clic  + Video de Xhamster Asistente de descarga de un solo clic  @@ -1190,14 +1179,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1205,9 +1194,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - XNXXVIDEOS Video One-Click Descargar Asistente  + XNXXVIDEOS Video One-Click Descargar Asistente  @@ -1228,14 +1217,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1243,9 +1232,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - Asistente mejorado de Missav  + Asistente mejorado de Missav  @@ -1266,14 +1255,14 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1281,9 +1270,9 @@ Detección JableTV estado,e iniciar sesión automáticamente cuando no haya inic Registro de cambios

- + - Acabo de cumplir 18 años  + Acabo de cumplir 18 años  @@ -1298,14 +1287,14 @@ Desde que acabo de cumplir 18 años, puedo ver contenido para adultos Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1314,12 +1303,12 @@ Desde que acabo de cumplir 18 años, puedo ver contenido para adultos Modificado de - - + +

Google Guion (2)

- + - Bloquear los sitios de búsqueda de Google  + Bloquear los sitios de búsqueda de Google  @@ -1334,22 +1323,22 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Google asistente de búsqueda avanzada  + Google asistente de búsqueda avanzada  @@ -1370,26 +1359,26 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / Registro de cambios - - + +

GitHub Guion (20)

- + - 🤠 Tamaño de visualización del almacén del asistente mejorado de Github  + 🤠 Tamaño de visualización del almacén del asistente mejorado de Github  @@ -1410,14 +1399,14 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1427,9 +1416,9 @@ Busque un Google bloqueando un sitio específico Modificado de

- + - GitHub Ordenar por fecha  + GitHub Ordenar por fecha  @@ -1450,22 +1439,22 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - GitHub descargador de carpetas  + GitHub descargador de carpetas  @@ -1486,14 +1475,14 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1501,9 +1490,9 @@ Busque un Google bloqueando un sitio específico Registro de cambios

- + - Github Copiar archivo original URL con archivos de descarga  + Github Copiar archivo original URL con archivos de descarga  @@ -1524,14 +1513,14 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1539,9 +1528,9 @@ Busque un Google bloqueando un sitio específico Registro de cambios

- + - GitHub Enviar información mostrar vista web  + GitHub Enviar información mostrar vista web  @@ -1562,22 +1551,22 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - GitHub Embellecedor de lista de archivos  + GitHub Embellecedor de lista de archivos  @@ -1598,14 +1587,14 @@ Busque un Google bloqueando un sitio específico Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1613,9 +1602,9 @@ Busque un Google bloqueando un sitio específico Registro de cambios

- + - GitHub Confirmar automáticamente la autorización del dispositivo  + GitHub Confirmar automáticamente la autorización del dispositivo  @@ -1630,14 +1619,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1645,9 +1634,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Registro de cambios

- + - Github Lista de lenguajes de código mostrar todo  + Github Lista de lenguajes de código mostrar todo  @@ -1668,14 +1657,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1683,9 +1672,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Registro de cambios

- + - Asistente de salto rápido del almacén de GitHub  + Asistente de salto rápido del almacén de GitHub  @@ -1706,14 +1695,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1721,9 +1710,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Registro de cambios

- + - Abra el enlace JSDelivr en Github  + Abra el enlace JSDelivr en Github  @@ -1744,14 +1733,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1759,9 +1748,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Registro de cambios

- + - Copia y descargador de fragmentos de código Github Gist  + Copia y descargador de fragmentos de código Github Gist  @@ -1782,14 +1771,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1799,9 +1788,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - Asistente de traducción de clave de acceso directo de GitHub  + Asistente de traducción de clave de acceso directo de GitHub  @@ -1822,14 +1811,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1837,9 +1826,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Registro de cambios

- + - Asistente de notas de almacén de estrellas de Github  + Asistente de notas de almacén de estrellas de Github  @@ -1860,14 +1849,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1877,9 +1866,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - Github salta a Deepwiki  + Github salta a Deepwiki  @@ -1900,14 +1889,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1917,9 +1906,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - Github Ocultar copiloto  + Github Ocultar copiloto  @@ -1940,14 +1929,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1957,9 +1946,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - Buscador de direcciones de correo electrónico de GitHub  + Buscador de direcciones de correo electrónico de GitHub  @@ -1980,14 +1969,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -1995,9 +1984,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - GitHub muestra tamaños de archivo y carpeta  + GitHub muestra tamaños de archivo y carpeta  @@ -2019,14 +2008,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2036,9 +2025,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - Coautor de Github  + Coautor de Github  @@ -2060,14 +2049,14 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2075,9 +2064,9 @@ existirGitHubLa página de autorización ingresa automáticamente el código de Modificado de

- + - Estado del filtro de notificación de github  + Estado del filtro de notificación de github  @@ -2092,14 +2081,14 @@ Versión de desarrollo de github-notification-inbox-toggle Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2107,9 +2096,9 @@ Versión de desarrollo de github-notification-inbox-toggle Modificado de

- + - Botón de comando copiar clonar de GitHub (bifurcación)  + Botón de comando copiar clonar de GitHub (bifurcación)  @@ -2130,14 +2119,14 @@ Versión de desarrollo de github-notification-inbox-toggle Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2146,12 +2135,12 @@ Versión de desarrollo de github-notification-inbox-toggle Modificado de - - + +

Traducir guión (3)

- + - Terminador de idiomas extranjeros  + Terminador de idiomas extranjeros  @@ -2166,14 +2155,14 @@ Identificar personajes no chinos. Si la longitud es mayor que 5 y el texto tradu Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2181,9 +2170,9 @@ Identificar personajes no chinos. Si la longitud es mayor que 5 y el texto tradu Registro de cambios

- + - Traducción de la página web: traducción automática al chino  + Traducción de la página web: traducción automática al chino  @@ -2198,22 +2187,22 @@ Agregue un icono de traducción de Google a la esquina inferior derecha de cada Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Widget de traducción |  + Widget de traducción |  @@ -2234,14 +2223,14 @@ Agregue un icono de traducción de Google a la esquina inferior derecha de cada Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2250,12 +2239,12 @@ Agregue un icono de traducción de Google a la esquina inferior derecha de cada Modificado de - - + +

AI Guion (9)

- + - ChatGPT Contraer automensaje y ancho máximo  + ChatGPT Contraer automensaje y ancho máximo  @@ -2276,14 +2265,14 @@ Agregue un icono de traducción de Google a la esquina inferior derecha de cada Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2291,9 +2280,9 @@ Agregue un icono de traducción de Google a la esquina inferior derecha de cada Registro de cambios

- + - ChatGPTTamaño de fuente del código reducido  + ChatGPTTamaño de fuente del código reducido  @@ -2308,22 +2297,22 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - ChatGPT Límite del contador de caracteres (CCCL)  + ChatGPT Límite del contador de caracteres (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2359,9 +2348,9 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Registro de cambios

- + - ChatGPT Botones de copiar código y exportar código de chat  + ChatGPT Botones de copiar código y exportar código de chat  @@ -2382,14 +2371,14 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2397,9 +2386,9 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Registro de cambios

- + - Código de chatgpt resaltado  + Código de chatgpt resaltado  @@ -2420,14 +2409,14 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2435,9 +2424,9 @@ ChatGPT Reducir la fuente del código y envolver automáticamente Registro de cambios

- + - Herramienta de código chatgpt  + Herramienta de código chatgpt  @@ -2452,14 +2441,14 @@ Agregue la funcionalidad a los bloques de código CHATGPT, incluida la opción d Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2467,9 +2456,9 @@ Agregue la funcionalidad a los bloques de código CHATGPT, incluida la opción d Modificado de

- + - Chatgpt inserte una palabra rápida  + Chatgpt inserte una palabra rápida  @@ -2484,14 +2473,14 @@ Inserte el comando en el cuadro de entrada de chatgpt a través de la combinaci Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2499,9 +2488,9 @@ Inserte el comando en el cuadro de entrada de chatgpt a través de la combinaci Modificado de

- + - Chatgpt guardar conversación  + Chatgpt guardar conversación  @@ -2516,14 +2505,14 @@ Guarde la conversación como un archivo .txt Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2533,9 +2522,9 @@ Guarde la conversación como un archivo .txt Modificado de

- + - Chatgpt administrar fácilmente los chats  + Chatgpt administrar fácilmente los chats  @@ -2550,26 +2539,26 @@ Buscar chat, filtrar chat, fast/lotes eliminar chat. Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / Modificado de - - + +

sitio de blogs (5)

- + - Iniciar sesión CSDN sin restricciones  + Iniciar sesión CSDN sin restricciones  @@ -2584,14 +2573,14 @@ Vaya a su jodido inicio de sesión y copia de CSDN, puede copiar sin iniciar ses Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2599,9 +2588,9 @@ Vaya a su jodido inicio de sesión y copia de CSDN, puede copiar sin iniciar ses Registro de cambios

- + - Publicaciones de blog limpias  + Publicaciones de blog limpias  @@ -2616,14 +2605,14 @@ Elimine barras laterales molestas, bloques de comentarios, anuncios y más. Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2631,9 +2620,9 @@ Elimine barras laterales molestas, bloques de comentarios, anuncios y más. Modificado de

- + - Tema oscuro de Zhihu  + Tema oscuro de Zhihu  @@ -2648,14 +2637,14 @@ El estilo de tema oscuro de Zhihu Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2663,9 +2652,9 @@ El estilo de tema oscuro de Zhihu Modificado de

- + - Modo oscuro de la versión web de WeChat  + Modo oscuro de la versión web de WeChat  @@ -2680,14 +2669,14 @@ Habilitar la ventana de pantalla completa de WeChat web,modo oscuro Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2695,9 +2684,9 @@ Habilitar la ventana de pantalla completa de WeChat web,modo oscuro Modificado de

- + - Salto de la versión móvil de Sina Weibo  + Salto de la versión móvil de Sina Weibo  @@ -2712,26 +2701,26 @@ Sina Weibo salta automáticamente a la versión móvil,Soporte Weibo、artícu Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / Modificado de - - + +

Twitter (5)

- + - Twitter/x Ocultar publicaciones retuiteadas  + Twitter/x Ocultar publicaciones retuiteadas  @@ -2752,14 +2741,14 @@ Sina Weibo salta automáticamente a la versión móvil,Soporte Weibo、artícu Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2769,9 +2758,9 @@ Sina Weibo salta automáticamente a la versión móvil,Soporte Weibo、artícu Modificado de

- + - Descarga de medios de Twitter (2025.12.02 solucionado)  + Descarga de medios de Twitter (2025.12.02 solucionado)  @@ -2792,14 +2781,14 @@ Sina Weibo salta automáticamente a la versión móvil,Soporte Weibo、artícu Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2809,9 +2798,9 @@ Sina Weibo salta automáticamente a la versión móvil,Soporte Weibo、artícu Modificado de

- + - Twitter (x) Descarga de lista de lista negra y bloqueada  + Twitter (x) Descarga de lista de lista negra y bloqueada  @@ -2826,14 +2815,14 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2841,9 +2830,9 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Modificado de

- + - Twitter muestra fecha y hora normales  + Twitter muestra fecha y hora normales  @@ -2865,22 +2854,22 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar

- + - Twitter(X)-Más  + Twitter(X)-Más  @@ -2901,14 +2890,14 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2917,12 +2906,12 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Modificado de - - + +

YouTube (5)

- + - Asistente de YouTube  + Asistente de YouTube  @@ -2943,14 +2932,14 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2960,9 +2949,9 @@ Se usa para descargar listas negras de Twitter (x) y listas bloqueadas, admite l Modificado de

- + - YouTube Watch atajos más tarde  + YouTube Watch atajos más tarde  @@ -2977,14 +2966,14 @@ Use atajos de teclado para agregar o eliminar el video actual de YouTube hacia o Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -2992,9 +2981,9 @@ Use atajos de teclado para agregar o eliminar el video actual de YouTube hacia o Modificado de

- + - Mejores controles de volumen de YouTube  + Mejores controles de volumen de YouTube  @@ -3009,14 +2998,14 @@ Agregue los controles deslizantes al reproductor de video de YouTube para hacer Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -3024,9 +3013,9 @@ Agregue los controles deslizantes al reproductor de video de YouTube para hacer Modificado de

- + - Grid de video dinámico de YouTube  + Grid de video dinámico de YouTube  @@ -3041,14 +3030,14 @@ Ajuste dinámicamente la cuadrícula de video de YouTube en función del ancho d Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -3058,9 +3047,9 @@ Ajuste dinámicamente la cuadrícula de video de YouTube en función del ancho d Modificado de

- + - YouTube Pro: potenciador de audio  + YouTube Pro: potenciador de audio  @@ -3081,26 +3070,26 @@ Ajuste dinámicamente la cuadrícula de video de YouTube en función del ancho d Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / Modificado de - - + +

TikTok (1)

- + - Información del usuario de Tiktok  + Información del usuario de Tiktok  @@ -3115,26 +3104,26 @@ Tiktok muestra información más extendida sobre el perfil Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / Modificado de - - + +

Bilibili (2)

- + - Descargador de videos Bilibili  + Descargador de videos Bilibili  @@ -3149,14 +3138,14 @@ Descargar vídeos de Bilibili(No soporta dramas) Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / @@ -3164,9 +3153,9 @@ Descargar vídeos de Bilibili(No soporta dramas) Modificado de

- + - Herramienta de bloqueo de salas en vivo Bilibili  + Herramienta de bloqueo de salas en vivo Bilibili  @@ -3181,22 +3170,22 @@ Herramienta de bloqueo de salas en vivo Bilibili,Lista de gestión de soporte Greasemonkey / - + - + archivo Léame / conversar / - + código fuente / Instalar / Modificado de - - + + @@ -3243,22 +3232,22 @@ Para usar cualquier script,Primero necesitas instalar el navegador. **Tampermo > [!TIP] > > - hijo del desierto :+1: -> - Copiado [hijo del desierto](https://github.com/maboloshi)depósito[github-chinese](https://github.com/maboloshi/github-chinese)código dentro
+> - copiado [hijo del desierto](https://github.com/maboloshi)depósito[github-chinese](https://github.com/maboloshi/github-chinese)código dentro
> - en este almacén`writer.py` `update-contributors.yml` Copiado usando[tributors_images.yml](https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml)código dentro > - Este archivo Léame del repositorio se copia[github-chinese/README.md](https://github.com/maboloshi/github-chinese#:~:text=%E6%B5%8F%E8%A7%88%E5%99%A8%E4%B8%8EAdministrador%20de%20guiones)contenido `Cómo instalar/Usar guión?` > [!TIP] > -> - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui Liu Zhan Peng :+1: -> - _Traducción automática de este repositorio y Action Un agradecimiento especial a Yankee.[Adam Lui Liu Zhan Peng](https://github.com/adamlui)Grandes ideas y código!_ :trollface: -> - _El estilo de naming de este almacén está inspirado en los Yankees.[Adam Lui Liu Zhan Peng](https://github.com/adamlui)Inspirar_ :trollface: -> - _El archivo Léame en este repositorio proviene de[Adam Lui Liu Zhan Peng](https://github.com/adamlui)estilo de autoinforme_ :trollface: -> - _El salto de redirección mutua dentro del guión proviene de[Adam Lui Liu Zhan Peng](https://github.com/adamlui)estilo de autoinforme_ :trollface: +> - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui Liu Zhanpeng :+1: +> - _Traducción automática de este repositorio y Action Un agradecimiento especial a Yankee.[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Grandes ideas y código!_ :trollface: +> - _El estilo de naming de este almacén está inspirado en los Yankees.[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Inspirar_ :trollface: +> - _El archivo Léame en este repositorio proviene de[Adam Lui Liu Zhanpeng](https://github.com/adamlui)estilo de autoinforme_ :trollface: +> - _El salto de redirección mutua dentro del guión proviene de[Adam Lui Liu Zhanpeng](https://github.com/adamlui)estilo de autoinforme_ :trollface: > - _Todo en este almacén`README.md`Archivo copiado y usado de este repositorio Yankee`README.md`Diseño del documento,delimitador,código,Ideas_ :trollface: -> - _yanqui copiado[Adam Lui Liu Zhan Peng](https://github.com/adamlui) Action codigo interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: -> - _Copiado yanqui[Adam Lui Liu Zhan Peng](https://github.com/adamlui)Action codigo interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: -> - _yanqui copiado[Adam Lui Liu Zhan Peng](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)delimitador,Estilo de composición :trollface: -> - _Copiado yanqui[Adam Lui Liu Zhan Peng](https://github.com/adamlui)Python codigo interno_ [translate-en-messages.py](https://github.com/adamlui/python-utils/blob/main/translate-messages/translate-en-messages.py) :trollface: +> - _yanqui copiado[Adam Lui Liu Zhanpeng](https://github.com/adamlui) Action codigo interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: +> - _copiado yanqui[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Action codigo interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: +> - _yanqui copiado[Adam Lui Liu Zhanpeng](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)delimitador,Estilo de composición :trollface: +> - _copiado yanqui[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Python codigo interno_ [translate-en-messages.py](https://github.com/adamlui/python-utils/blob/main/translate-messages/translate-en-messages.py) :trollface:
@@ -3271,6 +3260,7 @@ Para usar cualquier script,Primero necesitas instalar el navegador. **Tampermo 人民的勤务员 robots de la gente +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Lista de contribuciones de: [contributors](https://github.com/jaywcjlove/githu ## 🏛️ Acuerdo de licencia de código abierto -Este proyecto utiliza MIT licencia Autorizar。 -MIT La licencia es un acuerdo de licencia de código abierto permisivo.,Para más detalles, consulte Texto completo de la licencia。 +Este proyecto utiliza MIT licencia Autorizar。 +MIT La licencia es un acuerdo de licencia de código abierto permisivo.,Para más detalles, consulte Texto completo de la licencia
@@ -3297,7 +3287,7 @@ MIT La licencia es un acuerdo de licencia de código abierto permisivo.,Para m ## 🤝 Código de conducta -Para garantizar una amistad、Un entorno de desarrollo respetuoso e inclusivo,Hemos desarrollado el siguienteCódigo de conducta。Se solicita a cada colaborador que siga estas pautas.。 +Para garantizar una amistad、Un entorno de desarrollo respetuoso e inclusivo,Hemos desarrollado el siguienteCódigo de conducta。Se solicita a cada colaborador que siga estas pautas.。
@@ -3310,7 +3300,7 @@ Para garantizar una amistad、Un entorno de desarrollo respetuoso e inclusivo, Si encuentras una vulnerabilidad,por favor abre uno[borrador de recomendaciones de seguridad](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Las solicitudes de extracción también son bienvenidas,pero por razones de seguridad,Por favor envíe un correo electrónico a y espera una respuesta antes de hacerlo público。 -Para más detalles, consulte política de seguridad +Para más detalles, consulte política de seguridad
@@ -3320,7 +3310,7 @@ Para más detalles, consulte política de seguri ## 💖 Guía de contribución -Gracias por su interés en este proyecto.!Hemos desarrollado el siguienteGuía de contribución。Para ayudarle a contribuir con código o documentación sin problemas,Antes de enviar código o preguntas, por favor,Lee atentamente el contenido。 +Gracias por su interés en este proyecto.!Hemos desarrollado el siguienteGuía de contribución。Para ayudarle a contribuir con código o documentación sin problemas,Antes de enviar código o preguntas, por favor,Lee atentamente el contenido。
diff --git a/docs/fr/README.md b/docs/fr/README.md index b33a7f8cb..96ebb8cbd 100644 --- a/docs/fr/README.md +++ b/docs/fr/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
Le script provient du grand nombre d’internautes sur Internet,je viens de faire quelques modifications.Merci les internautes
S’il y a une infraction,Le contact doit être supprimé
- + Recommandé:
Support
Support
@@ -57,37 +57,26 @@ 💡 Tip: La liste ci-dessus des gestionnaires de scripts et navigateurs n’est pas exhaustive.
Le script fonctionne correctement dans l’environnement suivant
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Ce référentiel est uniquement disponible dansGitHubhébergé sur,Pas iciGitCodeetXPlazahébergé sur。Les référentiels suivants sont tous des miroirs。
-> :trollface: Si vous l’utilisez en Chine continentalegit cloneLa vitesse de téléchargement est trop lente,Vous pouvez également utiliser l’adresse suivante -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Compte miroir,non-identité) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Navigateur et gestionnaire de scripts](#-Navigateur et gestionnaire de scripts) | -[❔️ Comment installer ou utiliser le script](#%EF%B8%8F-Comment installer ou utiliser le script) | -[🙏 Un merci spécial à l’open source](#-Un merci spécial à l’open source) | -[🛡️ politique de sécurité](#%EF%B8%8F-politique de sécurité) | -[🤝 code de conduite](#-code de conduite) | -[🏛️ Contrat de licence open source](#%EF%B8%8F-Contrat de licence open source) | +[🌐 Navigateur et gestionnaire de scripts](#-Navigateur-et-gestionnaire-de-scripts) | +[❔️ Comment installer ou utiliser le script](#%EF%B8%8F-Comment-installer-ou-utiliser-le-script) | +[🙏 Un merci spécial à l’open source](#-Un-merci-spécial-à-l’open-source) | +[🛡️ politique de sécurité](#%EF%B8%8F-politique-de-sécurité) | +[🤝 code de conduite](#-code-de-conduite) | +[🏛️ Contrat de licence open source](#%EF%B8%8F-Contrat-de-licence-open-source) | [🧠 Donateur](#-Donateur) | -[💖 Guide des contributions](#-Guide des contributions) | -[⭐ histoire des étoiles](#-histoire des étoiles) | -[📜 liste de scripts](#-liste de scripts) +[💖 Guide des contributions](#-Guide-des-contributions) | +[⭐ histoire des étoiles](#-histoire-des-étoiles) | +[📜 liste de scripts](#-liste-de-scripts) ## 📜 liste de scripts @@ -96,14 +85,14 @@ **Le nombre actuel de scripts publiés dans le référentiel:85,Le script comprend:** -
script Web (10) +
script Web (10) | GreasyFork (12) - | scénario pour adultes (11) - | Google Scénario (2) - | GitHub Scénario (20) - | Traduire le script (3) - | AI Scénario (9) - | site de blogs (5) + | scénario pour adultes (11) + | Google Scénario (2) + | GitHub Scénario (20) + | Traduire le script (3) + | AI Scénario (9) + | site de blogs (5) | Twitter (5) | YouTube (5) | TikTok (1) @@ -113,9 +102,9 @@

script Web (10)

- + - bouton de défilement  + bouton de défilement  @@ -136,22 +125,22 @@ Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Gestionnaire d’autorisation de version de clip d’écriture de page Web  + Gestionnaire d’autorisation de version de clip d’écriture de page Web  @@ -172,14 +161,14 @@ Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -187,9 +176,9 @@ Journal des modifications

- + - Supprimer le soulignement du lien  + Supprimer le soulignement du lien  @@ -204,22 +193,22 @@ Supprimer les liens soulignés sur tous les sites,et gérer les nouveaux liens Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Mettre en surbrillance les mots clés Web  + Mettre en surbrillance les mots clés Web  @@ -234,22 +223,22 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Mettez en surbrillance des mots clés sur le Web  + Mettez en surbrillance des mots clés sur le Web  @@ -270,22 +259,22 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Épingler sur les boutons du haut et du bas  + Épingler sur les boutons du haut et du bas  @@ -306,14 +295,14 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -321,9 +310,9 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Journal des modifications

- + - Aperçu dans une petite fenêtre  + Aperçu dans une petite fenêtre  @@ -344,14 +333,14 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -359,9 +348,9 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Journal des modifications

- + - Embellissez les formulaires Web avec de superbes dégradés  + Embellissez les formulaires Web avec de superbes dégradés  @@ -382,14 +371,14 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -397,9 +386,9 @@ Mots-clés personnalisés mettant en surbrillance sur les pages Web, y compris l Journal des modifications

- + - Texte pour lier  + Texte pour lier  @@ -414,14 +403,14 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -429,9 +418,9 @@ Convertir les liens de texte en liens clickables Modifié à partir de

- + - Notes de coupe de cloud de Markdown  + Notes de coupe de cloud de Markdown  @@ -452,14 +441,14 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -468,12 +457,12 @@ Convertir les liens de texte en liens clickables Modifié à partir de - - + +

GreasyFork (12)

- + - Pages de script de fourche grasse pour amélioration de l’URL  + Pages de script de fourche grasse pour amélioration de l’URL  @@ -494,22 +483,22 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Greasyfork Artisan de la colle  + Greasyfork Artisan de la colle  @@ -530,14 +519,14 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -545,9 +534,9 @@ Convertir les liens de texte en liens clickables Journal des modifications

- + - Script Finder Recherche de script GreasyFork  + Script Finder Recherche de script GreasyFork  @@ -568,14 +557,14 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -583,9 +572,9 @@ Convertir les liens de texte en liens clickables Journal des modifications

- + - Greasyfork Script pour afficher les notes  + Greasyfork Script pour afficher les notes  @@ -606,22 +595,22 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - GreasyFork: Amélioration de la barre de navigation  + GreasyFork: Amélioration de la barre de navigation  @@ -642,22 +631,22 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Convertir les liens de texte en liens clickables Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -693,9 +682,9 @@ Convertir les liens de texte en liens clickables Journal des modifications

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - GreasyFork Assistant de notifications  + GreasyFork Assistant de notifications  @@ -746,14 +735,14 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -761,9 +750,9 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Journal des modifications

- + - GreaysFork AméliorerWebHookParamètres de synchronisation  + GreaysFork AméliorerWebHookParamètres de synchronisation  @@ -784,14 +773,14 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -799,9 +788,9 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Journal des modifications

- + - GreasyFork Visualisation des données de script publié par l’utilisateur  + GreasyFork Visualisation des données de script publié par l’utilisateur  @@ -822,14 +811,14 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -837,9 +826,9 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Journal des modifications

- + - Greasyfork Afficher temps d’inscription  + Greasyfork Afficher temps d’inscription  @@ -860,14 +849,14 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -877,9 +866,9 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Modifié à partir de

- + - Greasyfork non mis à jour le script mis en surbrillance  + Greasyfork non mis à jour le script mis en surbrillance  @@ -900,14 +889,14 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -916,12 +905,12 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Modifié à partir de - - + +

scénario pour adultes (11)

- + - Vidéos de collection de sauvegarde de Missav Batch  + Vidéos de collection de sauvegarde de Missav Batch  @@ -942,14 +931,14 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -957,9 +946,9 @@ Rechercher avec GoogleGreasyForketSleazyForkécriture supérieure Journal des modifications

- + - MissAV Connexion automatique  + MissAV Connexion automatique  @@ -974,14 +963,14 @@ Détection MissAV État,et connectez-vous automatiquement lorsque vous n’êtes Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -989,9 +978,9 @@ Détection MissAV État,et connectez-vous automatiquement lorsque vous n’êtes Journal des modifications

- + - ThisAV Connexion automatique  + ThisAV Connexion automatique  @@ -1006,14 +995,14 @@ Détection ThisAV État,et connectez-vous automatiquement lorsque vous n’êtes Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1021,9 +1010,9 @@ Détection ThisAV État,et connectez-vous automatiquement lorsque vous n’êtes Journal des modifications

- + - JableTV Connexion automatique  + JableTV Connexion automatique  @@ -1038,14 +1027,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1053,9 +1042,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - Outil de téléchargement vidéo Missav  + Outil de téléchargement vidéo Missav  @@ -1076,14 +1065,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1091,9 +1080,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - xvideos push download  + xvideos push download  @@ -1114,14 +1103,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1129,9 +1118,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - Téléchargement vidéo pornhub en un clic  + Téléchargement vidéo pornhub en un clic  @@ -1152,14 +1141,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1167,9 +1156,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - Assistant de téléchargement en un clic vidéo xhamster  + Assistant de téléchargement en un clic vidéo xhamster  @@ -1190,14 +1179,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1205,9 +1194,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - XNXXVIDEOS VIDEO  + XNXXVIDEOS VIDEO  @@ -1228,14 +1217,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1243,9 +1232,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - Assistant amélioré de Missav  + Assistant amélioré de Missav  @@ -1266,14 +1255,14 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1281,9 +1270,9 @@ Détection JableTV État,et connectez-vous automatiquement lorsque vous n’ête Journal des modifications

- + - Je viens d’avoir 18 ans  + Je viens d’avoir 18 ans  @@ -1298,14 +1287,14 @@ Depuis que je viens d’avoir 18 ans, je peux regarder du contenu pour adultes Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1314,12 +1303,12 @@ Depuis que je viens d’avoir 18 ans, je peux regarder du contenu pour adultes Modifié à partir de - - + +

Google Scénario (2)

- + - Bloquer les sites de recherche Google  + Bloquer les sites de recherche Google  @@ -1334,22 +1323,22 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Google Assistant de recherche avancée  + Google Assistant de recherche avancée  @@ -1370,26 +1359,26 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / Journal des modifications - - + +

GitHub Scénario (20)

- + - 🤠 Taille d’affichage de l’entrepôt de l’assistant amélioré Github  + 🤠 Taille d’affichage de l’entrepôt de l’assistant amélioré Github  @@ -1410,14 +1399,14 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1427,9 +1416,9 @@ Rechercher un Google bloquant un site spécifié Modifié à partir de

- + - GitHub Trier par date  + GitHub Trier par date  @@ -1450,22 +1439,22 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - GitHub téléchargeur de dossiers  + GitHub téléchargeur de dossiers  @@ -1486,14 +1475,14 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1501,9 +1490,9 @@ Rechercher un Google bloquant un site spécifié Journal des modifications

- + - Github Copier le fichier original URL avec des fichiers à télécharger  + Github Copier le fichier original URL avec des fichiers à télécharger  @@ -1524,14 +1513,14 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1539,9 +1528,9 @@ Rechercher un Google bloquant un site spécifié Journal des modifications

- + - GitHub Soumettre des informations, afficher la vue Web  + GitHub Soumettre des informations, afficher la vue Web  @@ -1562,22 +1551,22 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - GitHub Embellisseur de liste de fichiers  + GitHub Embellisseur de liste de fichiers  @@ -1598,14 +1587,14 @@ Rechercher un Google bloquant un site spécifié Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1613,9 +1602,9 @@ Rechercher un Google bloquant un site spécifié Journal des modifications

- + - GitHub Confirmer automatiquement l’autorisation de l’appareil  + GitHub Confirmer automatiquement l’autorisation de l’appareil  @@ -1630,14 +1619,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1645,9 +1634,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Journal des modifications

- + - Github Liste des langages de code afficher tout  + Github Liste des langages de code afficher tout  @@ -1668,14 +1657,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1683,9 +1672,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Journal des modifications

- + - Assistant de saut rapide de l’entrepôt GitHub  + Assistant de saut rapide de l’entrepôt GitHub  @@ -1706,14 +1695,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1721,9 +1710,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Journal des modifications

- + - Ouvrir le lien jsdelivr sur github  + Ouvrir le lien jsdelivr sur github  @@ -1744,14 +1733,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1759,9 +1748,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Journal des modifications

- + - GitHub Gist Code Snippet Copy and Downloader  + GitHub Gist Code Snippet Copy and Downloader  @@ -1782,14 +1771,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1799,9 +1788,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - Assistant de traduction de la clé de raccourci Github  + Assistant de traduction de la clé de raccourci Github  @@ -1822,14 +1811,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1837,9 +1826,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Journal des modifications

- + - Assistant de notes d’entrepôt Github Star  + Assistant de notes d’entrepôt Github Star  @@ -1860,14 +1849,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1877,9 +1866,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - Github saute à Deepwiki  + Github saute à Deepwiki  @@ -1900,14 +1889,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1917,9 +1906,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - Copilot de masquage GitHub  + Copilot de masquage GitHub  @@ -1940,14 +1929,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1957,9 +1946,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - Finder de l’adresse e-mail GitHub  + Finder de l’adresse e-mail GitHub  @@ -1980,14 +1969,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -1995,9 +1984,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - GitHub affiche les tailles de fichiers et de dossiers  + GitHub affiche les tailles de fichiers et de dossiers  @@ -2019,14 +2008,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2036,9 +2025,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - Co-auteur de Github  + Co-auteur de Github  @@ -2060,14 +2049,14 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2075,9 +2064,9 @@ existerGitHubLa page d’autorisation saisit automatiquement le code d’autoris Modifié à partir de

- + - État du filtre de notification GitHub  + État du filtre de notification GitHub  @@ -2092,14 +2081,14 @@ version de développement github-notification-inbox-toggle Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2107,9 +2096,9 @@ version de développement github-notification-inbox-toggle Modifié à partir de

- + - Bouton de commande de clonage de copie GitHub (fork)  + Bouton de commande de clonage de copie GitHub (fork)  @@ -2130,14 +2119,14 @@ version de développement github-notification-inbox-toggle Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2146,12 +2135,12 @@ version de développement github-notification-inbox-toggle Modifié à partir de - - + +

Traduire le script (3)

- + - Terminateur en langue étrangère  + Terminateur en langue étrangère  @@ -2166,14 +2155,14 @@ Identifiez les caractères non chinois. Si la longueur est supérieure à 5 et q Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2181,9 +2170,9 @@ Identifiez les caractères non chinois. Si la longueur est supérieure à 5 et q Journal des modifications

- + - Traduction de page Web - Traduction automatique en chinois  + Traduction de page Web - Traduction automatique en chinois  @@ -2198,22 +2187,22 @@ Ajoutez une icône de traduction Google dans le coin inférieur droit de chaque Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Widget de traduction | Traduire n’importe quelle langue  + Widget de traduction | Traduire n’importe quelle langue  @@ -2234,14 +2223,14 @@ Ajoutez une icône de traduction Google dans le coin inférieur droit de chaque Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2250,12 +2239,12 @@ Ajoutez une icône de traduction Google dans le coin inférieur droit de chaque Modifié à partir de - - + +

AI Scénario (9)

- + - ChatGPT Réduire le message personnel et la largeur maximale  + ChatGPT Réduire le message personnel et la largeur maximale  @@ -2276,14 +2265,14 @@ Ajoutez une icône de traduction Google dans le coin inférieur droit de chaque Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2291,9 +2280,9 @@ Ajoutez une icône de traduction Google dans le coin inférieur droit de chaque Journal des modifications

- + - ChatGPTTaille de la police du code réduite  + ChatGPTTaille de la police du code réduite  @@ -2308,22 +2297,22 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - ChatGPT Limite du compteur de caractères (CCCL)  + ChatGPT Limite du compteur de caractères (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2359,9 +2348,9 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Journal des modifications

- + - ChatGPT Boutons de copie du code de chat et d’exportation du code  + ChatGPT Boutons de copie du code de chat et d’exportation du code  @@ -2382,14 +2371,14 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2397,9 +2386,9 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Journal des modifications

- + - CODE CHATGPT DIVÉRÉ  + CODE CHATGPT DIVÉRÉ  @@ -2420,14 +2409,14 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2435,9 +2424,9 @@ ChatGPT Rendre la police du code plus petite et envelopper automatiquement Journal des modifications

- + - Outil de code chatppt  + Outil de code chatppt  @@ -2452,14 +2441,14 @@ Ajoutez des fonctionnalités aux blocs de code ChatGPT, y compris l’option pou Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2467,9 +2456,9 @@ Ajoutez des fonctionnalités aux blocs de code ChatGPT, y compris l’option pou Modifié à partir de

- + - Chatppt insérer un mot rapide  + Chatppt insérer un mot rapide  @@ -2484,14 +2473,14 @@ Insérez la commande dans la boîte d’entrée Chatgpt via la combinaison de cl Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2499,9 +2488,9 @@ Insérez la commande dans la boîte d’entrée Chatgpt via la combinaison de cl Modifié à partir de

- + - Chatppt enregistrer la conversation  + Chatppt enregistrer la conversation  @@ -2516,14 +2505,14 @@ Enregistrer la conversation en tant que fichier .txt Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2533,9 +2522,9 @@ Enregistrer la conversation en tant que fichier .txt Modifié à partir de

- + - Chatgpt Gérez facilement les chats  + Chatgpt Gérez facilement les chats  @@ -2550,26 +2539,26 @@ Chat de recherche, chat filtre, chat de suppression rapide / lot. Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / Modifié à partir de - - + +

site de blogs (5)

- + - Connexion CSDN sans restriction  + Connexion CSDN sans restriction  @@ -2584,14 +2573,14 @@ Accédez à votre putain de connexion CSDN et copier, vous pouvez copier sans vo Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2599,9 +2588,9 @@ Accédez à votre putain de connexion CSDN et copier, vous pouvez copier sans vo Journal des modifications

- + - Nettoyer les articles de blog  + Nettoyer les articles de blog  @@ -2616,14 +2605,14 @@ Supprimez les barres latérales ennuyeuses, les blocs de commentaires, les annon Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2631,9 +2620,9 @@ Supprimez les barres latérales ennuyeuses, les blocs de commentaires, les annon Modifié à partir de

- + - Thème sombre Zhihu  + Thème sombre Zhihu  @@ -2648,14 +2637,14 @@ Le style de thème sombre de Zhihu Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2663,9 +2652,9 @@ Le style de thème sombre de Zhihu Modifié à partir de

- + - Mode sombre de la version Web de WeChat  + Mode sombre de la version Web de WeChat  @@ -2680,14 +2669,14 @@ Activer la fenêtre plein écran Web WeChat,mode sombre Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2695,9 +2684,9 @@ Activer la fenêtre plein écran Web WeChat,mode sombre Modifié à partir de

- + - Saut de la version mobile de Sina Weibo  + Saut de la version mobile de Sina Weibo  @@ -2712,26 +2701,26 @@ Sina Weibo passe automatiquement à la version mobile,Soutenir Weibo、article Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / Modifié à partir de - - + +

Twitter (5)

- + - Twitter / x Hide Retweeted Posts  + Twitter / x Hide Retweeted Posts  @@ -2752,14 +2741,14 @@ Sina Weibo passe automatiquement à la version mobile,Soutenir Weibo、article Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2769,9 +2758,9 @@ Sina Weibo passe automatiquement à la version mobile,Soutenir Weibo、article Modifié à partir de

- + - Twitter Media Download (2025.12.02 Correction)  + Twitter Media Download (2025.12.02 Correction)  @@ -2792,14 +2781,14 @@ Sina Weibo passe automatiquement à la version mobile,Soutenir Weibo、article Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2809,9 +2798,9 @@ Sina Weibo passe automatiquement à la version mobile,Soutenir Weibo、article Modifié à partir de

- + - Twitter (x) Liste noire et liste de liste bloquée  + Twitter (x) Liste noire et liste de liste bloquée  @@ -2826,14 +2815,14 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2841,9 +2830,9 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Modifié à partir de

- + - Twitter affiche la date et l’heure normales  + Twitter affiche la date et l’heure normales  @@ -2865,22 +2854,22 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2917,12 +2906,12 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Modifié à partir de - - + +

YouTube (5)

- + - Assistant YouTube  + Assistant YouTube  @@ -2943,14 +2932,14 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2960,9 +2949,9 @@ Utilisé pour télécharger Twitter (x) listes noires et listes bloquées, prend Modifié à partir de

- + - YouTube regarde les raccourcis plus tard  + YouTube regarde les raccourcis plus tard  @@ -2977,14 +2966,14 @@ Utilisez des raccourcis clavier pour ajouter ou supprimer la vidéo YouTube actu Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -2992,9 +2981,9 @@ Utilisez des raccourcis clavier pour ajouter ou supprimer la vidéo YouTube actu Modifié à partir de

- + - Meilleurs commandes de volume YouTube  + Meilleurs commandes de volume YouTube  @@ -3009,14 +2998,14 @@ Ajoutez des curseurs au lecteur vidéo YouTube pour rendre les changements de vo Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -3024,9 +3013,9 @@ Ajoutez des curseurs au lecteur vidéo YouTube pour rendre les changements de vo Modifié à partir de

- + - Grille vidéo dynamique YouTube  + Grille vidéo dynamique YouTube  @@ -3041,14 +3030,14 @@ Ajustez dynamiquement la grille vidéo YouTube en fonction de la largeur de la f Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -3058,9 +3047,9 @@ Ajustez dynamiquement la grille vidéo YouTube en fonction de la largeur de la f Modifié à partir de

- + - YouTube Pro : optimiseur audio  + YouTube Pro : optimiseur audio  @@ -3081,26 +3070,26 @@ Ajustez dynamiquement la grille vidéo YouTube en fonction de la largeur de la f Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / Modifié à partir de - - + +

TikTok (1)

- + - Informations utilisateur Tiktok  + Informations utilisateur Tiktok  @@ -3115,26 +3104,26 @@ Tiktok affiche plus d’informations étendues sur le profil Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / Modifié à partir de - - + +

Bilibili (2)

- + - Téléchargeur vidéo Bilibili  + Téléchargeur vidéo Bilibili  @@ -3149,14 +3138,14 @@ Télécharger les vidéos de Bilibili(Ne prend pas en charge les drames) Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / @@ -3164,9 +3153,9 @@ Télécharger les vidéos de Bilibili(Ne prend pas en charge les drames) Modifié à partir de

- + - Outil de blocage de salle Bilibili Live  + Outil de blocage de salle Bilibili Live  @@ -3181,22 +3170,22 @@ Outil de blocage de salle Bilibili Live,Liste de gestion du support,Blocage Greasemonkey / - + - + fichier Lisez-moi / discuter / - + Code source / Installer / Modifié à partir de - - + + @@ -3271,6 +3260,7 @@ Pour utiliser n’importe quel script,Vous devez d’abord installer le naviga 人民的勤务员 les robots des gens +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Liste des contributions par: [contributors](https://github.com/jaywcjlove/gith ## 🏛️ Contrat de licence open source -Ce projet utilise MIT licence Autoriser。 -MIT La licence est un accord de licence open source permissif,Pour plus de détails, veuillez vous référer à Texte intégral de la licence。 +Ce projet utilise MIT licence Autoriser。 +MIT La licence est un accord de licence open source permissif,Pour plus de détails, veuillez vous référer à Texte intégral de la licence
@@ -3297,7 +3287,7 @@ MIT La licence est un accord de licence open source permissif,Pour plus de dé ## 🤝 code de conduite -Pour assurer une convivialité、Un environnement de développement respectueux et inclusif,Nous avons développé ce qui suitcode de conduite。Chaque contributeur est invité à suivre ces directives。 +Pour assurer une convivialité、Un environnement de développement respectueux et inclusif,Nous avons développé ce qui suitcode de conduite。Chaque contributeur est invité à suivre ces directives。
@@ -3310,7 +3300,7 @@ Pour assurer une convivialité、Un environnement de développement respectueux Si vous trouvez une vulnérabilité,s’il te plaît, ouvre-en un[rédiger des recommandations de sécurité](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Les demandes de tirage sont également les bienvenues,mais pour des raisons de sécurité,Veuillez envoyer un email à et attends une réponse avant de la rendre publique。 -Pour plus de détails, veuillez vous référer à politique de sécurité +Pour plus de détails, veuillez vous référer à politique de sécurité
@@ -3320,7 +3310,7 @@ Pour plus de détails, veuillez vous référer à Guide des contributions。Pour vous aider à contribuer du code ou de la documentation en douceur,Avant de soumettre du code ou des questions, veuillez,Lisez attentivement le contenu。 +Merci de votre intérêt pour ce projet!Nous avons développé ce qui suitGuide des contributions。Pour vous aider à contribuer du code ou de la documentation en douceur,Avant de soumettre du code ou des questions, veuillez,Lisez attentivement le contenu。
diff --git a/docs/it/README.md b/docs/it/README.md index 8e088e39a..f558be308 100644 --- a/docs/it/README.md +++ b/docs/it/README.md @@ -8,30 +8,30 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
- 脚本来自互联网广大网友,Ho appena apportato alcune modifiche.Grazie netizen
- 如有侵权,Il contatto deve essere eliminato
- - Raccomandato:
-Support
+ La sceneggiatura proviene dal vasto numero di netizen su Internet,Ho appena apportato alcune modifiche.Grazie netizen
+ Se c’è qualche violazione,Il contatto deve essere eliminato
+ + 推荐使用:
+Support
Support
Support
💡 Tip: L’elenco sopra riportato di gestori di script e browser non è esaustivo
Lo script funziona correttamente nel seguente ambiente
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Questo repository è disponibile solo inGitHubospitato su,Non quiGitCodeEXPlazaospitato su。以下存储库均为镜像。
-> :trollface: Se lo stai utilizzando nella Cina continentalegit cloneLa velocità di download è troppo lenta,Puoi anche utilizzare il seguente indirizzo -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Conto speculare,non identità) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Browser e gestione degli script](#-Browser e gestione degli script) | -[❔️ Come installare o utilizzare lo script](#%EF%B8%8F-Come installare o utilizzare lo script) | -[🙏 Un ringraziamento speciale all’open source](#-Un ringraziamento speciale all’open source) | -[🛡️ politica di sicurezza](#%EF%B8%8F-politica di sicurezza) | -[🤝 codice di comportamento](#-codice di comportamento) | -[🏛️ Contratto di licenza open source](#%EF%B8%8F-Contratto di licenza open source) | +[🌐 Browser e gestione degli script](#-Browser-e-gestione-degli-script) | +[❔️ Come installare o utilizzare lo script](#%EF%B8%8F-Come-installare-o-utilizzare-lo-script) | +[🙏 Un ringraziamento speciale all’open source](#-Un-ringraziamento-speciale-all’open-source) | +[🛡️ politica di sicurezza](#%EF%B8%8F-politica-di-sicurezza) | +[🤝 codice di comportamento](#-codice-di-comportamento) | +[🏛️ Contratto di licenza open source](#%EF%B8%8F-Contratto-di-licenza-open-source) | [🧠 Collaboratore](#-Collaboratore) | -[💖 Guida al contributo](#-Guida al contributo) | -[⭐ storia delle stelle](#-storia delle stelle) | -[📜 elenco di script](#-elenco di script) +[💖 Guida al contributo](#-Guida-al-contributo) | +[⭐ storia delle stelle](#-storia-delle-stelle) | +[📜 elenco di script](#-elenco-di-script) ## 📜 elenco di script @@ -96,14 +85,14 @@ **Il numero corrente di script pubblicati nel repository:85,La sceneggiatura include:** -
网页脚本 (10) +
sceneggiatura web (10) | GreasyFork (12) - | copione per adulti (11) - | Google Copione (2) - | GitHub Copione (20) - | Traduci la sceneggiatura (3) - | AI Copione (9) - | sito blog (5) + | copione per adulti (11) + | Google Copione (2) + | GitHub Copione (20) + | Traduci la sceneggiatura (3) + | AI Copione (9) + | sito blog (5) | Twitter (5) | YouTube (5) | TikTok (1) @@ -113,9 +102,9 @@

sceneggiatura web (10)

- + - pulsante di scorrimento  + pulsante di scorrimento  @@ -136,22 +125,22 @@ Greasemonkey / - + - - 自述文件 / + + file leggimi / discutere / - + Codice sorgente / Installare

- + - Gestore delle autorizzazioni della versione del clip di scrittura della pagina Web  + Gestore delle autorizzazioni della versione del clip di scrittura della pagina Web  @@ -172,24 +161,24 @@ Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Rimuovi la sottolineatura del collegamento  + Rimuovi la sottolineatura del collegamento  @@ -204,24 +193,24 @@ Rimuovi le sottolineature dei collegamenti su tutti i siti,e gestire i nuovi c Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - Evidenzia le parole chiave Web  + Evidenzia le parole chiave Web  - + Tweet @@ -234,22 +223,22 @@ Evidenziazione delle parole chiave personalizzate su pagine Web incluso il caric Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - Evidenzia le parole chiave sul Web  + Evidenzia le parole chiave sul Web  @@ -270,22 +259,22 @@ Evidenziazione delle parole chiave personalizzate su pagine Web incluso il caric Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - Aggiungi ai pulsanti superiore e inferiore  + Aggiungi ai pulsanti superiore e inferiore  @@ -306,26 +295,26 @@ Evidenziazione delle parole chiave personalizzate su pagine Web incluso il caric Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Anteprima in una piccola finestra  + Anteprima in una piccola finestra  - + Tweet @@ -344,24 +333,24 @@ Evidenziazione delle parole chiave personalizzate su pagine Web incluso il caric Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Abbellisci i moduli web con splendidi gradienti  + Abbellisci i moduli web con splendidi gradienti  @@ -382,14 +371,14 @@ Evidenziazione delle parole chiave personalizzate su pagine Web incluso il caric Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -397,9 +386,9 @@ Evidenziazione delle parole chiave personalizzate su pagine Web incluso il caric Modifica registro

- + - Testo da collegare  + Testo da collegare  @@ -414,24 +403,24 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 / + Installare / - 修改自 + Modificato da

- + - Markdown Cloud Cut Notes  + Markdown Cloud Cut Notes  @@ -452,14 +441,14 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -468,12 +457,12 @@ Converti i collegamenti di testo in collegamenti cliccabili Modificato da - - + +

GreasyFork (12)

- + - Pagine di script fork grasse per il miglioramento dell’URL  + Pagine di script fork grasse per il miglioramento dell’URL  @@ -494,24 +483,24 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - Greasyfork Artigiano della colla  + Greasyfork Artigiano della colla  - + Tweet @@ -530,24 +519,24 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Script Finder Ricerca script GreasyFork  + Script Finder Ricerca script GreasyFork  @@ -568,14 +557,14 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -583,9 +572,9 @@ Converti i collegamenti di testo in collegamenti cliccabili Modifica registro

- + - Greasyfork Script per visualizzare le valutazioni  + Greasyfork Script per visualizzare le valutazioni  @@ -606,22 +595,22 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 + Installare

- + - GreasyFork: Miglioramento della barra di navigazione  + GreasyFork: Miglioramento della barra di navigazione  @@ -642,22 +631,22 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Converti i collegamenti di testo in collegamenti cliccabili Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -693,9 +682,9 @@ Converti i collegamenti di testo in collegamenti cliccabili Modifica registro

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 + Installare

- + - GreasyFork Assistente alle notifiche  + GreasyFork Assistente alle notifiche  @@ -746,24 +735,24 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - GreaysFork MigliorareWebHookSincronizza le impostazioni  + GreaysFork MigliorareWebHookSincronizza le impostazioni  @@ -784,14 +773,14 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -799,9 +788,9 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Modifica registro

- + - GreasyFork Visualizzazione dei dati degli script pubblicati dall’utente  + GreasyFork Visualizzazione dei dati degli script pubblicati dall’utente  @@ -822,24 +811,24 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 / + Installare / - 更新日志 + Modifica registro

- + - Greasyfork Visualizza tempo di registrazione  + Greasyfork Visualizza tempo di registrazione  @@ -860,14 +849,14 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -877,9 +866,9 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Modificato da

- + - Greasyfork non aggiornato lo script evidenziato  + Greasyfork non aggiornato lo script evidenziato  @@ -900,28 +889,28 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / Modifica registro / - 修改自 + Modificato da - - + +

copione per adulti (11)

- + - Video di raccolta di backup batch MISSAV  + Video di raccolta di backup batch MISSAV  @@ -942,14 +931,14 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -957,9 +946,9 @@ Cerca utilizzando GoogleGreasyForkESleazyForkscrittura superiore Modifica registro

- + - MissAV Accesso automatico  + MissAV Accesso automatico  @@ -974,14 +963,14 @@ Rilevamento MissAV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -989,11 +978,11 @@ Rilevamento MissAV stato,e accedi automaticamente quando non sei loggato Modifica registro

- + - ThisAV Accesso automatico  + ThisAV Accesso automatico  - + Tweet @@ -1006,24 +995,24 @@ Rilevamento ThisAV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - JableTV Accesso automatico  + JableTV Accesso automatico  @@ -1038,14 +1027,14 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1053,9 +1042,9 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Modifica registro

- + - Strumento di download video MISSAV  + Strumento di download video MISSAV  @@ -1076,24 +1065,24 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 / + Installare / - 更新日志 + Modifica registro

- + - XVIDEOS PUSH Download  + XVIDEOS PUSH Download  @@ -1114,14 +1103,14 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1129,9 +1118,9 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Modifica registro

- + - Download video di Pornhub con un clic  + Download video di Pornhub con un clic  @@ -1152,14 +1141,14 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1167,9 +1156,9 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Modifica registro

- + - Xhamster Video Click Download Assistente  + Xhamster Video Click Download Assistente  @@ -1190,24 +1179,24 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - XNXXVIDEOS Video Download Assistant  + XNXXVIDEOS Video Download Assistant  @@ -1228,14 +1217,14 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1243,9 +1232,9 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Modifica registro

- + - MISSAV Assistente miglioramento  + MISSAV Assistente miglioramento  @@ -1266,14 +1255,14 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1281,11 +1270,11 @@ Rilevamento JableTV stato,e accedi automaticamente quando non sei loggato Modifica registro

- + - Ho appena compiuto 18 anni  + Ho appena compiuto 18 anni  - + Tweet @@ -1298,28 +1287,28 @@ Da quando ho appena compiuto 18 anni, posso guardare i contenuti per adulti Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 / + Modifica registro / Modificato da - - + +

Google Copione (2)

- + - Blocca i siti di ricerca di Google  + Blocca i siti di ricerca di Google  @@ -1334,22 +1323,22 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - Google Assistente di ricerca avanzata  + Google Assistente di ricerca avanzata  @@ -1370,26 +1359,26 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare / - 更新日志 + Modifica registro - - + +

GitHub Copione (20)

- + - 🤠 Github ha migliorato le dimensioni di visualizzazione del magazzino dell’assistente  + 🤠 Github ha migliorato le dimensioni di visualizzazione del magazzino dell’assistente  @@ -1410,14 +1399,14 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1427,9 +1416,9 @@ Cerca un blocco di Google un sito specificato Modificato da

- + - GitHub Ordina per data  + GitHub Ordina per data  @@ -1450,22 +1439,22 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - - 自述文件 / + + file leggimi / discutere / - + Codice sorgente / Installare

- + - GitHub downloader di cartelle  + GitHub downloader di cartelle  @@ -1486,24 +1475,24 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Github Copia il file originale URL con file scaricabili  + Github Copia il file originale URL con file scaricabili  @@ -1524,14 +1513,14 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1539,11 +1528,11 @@ Cerca un blocco di Google un sito specificato Modifica registro

- + - GitHub Invia informazioni visualizzando la visualizzazione web  + GitHub Invia informazioni visualizzando la visualizzazione web  - + Tweet @@ -1562,22 +1551,22 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - GitHub Abbellitore dell’elenco dei file  + GitHub Abbellitore dell’elenco dei file  @@ -1598,24 +1587,24 @@ Cerca un blocco di Google un sito specificato Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - GitHub Conferma automaticamente l’autorizzazione del dispositivo  + GitHub Conferma automaticamente l’autorizzazione del dispositivo  @@ -1630,24 +1619,24 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Github L’elenco delle lingue del codice mostra tutto  + Github L’elenco delle lingue del codice mostra tutto  @@ -1668,24 +1657,24 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - Assistente di salto rapido del magazzino GitHub  + Assistente di salto rapido del magazzino GitHub  @@ -1706,14 +1695,14 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1721,9 +1710,9 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Modifica registro

- + - Apri il collegamento JSDelivr su GitHub  + Apri il collegamento JSDelivr su GitHub  @@ -1744,24 +1733,24 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 / + Installare / Modifica registro

- + - Copia di snippet di codice GIST GIST e downloader  + Copia di snippet di codice GIST GIST e downloader  @@ -1782,14 +1771,14 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1799,9 +1788,9 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Modificato da

- + - Assistente di traduzione chiave di scelta rapida GitHub  + Assistente di traduzione chiave di scelta rapida GitHub  @@ -1822,14 +1811,14 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1837,11 +1826,11 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Modifica registro

- + - GitHub Star Warehouse Note Assistente  + GitHub Star Warehouse Note Assistente  - + Tweet @@ -1860,26 +1849,26 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 / + Modifica registro / Modificato da

- + - Github salta a Deepwiki  + Github salta a Deepwiki  @@ -1900,14 +1889,14 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1917,9 +1906,9 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Modificato da

- + - Github nascondi il copilota  + Github nascondi il copilota  @@ -1940,26 +1929,26 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare / Modifica registro / - 修改自 + Modificato da

- + - Finder dell’indirizzo e -mail di GitHub  + Finder dell’indirizzo e -mail di GitHub  @@ -1980,14 +1969,14 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -1995,9 +1984,9 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Modificato da

- + - GitHub visualizza le dimensioni di file e cartelle  + GitHub visualizza le dimensioni di file e cartelle  @@ -2019,26 +2008,26 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 / + Modifica registro / - 修改自 + Modificato da

- + - Coautore di GitHub  + Coautore di GitHub  @@ -2060,14 +2049,14 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2075,9 +2064,9 @@ esistereGitHubLa pagina di autorizzazione inserisce automaticamente il codice di Modificato da

- + - Stato del filtro di notifica GitHub  + Stato del filtro di notifica GitHub  @@ -2092,14 +2081,14 @@ GitHub-Notification-Inbox-Toggle Development Version Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2107,9 +2096,9 @@ GitHub-Notification-Inbox-Toggle Development Version Modificato da

- + - Pulsante di comando copia clone GitHub (fork)  + Pulsante di comando copia clone GitHub (fork)  @@ -2130,28 +2119,28 @@ GitHub-Notification-Inbox-Toggle Development Version Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare / - 更新日志 / + Modifica registro / Modificato da - - + +

Traduci la sceneggiatura (3)

- + - Terminator in lingua straniera  + Terminator in lingua straniera  @@ -2166,14 +2155,14 @@ Identifica i personaggi non cinesi. Se la lunghezza è maggiore di 5 e il testo Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2181,9 +2170,9 @@ Identifica i personaggi non cinesi. Se la lunghezza è maggiore di 5 e il testo Modifica registro

- + - Traduzione della pagina web - traduzione automatica in cinese  + Traduzione della pagina web - traduzione automatica in cinese  @@ -2198,22 +2187,22 @@ Aggiungi un’icona di traduzione di Google all’angolo in basso a destra di ci Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare

- + - Widget di traduzione |  + Widget di traduzione |  @@ -2234,28 +2223,28 @@ Aggiungi un’icona di traduzione di Google all’angolo in basso a destra di ci Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 / + Modifica registro / Modificato da - - + +

AI Copione (9)

- + - ChatGPT Comprimi il messaggio personale e la larghezza massima  + ChatGPT Comprimi il messaggio personale e la larghezza massima  @@ -2276,24 +2265,24 @@ Aggiungi un’icona di traduzione di Google all’angolo in basso a destra di ci Greasemonkey / - + - + file leggimi / discutere / - - 源码 / + + Codice sorgente / Installare / - 更新日志 + Modifica registro

- + - ChatGPTDimensione del carattere del codice ridotta  + ChatGPTDimensione del carattere del codice ridotta  @@ -2308,22 +2297,22 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - ChatGPT Limite del contatore di caratteri (CCCL)  + ChatGPT Limite del contatore di caratteri (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2359,9 +2348,9 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Modifica registro

- + - ChatGPT Chatta copia il codice ed esporta i pulsanti del codice  + ChatGPT Chatta copia il codice ed esporta i pulsanti del codice  @@ -2382,14 +2371,14 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare / @@ -2397,9 +2386,9 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Modifica registro

- + - Codice CHATGPT evidenziato  + Codice CHATGPT evidenziato  @@ -2420,14 +2409,14 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2435,9 +2424,9 @@ ChatGPT Rimpicciolisci il carattere del codice e avvolgi automaticamente Modifica registro

- + - Strumento di codice CHATGPT  + Strumento di codice CHATGPT  @@ -2452,14 +2441,14 @@ Aggiungi funzionalità ai blocchi di codice CHATGPT, inclusa l’opzione per sal Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2467,11 +2456,11 @@ Aggiungi funzionalità ai blocchi di codice CHATGPT, inclusa l’opzione per sal Modificato da

- + - Chatgpt inserisci parola prompt  + Chatgpt inserisci parola prompt  - + Tweet @@ -2484,24 +2473,24 @@ Inserire il comando nella casella di input CHATGPT tramite la combinazione di ta Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 修改自 + Modificato da

- + - CHATGPT Salva la conversazione  + CHATGPT Salva la conversazione  @@ -2516,14 +2505,14 @@ Salva la conversazione come file .txt Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2533,9 +2522,9 @@ Salva la conversazione come file .txt Modificato da

- + - Chatgpt gestisce facilmente le chat  + Chatgpt gestisce facilmente le chat  @@ -2550,26 +2539,26 @@ Cerca chat, chat filtrante, elimina veloce/batch. Greasemonkey / - + - + file leggimi / discutere / - - 源码 / + + Codice sorgente / Installare / - 修改自 + Modificato da - - + +

sito blog (5)

- + - Accesso CSDN senza restrizioni  + Accesso CSDN senza restrizioni  @@ -2584,14 +2573,14 @@ Vai al tuo fottuto accesso CSDN e copia, puoi copiare senza accedere Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2599,9 +2588,9 @@ Vai al tuo fottuto accesso CSDN e copia, puoi copiare senza accedere Modifica registro

- + - Post di blog puliti  + Post di blog puliti  @@ -2616,24 +2605,24 @@ Rimuovi fastidiose barre laterali, blocchi di commento, annunci e altro ancora. Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 修改自 + Modificato da

- + - Tema scuro Zhihu  + Tema scuro Zhihu  @@ -2641,21 +2630,21 @@ Rimuovi fastidiose barre laterali, blocchi di commento, annunci e altro ancora.

-知乎的深色主题风格 +Lo stile del tema oscuro di Zhihu
Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2663,9 +2652,9 @@ Rimuovi fastidiose barre laterali, blocchi di commento, annunci e altro ancora. Modificato da

- + - Versione web di WeChat in modalità oscura  + Versione web di WeChat in modalità oscura  @@ -2680,24 +2669,24 @@ Abilita la finestra a schermo intero di WeChat web,modalità oscura Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 修改自 + Modificato da

- + - Salto della versione mobile di Sina Weibo  + Salto della versione mobile di Sina Weibo  @@ -2705,35 +2694,35 @@ Abilita la finestra a schermo intero di WeChat web,modalità oscura

-新浪微博自动跳转移动版,Supporta Weibo、articolo、video +Sina Weibo passa automaticamente alla versione mobile,Supporta Weibo、articolo、video
Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / Modificato da
- - + +

Twitter (5)

- + - Post di twitter/x nascondi retweet  + Post di twitter/x nascondi retweet  - + Tweet @@ -2752,26 +2741,26 @@ Abilita la finestra a schermo intero di WeChat web,modalità oscura Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 更新日志 / + Modifica registro / Modificato da

- + - Download di Twitter Media (2025.12.02 FISSO)  + Download di Twitter Media (2025.12.02 FISSO)  @@ -2792,14 +2781,14 @@ Abilita la finestra a schermo intero di WeChat web,modalità oscura Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2809,9 +2798,9 @@ Abilita la finestra a schermo intero di WeChat web,modalità oscura Modificato da

- + - DOWNLIST BLACKIST TWITST (X) ELLIST BLOCCATO  + DOWNLIST BLACKIST TWITST (X) ELLIST BLOCCATO  @@ -2826,24 +2815,24 @@ Utilizzato per scaricare liste nere di Twitter (x) e elenchi bloccati, supportar Greasemonkey / - + - + file leggimi / - 讨论 / - + discutere / + Codice sorgente / Installare / - 修改自 + Modificato da

- + - Twitter visualizza la data e l’ora normali  + Twitter visualizza la data e l’ora normali  @@ -2865,22 +2854,22 @@ Utilizzato per scaricare liste nere di Twitter (x) e elenchi bloccati, supportar Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ Utilizzato per scaricare liste nere di Twitter (x) e elenchi bloccati, supportar Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2917,12 +2906,12 @@ Utilizzato per scaricare liste nere di Twitter (x) e elenchi bloccati, supportar Modificato da - - + +

YouTube (5)

- + - Assistente YouTube  + Assistente YouTube  @@ -2943,26 +2932,26 @@ Utilizzato per scaricare liste nere di Twitter (x) e elenchi bloccati, supportar Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / Modifica registro / - 修改自 + Modificato da

- + - Scorri di orologi di YouTube più tardi  + Scorri di orologi di YouTube più tardi  @@ -2977,14 +2966,14 @@ Utilizzare le scorciatoie da tastiera per aggiungere o eliminare l’attuale vid Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -2992,9 +2981,9 @@ Utilizzare le scorciatoie da tastiera per aggiungere o eliminare l’attuale vid Modificato da

- + - Migliori controlli del volume di YouTube  + Migliori controlli del volume di YouTube  @@ -3009,24 +2998,24 @@ Aggiungi cursori al lettore video di YouTube per rendere le modifiche al volume Greasemonkey / - + - - 自述文件 / + + file leggimi / discutere / - + Codice sorgente / Installare / - 修改自 + Modificato da

- + - YouTube Dynamic Video Grid  + YouTube Dynamic Video Grid  @@ -3041,14 +3030,14 @@ Regola dinamicamente la griglia video di YouTube in base alla larghezza della fi Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / @@ -3058,9 +3047,9 @@ Regola dinamicamente la griglia video di YouTube in base alla larghezza della fi Modificato da

- + - YouTube Pro: ottimizzatore audio  + YouTube Pro: ottimizzatore audio  @@ -3081,26 +3070,26 @@ Regola dinamicamente la griglia video di YouTube in base alla larghezza della fi Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / - 安装 / + Installare / - 修改自 + Modificato da - - + +

TikTok (1)

- + - Informazioni sull’utente di Tiktok  + Informazioni sull’utente di Tiktok  @@ -3115,26 +3104,26 @@ Tiktok visualizza ulteriori informazioni estese sul profilo Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / Modificato da - - + +

Bilibili (2)

- + - Downloader video bilibili  + Downloader video bilibili  @@ -3149,24 +3138,24 @@ Scarica i video di Bilibili(Non supporta i drammi) Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 修改自 + Modificato da

- + - Strumento di blocco delle stanze live di Bilibili  + Strumento di blocco delle stanze live di Bilibili  @@ -3174,29 +3163,29 @@ Scarica i video di Bilibili(Non supporta i drammi)

-Strumento di blocco delle stanze live di Bilibili,支持管理列表,Blocco batch,Esportare、Importare elenchi ecc.…… +Strumento di blocco delle stanze live di Bilibili,Elenco di gestione del supporto,批量屏蔽,导出、Importare elenchi ecc.……
Greasemonkey / - + - + file leggimi / discutere / - + Codice sorgente / Installare / - 修改自 + Modificato da
- - + + @@ -3204,13 +3193,13 @@ Strumento di blocco delle stanze live di Bilibili,支持管理列表,Blocco Per utilizzare qualsiasi script,Per prima cosa devi installare il browser **Tampermonkey Estensione Gestore script([Chrome](https://pan.lanpw.com/b073l8d1e)** / **[Firefox](https://addons.mozilla.org/firefox/addon/tampermonkey/)** / **[Edge](https://microsoftedge.microsoft.com/addons/detail/tampermonkey/iikmkjmpaadaobahmlepeloendndfphd?hl=zh-CN))。** -- Fare clic sul modulo **\[Installare\]** Visualizza direttamente l’interfaccia di installazione dello script manager。 +- 点击表格 **\[Installare\]** 直接弹出脚本管理器安装界面。 - Se Github La velocità di accesso è troppo lenta,Puoi scegliere di fare clic GreasyFork **\[Installare\]** Successivamente viene visualizzata la richiesta di estensione,Fare di nuovo clic **\[Installare\]** Questo è tutto。 -- [查看详细教程](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md) +- [Visualizza il tutorial dettagliato](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md) > [!IMPORTANT] > -> - _其他基于 **Chromium** Browser del kernel(Come il browser di copertina domestico)Generalmente può essere utilizzato Chrome Espandere。_ +> - _其他基于 **Chromium** Browser del kernel(如国内套皮浏览器)Generalmente può essere utilizzato Chrome Espandere。_ > - _Assicurati di usarlo **Tampermonkey Versione ufficiale** Espandere,其他的用户Copione管理器可能导致**Non funziona correttamente**脚本。_ > - _Se vuoi reinstallare lo script,Per favore, ricordatelo Tampermonkey esteso**回收站中彻底删除**脚本后再去重新安装脚本。_ @@ -3232,31 +3221,31 @@ Per utilizzare qualsiasi script,Per prima cosa devi installare il browser **Ta > [!TIP] > > - Hmjz100 :+1: -> - Tutto nel magazzino`README.md`Badge del file copiato[Hmjz100](https://github.com/hmjz100)magazzino[Online-disk-direct-link-download-assistant](https://github.com/hmjz100/Online-disk-direct-link-download-assistant)内的[README.md](https://github.com/hmjz100/Online-disk-direct-link-download-assistant/blob/main/README.md)Stile distintivo del documento +> - Tutto nel magazzino`README.md`Badge del file copiato[Hmjz100](https://github.com/hmjz100)magazzino[Online-disk-direct-link-download-assistant](https://github.com/hmjz100/Online-disk-direct-link-download-assistant)interno[README.md](https://github.com/hmjz100/Online-disk-direct-link-download-assistant/blob/main/README.md)Stile distintivo del documento > [!TIP] > > - FengFeng :+1: -> - 仓库Dentro所有`README.md`Copiata l’introduzione dell’intestazione del file e la tabella storica delle installazioni[FengFeng](https://github.com/BonjourFeng)magazzino[Github-Search-Purification](https://github.com/BonjourFeng/Github-Search-Purification)内[README.md](https://github.com/BonjourFeng/Github-Search-Purification/blob/main/README.md)Contenuto del file -> - Magazzini secondari di questo magazzino`UserScriptsHistory`Viene copiato e utilizzato anche il codice immagine della tabella della cronologia di installazione degli aggiornamenti automatici.[FengFeng](https://github.com/BonjourFeng)magazzino[Script-History](https://github.com/BonjourFeng/Script-History)codice all’interno[main.py](https://github.com/BonjourFeng/Script-History/blob/main/source/main.py) +> - 仓库Dentro所有`README.md`Copiata l’introduzione dell’intestazione del file e la tabella storica delle installazioni[FengFeng](https://github.com/BonjourFeng)magazzino[Github-Search-Purification](https://github.com/BonjourFeng/Github-Search-Purification)内[README.md](https://github.com/BonjourFeng/Github-Search-Purification/blob/main/README.md)文件内容 +> - 本仓库的子仓库`UserScriptsHistory`Viene copiato e utilizzato anche il codice immagine della tabella della cronologia di installazione degli aggiornamenti automatici.[FengFeng](https://github.com/BonjourFeng)magazzino[Script-History](https://github.com/BonjourFeng/Script-History)codice all’interno[main.py](https://github.com/BonjourFeng/Script-History/blob/main/source/main.py) > [!TIP] > > - figlio del deserto :+1: > - Copiato [figlio del deserto](https://github.com/maboloshi)magazzino[github-chinese](https://github.com/maboloshi/github-chinese)codice all’interno
-> - 本仓库内`writer.py` `update-contributors.yml` 复制使用了[tributors_images.yml](https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml)codice all’interno -> - Questo file Leggimi del repository viene copiato[github-chinese/README.md](https://github.com/maboloshi/github-chinese#:~:text=%E6%B5%8F%E8%A7%88%E5%99%A8%E4%B8%8EGestore%20degli%20script)contenuto `Come installare/Usa la sceneggiatura?` +> - In questo magazzino`writer.py` `update-contributors.yml` Copiato utilizzando[tributors_images.yml](https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml)codice all’interno +> - 本仓库自述文件复制了[github-chinese/README.md](https://github.com/maboloshi/github-chinese#:~:text=%E6%B5%8F%E8%A7%88%E5%99%A8%E4%B8%8E脚本管理器)contenuto `Come installare/Usa la sceneggiatura?` > [!TIP] > > - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui Liu Zhanpeng :+1: > - _Traduzione automatica di questo repository e Action Un ringraziamento speciale allo Yankee[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Ottime idee e codice!_ :trollface: > - _Lo stile del nome di questo magazzino è ispirato agli Yankees[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Ispirare_ :trollface: -> - _Il file readme in questo repository proviene da[Adam Lui 刘展鹏](https://github.com/adamlui)的自述风格_ :trollface: -> - _Da qui deriva il salto di reindirizzamento reciproco all’interno dello script[Adam Lui Liu Zhanpeng](https://github.com/adamlui)stile di autovalutazione_ :trollface: -> - _Tutto in questo magazzino`README.md`File copiato e utilizzato da questo repository Yankee`README.md`Impaginazione del documento,delimitatore,codice,Idee_ :trollface: +> - _Il file readme in questo repository proviene da[Adam Lui Liu Zhanpeng](https://github.com/adamlui)stile di autovalutazione_ :trollface: +> - _脚本内的相互导流跳转来自[Adam Lui Liu Zhanpeng](https://github.com/adamlui)stile di autovalutazione_ :trollface: +> - _本仓库内所有`README.md`File copiato e utilizzato da questo repository Yankee`README.md`Impaginazione del documento,delimitatore,codice,Idee_ :trollface: > - _yankee copiato[Adam Lui Liu Zhanpeng](https://github.com/adamlui) Action codice interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: -> - _Copiato 美国佬[Adam Lui 刘展鹏](https://github.com/adamlui)Action codice interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: +> - _Copiato yankee[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Action codice interno_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: > - _yankee copiato[Adam Lui Liu Zhanpeng](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)delimitatore,Stile di impaginazione :trollface: > - _Copiato yankee[Adam Lui Liu Zhanpeng](https://github.com/adamlui)Python codice interno_ [translate-en-messages.py](https://github.com/adamlui/python-utils/blob/main/translate-messages/translate-en-messages.py) :trollface: @@ -3271,12 +3260,13 @@ Per utilizzare qualsiasi script,Per prima cosa devi installare il browser **Ta 人民的勤务员 i robot delle persone +Metric molanp Yoobohl fossabot -贡献列表由: [contributors](https://github.com/jaywcjlove/github-action-contributors). 自动生成 Le melodie del fratellino +Elenco dei contributi di: [contributors](https://github.com/jaywcjlove/github-action-contributors). Generato automaticamente Le melodie del fratellino
@@ -3286,8 +3276,8 @@ Per utilizzare qualsiasi script,Per prima cosa devi installare il browser **Ta ## 🏛️ Contratto di licenza open source -Questo progetto utilizza MIT licenza Autorizzare。 -MIT La licenza è un accordo di licenza open source permissivo,Per i dettagli, fare riferimento a Testo completo della licenza。 +本项目采用 MIT 许可证 Autorizzare。 +MIT La licenza è un accordo di licenza open source permissivo,Per i dettagli, fare riferimento a Testo completo della licenza
@@ -3297,7 +3287,7 @@ MIT La licenza è un accordo di licenza open source permissivo,Per i dettagli, ## 🤝 codice di comportamento -Per garantire un’amichevole、Un ambiente di sviluppo rispettoso e inclusivo,Abbiamo sviluppato quanto seguecodice di comportamento。Ad ogni contributore è richiesto di seguire queste linee guida。 +Per garantire un’amichevole、Un ambiente di sviluppo rispettoso e inclusivo,Abbiamo sviluppato quanto seguecodice di comportamento。Ad ogni contributore è richiesto di seguire queste linee guida。
@@ -3305,12 +3295,12 @@ Per garantire un’amichevole、Un ambiente di sviluppo rispettoso e inclusivo
-## 🛡️ 安全政策 +## 🛡️ politica di sicurezza -Se trovi una vulnerabilità,请打开一个[progetti di raccomandazioni sulla sicurezza](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 +Se trovi una vulnerabilità,per favore aprine uno[安全建议草案](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 -Anche le richieste di pull sono benvenute,ma per ragioni di sicurezza,Si prega di inviare un’e-mail a e attendere una risposta prima di renderla pubblica。 -Per i dettagli, fare riferimento a politica di sicurezza +也欢迎拉取请求,ma per ragioni di sicurezza,Si prega di inviare un’e-mail a e attendere una risposta prima di renderla pubblica。 +Per i dettagli, fare riferimento a politica di sicurezza
@@ -3320,7 +3310,7 @@ Per i dettagli, fare riferimento a politica di s ## 💖 Guida al contributo -Grazie per il tuo interesse per questo progetto!Abbiamo sviluppato quanto segueGuida al contributo。Per aiutarti a contribuire senza problemi al codice o alla documentazione,请在提交代码或问题前,Leggi attentamente il contenuto。 +Grazie per il tuo interesse per questo progetto!Abbiamo sviluppato quanto segueGuida al contributo。Per aiutarti a contribuire senza problemi al codice o alla documentazione,Prima di inviare codice o domande, per favore,Leggi attentamente il contenuto。
@@ -3330,14 +3320,14 @@ Grazie per il tuo interesse per questo progetto!Abbiamo sviluppato quanto segu ## 🌐 Browser e gestione degli script -| Browser consigliato | Responsabile dell’installazione | Installa il navigatore | +| 推荐使用浏览器 | 安装管理器 | Installa il navigatore | | :---------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | ----------------------------------------------------------------------------- | -|
Chrome 或 basato su Chromium Browser del kernel[![][chrome]][chrome_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][chrome]][chrome_link] [![][edge]][edge_link] [![][QQ]][QQ_link] | +|
Chrome O basato su Chromium Browser del kernel[![][chrome]][chrome_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][chrome]][chrome_link] [![][edge]][edge_link] [![][QQ]][QQ_link] | |
Safari Navigatore(macOS, iOS, iPadOS)[![][safari]][safari_link] |
![][Macaquer] [Macaque][Macaque] O ![][stayr] [Stay] |
[![][safari]][safari_link] | |
Firefox O basato su Gecko Browser del kernel[![][firefox]][firefox_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][firefox]][firefox_link] | |
Opera Navigatore[![][opera]][opera_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][opera]][opera_link] | -|
Via Navigatore(Android)[![][via]][via_link] |
浏览器内自带 |
[![][via]][via_link] | -|
X 浏览器(Android) [![][x]][x_link] |
Browser integrato |
[![][x]][x_link] | +|
Via Navigatore(Android)[![][via]][via_link] |
Browser integrato |
[![][via]][via_link] | +|
X Navigatore(Android) [![][x]][x_link] |
Browser integrato |
[![][x]][x_link] | |
KIWI Navigatore(Android)[![][kiwi]][kiwi_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][kiwi]][kiwi_link] | |
Browser dei lemuri(Android)[![][le]][le_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][le]][le_link] | | | | | @@ -3364,10 +3354,10 @@ Grazie per il tuo interesse per questo progetto!Abbiamo sviluppato quanto segu [via_link]: https://viayoo.com/ "VIANavigatore" [x]: https://img.xwyue.com/i/2024/08/02/66ac91cb1638a.png [x_link]: https://www.xbext.com/ "XNavigatore" -[vm]: https://img.xwyue.com/i/2024/08/02/66ac94776b711.png "暴力猴" +[vm]: https://img.xwyue.com/i/2024/08/02/66ac94776b711.png "scimmia violenta" [cat]: https://img.xwyue.com/i/2024/08/02/66ac94776a4e6.png [cat_link]: https://docs.scriptcat.org/ "copione gatto" -[TM]: https://img.xwyue.com/i/2024/08/02/66ac94776a4f8.png "篡改猴" +[TM]: https://img.xwyue.com/i/2024/08/02/66ac94776a4f8.png "scimmia manomissione" [le]: https://img.xwyue.com/i/2024/08/02/66ac9deb3647d.png [le_link]: https://lemurbrowser.com/ "Browser dei lemuri" [kiwi]: https://img.xwyue.com/i/2024/08/02/66ac9deb33bc1.jpg @@ -3396,4 +3386,4 @@ Grazie per il tuo interesse per questo progetto!Abbiamo sviluppato quanto segu

Footer

-

Contatta l’autore /torna all’inizio↑

+

Contatta l’autore /回到顶部↑

diff --git a/docs/ja/README.md b/docs/ja/README.md index 3e2ac6fca..c1c9b1e0c 100644 --- a/docs/ja/README.md +++ b/docs/ja/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국
- +
この脚本はインターネット上の膨大な数のネチズンから提供されたものです,いくつか変更を加えただけです.ありがとうネチズン
侵害があった場合,連絡先を削除する必要があります
- + 推奨:
Support
Support
@@ -57,24 +57,13 @@ 💡 Tip: 上記のスクリプト マネージャーとブラウザのリストはすべてを網羅しているわけではありません。
スクリプトは次の環境で正常に動作します
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> このリポジトリは以下でのみ利用可能ですGitHubでホストされている,ここにはいませんGitCodeそしてXPlazaでホストされている。次のリポジトリはすべてミラーです。
-> :trollface: 中国本土で使用している場合git cloneダウンロード速度が遅すぎる,以下のアドレスもご利用いただけます -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (ミラーアカウント,非本人) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC @@ -99,10 +88,10 @@
ウェブスクリプト (10) | GreasyFork (12) | 大人向けの脚本 (11) - | Google 脚本 (2) - | GitHub 脚本 (20) + | Google 脚本 (2) + | GitHub 脚本 (20) | スクリプトを翻訳する (3) - | AI 脚本 (9) + | AI 脚本 (9) | ブログサイト (5) | Twitter (5) | YouTube (5) @@ -113,9 +102,9 @@

ウェブスクリプト (10)

- + - スクロールボタン  + スクロールボタン  @@ -136,22 +125,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - Web ページ本き込みクリップ バージョン認証マネージャー  + Web ページ本き込みクリップ バージョン認証マネージャー  @@ -172,14 +161,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -187,9 +176,9 @@ 変更ログ

- + - リンクのオフラインを削除する  + リンクのオフラインを削除する  @@ -204,22 +193,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - Webキーワードを強調します  + Webキーワードを強調します  @@ -234,22 +223,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - Web優れたのキーワードを強調します  + Web優れたのキーワードを強調します  @@ -270,22 +259,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - 上下のボタンにピン保つめする  + 上下のボタンにピン保つめする  @@ -306,14 +295,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -321,9 +310,9 @@ 変更ログ

- + - 小さいさなウィンドウでプレビュー  + 小さいさなウィンドウでプレビュー  @@ -344,14 +333,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -359,9 +348,9 @@ 変更ログ

- + - ゴージャスなグラデーションで Web フォームを美しいしくする  + ゴージャスなグラデーションで Web フォームを美しいしくする  @@ -382,14 +371,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -397,9 +386,9 @@ 変更ログ

- + - リンクするテキスト  + リンクするテキスト  @@ -414,14 +403,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -429,9 +418,9 @@ から変更されました

- + - マークダウンクラウドカットノート  + マークダウンクラウドカットノート  @@ -452,14 +441,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -469,11 +458,11 @@ から変更されました - +

GreasyFork (12)

- + - URL強化用の脂っこいフォークスクリプトページ  + URL強化用の脂っこいフォークスクリプトページ  @@ -494,22 +483,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - Greasyfork フレーマ  + Greasyfork フレーマ  @@ -530,14 +519,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -545,9 +534,9 @@ 変更ログ

- + - Script Finder GreasyFork スクリプトの検索  + Script Finder GreasyFork スクリプトの検索  @@ -568,14 +557,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -583,9 +572,9 @@ 変更ログ

- + - Greasyfork 評価を急行するスクリプト  + Greasyfork 評価を急行するスクリプト  @@ -606,22 +595,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - GreasyFork: ナビゲーションバーの強化する  + GreasyFork: ナビゲーションバーの強化する  @@ -642,22 +631,22 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -693,9 +682,9 @@ 変更ログ

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - GreasyFork 通知するアシスタント  + GreasyFork 通知するアシスタント  @@ -746,14 +735,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -761,9 +750,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GreaysFork 強化するするWebHook同期設定  + GreaysFork 強化するするWebHook同期設定  @@ -784,14 +773,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -799,9 +788,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GreasyFork ユーザーが公共したスクリプト データの視覚化  + GreasyFork ユーザーが公共したスクリプト データの視覚化  @@ -822,14 +811,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -837,9 +826,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - Greasyfork 登録時間を急行  + Greasyfork 登録時間を急行  @@ -860,14 +849,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -877,9 +866,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - Greasyfork更新するされていないスクリプトが強調されました  + Greasyfork更新するされていないスクリプトが強調されました  @@ -900,14 +889,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -917,11 +906,11 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました - +

大人向けの脚本 (11)

- + - Missavバッチバックアップコレクションビデオ  + Missavバッチバックアップコレクションビデオ  @@ -942,14 +931,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -957,9 +946,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - MissAV 自動ログイン  + MissAV 自動ログイン  @@ -974,14 +963,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -989,9 +978,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - ThisAV 自動ログイン  + ThisAV 自動ログイン  @@ -1006,14 +995,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1021,9 +1010,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - JableTV 自動ログイン  + JableTV 自動ログイン  @@ -1038,14 +1027,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1053,9 +1042,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - Missavビデオダウンロードツール  + Missavビデオダウンロードツール  @@ -1076,14 +1065,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1091,9 +1080,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - xvideosプッシュダウンロード  + xvideosプッシュダウンロード  @@ -1114,14 +1103,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1129,9 +1118,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - ポルノハブビデオダウンロードワンクリックでダウンロードします  + ポルノハブビデオダウンロードワンクリックでダウンロードします  @@ -1152,14 +1141,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1167,9 +1156,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - xhamsterビデオワンクリックダウンロードアシスタント  + xhamsterビデオワンクリックダウンロードアシスタント  @@ -1190,14 +1179,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1205,9 +1194,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - xnxxvideosビデオワンクリックダウンロードアシスタント  + xnxxvideosビデオワンクリックダウンロードアシスタント  @@ -1228,14 +1217,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1243,9 +1232,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - Missav Enhanced Assistant  + Missav Enhanced Assistant  @@ -1266,14 +1255,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1281,9 +1270,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - ちょうど18歳になりました  + ちょうど18歳になりました  @@ -1298,14 +1287,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1315,11 +1304,11 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました - +

Google 脚本 (2)

- + - Google検索サイトをブロックします  + Google検索サイトをブロックします  @@ -1334,22 +1323,22 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - Google 高いな検索アシスタント  + Google 高いな検索アシスタント  @@ -1370,14 +1359,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1385,11 +1374,11 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ - +

GitHub 脚本 (20)

- + - 🤠 Github の強化するされたアシスタント ウェアハウスの急行サイズ  + 🤠 Github の強化するされたアシスタント ウェアハウスの急行サイズ  @@ -1410,14 +1399,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1427,9 +1416,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - GitHub 日付順にそしてべのためにえる  + GitHub 日付順にそしてべのためにえる  @@ -1450,22 +1439,22 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - GitHub フォルダーダウンローダー  + GitHub フォルダーダウンローダー  @@ -1486,14 +1475,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1501,9 +1490,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - Github 元のファイルをコピーする URL ダウンロードファイル付き  + Github 元のファイルをコピーする URL ダウンロードファイル付き  @@ -1524,14 +1513,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1539,9 +1528,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GitHub 知性の表現Webビューの送信  + GitHub 知性の表現Webビューの送信  @@ -1562,22 +1551,22 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - GitHub ファイルリスト形成外科ツール  + GitHub ファイルリスト形成外科ツール  @@ -1598,14 +1587,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1613,9 +1602,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GitHub デバイスの認証を自動に確認する  + GitHub デバイスの認証を自動に確認する  @@ -1630,14 +1619,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1645,9 +1634,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - Github コード言語のリストをすべて急行  + Github コード言語のリストをすべて急行  @@ -1668,14 +1657,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1683,9 +1672,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GitHub ウェアハウスのクイック ジャンプ アシスタント  + GitHub ウェアハウスのクイック ジャンプ アシスタント  @@ -1706,14 +1695,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1721,9 +1710,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GithubでJSDelivrリンクを開けるきます  + GithubでJSDelivrリンクを開けるきます  @@ -1744,14 +1733,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1759,9 +1748,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - GitHub Gistコードスニペットコピーとダウンローダー  + GitHub Gistコードスニペットコピーとダウンローダー  @@ -1782,14 +1771,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1799,9 +1788,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - GitHubショートカットキー翻訳アシスタント  + GitHubショートカットキー翻訳アシスタント  @@ -1822,14 +1811,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1837,9 +1826,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ 変更ログ

- + - Github Star Warehouseノートアシスタント  + Github Star Warehouseノートアシスタント  @@ -1860,14 +1849,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1877,9 +1866,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - GithubはDeepwikiにジャンプします  + GithubはDeepwikiにジャンプします  @@ -1900,14 +1889,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1917,9 +1906,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - Github Hide Copilot  + Github Hide Copilot  @@ -1940,14 +1929,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1957,9 +1946,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - GitHubのメールアドレスファインダー  + GitHubのメールアドレスファインダー  @@ -1980,14 +1969,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -1995,9 +1984,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - GitHubはファイルとフォルダーのサイズを急行します  + GitHubはファイルとフォルダーのサイズを急行します  @@ -2019,14 +2008,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2036,9 +2025,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - Githubの共著者  + Githubの共著者  @@ -2060,14 +2049,14 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2075,9 +2064,9 @@ Googleを作るって検索するGreasyForkそしてSleazyForkスクリプトオ から変更されました

- + - GitHub通知するフィルターステータス  + GitHub通知するフィルターステータス  @@ -2092,14 +2081,14 @@ github-notification-inbox-toggle開発バージョン Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2107,9 +2096,9 @@ github-notification-inbox-toggle開発バージョン から変更されました

- + - GitHub コピー クローン コマンド ボタン (フォーク)  + GitHub コピー クローン コマンド ボタン (フォーク)  @@ -2130,14 +2119,14 @@ github-notification-inbox-toggle開発バージョン Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2147,11 +2136,11 @@ github-notification-inbox-toggle開発バージョン から変更されました - +

スクリプトを翻訳する (3)

- + - 外国語ターミネーター  + 外国語ターミネーター  @@ -2166,14 +2155,14 @@ github-notification-inbox-toggle開発バージョン Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2181,9 +2170,9 @@ github-notification-inbox-toggle開発バージョン 変更ログ

- + - Webページ翻訳 - 中国語への自動翻訳  + Webページ翻訳 - 中国語への自動翻訳  @@ -2198,22 +2187,22 @@ Google翻訳アイコンを各中国語のWebページの右下隅に追加し Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - 翻訳ウィジェット|  + 翻訳ウィジェット|  @@ -2234,14 +2223,14 @@ Google翻訳アイコンを各中国語のWebページの右下隅に追加し Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2251,11 +2240,11 @@ Google翻訳アイコンを各中国語のWebページの右下隅に追加し から変更されました - +

AI 脚本 (9)

- + - ChatGPT セルフメッセージと最大を折り畳みりたたむ  + ChatGPT セルフメッセージと最大を折り畳みりたたむ  @@ -2276,14 +2265,14 @@ Google翻訳アイコンを各中国語のWebページの右下隅に追加し Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2291,9 +2280,9 @@ Google翻訳アイコンを各中国語のWebページの右下隅に追加し 変更ログ

- + - ChatGPTコードのフォントサイズが小さいさくなりました  + ChatGPTコードのフォントサイズが小さいさくなりました  @@ -2308,22 +2297,22 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - ChatGPT 文字数カウンターの制限 (CCCL)  + ChatGPT 文字数カウンターの制限 (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2359,9 +2348,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 変更ログ

- + - ChatGPT チャットのコードのコピー ボタンとコードのエクスポート ボタン  + ChatGPT チャットのコードのコピー ボタンとコードのエクスポート ボタン  @@ -2382,14 +2371,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2397,9 +2386,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 変更ログ

- + - chatgptコードが強調されました  + chatgptコードが強調されました  @@ -2420,14 +2409,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2435,9 +2424,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 変更ログ

- + - ChatGptコードツール  + ChatGptコードツール  @@ -2452,14 +2441,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2467,9 +2456,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 から変更されました

- + - chatgptプロンプトワードを挿入します  + chatgptプロンプトワードを挿入します  @@ -2484,14 +2473,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2499,9 +2488,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 から変更されました

- + - Chatgpt会話を保存します  + Chatgpt会話を保存します  @@ -2516,14 +2505,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2533,9 +2522,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 から変更されました

- + - ChatGptはチャットを簡単に管理します  + ChatGptはチャットを簡単に管理します  @@ -2550,14 +2539,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2565,11 +2554,11 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 から変更されました - +

ブログサイト (5)

- + - 無制限のCSDNログイン  + 無制限のCSDNログイン  @@ -2584,14 +2573,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2599,9 +2588,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 変更ログ

- + - クリーンブログ投稿  + クリーンブログ投稿  @@ -2616,14 +2605,14 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2631,9 +2620,9 @@ ChatGPT コードのフォントを小さいさくする そして自動に折 から変更されました

- + - Zhihuのダークテーマ  + Zhihuのダークテーマ  @@ -2648,14 +2637,14 @@ Zhihuのダークテーマスタイル Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2663,9 +2652,9 @@ Zhihuのダークテーマスタイル から変更されました

- + - WeChat Web版ダークモード  + WeChat Web版ダークモード  @@ -2680,14 +2669,14 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2695,9 +2684,9 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード から変更されました

- + - 新浪微博モバイル版ジャンプ  + 新浪微博モバイル版ジャンプ  @@ -2712,14 +2701,14 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2727,11 +2716,11 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード から変更されました - +

Twitter (5)

- + - Twitter/Xリツイートされた投稿を無表情にします  + Twitter/Xリツイートされた投稿を無表情にします  @@ -2752,14 +2741,14 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2769,9 +2758,9 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード から変更されました

- + - Twitterメディアダウンロード(2025.12.02修正)  + Twitterメディアダウンロード(2025.12.02修正)  @@ -2792,14 +2781,14 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2809,9 +2798,9 @@ Web WeChat 全画面ウィンドウを有効にする,ダークモード から変更されました

- + - Twitter(x)ブラックリストとブロックされたリストのダウンロード  + Twitter(x)ブラックリストとブロックされたリストのダウンロード  @@ -2826,14 +2815,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2841,9 +2830,9 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました

- + - Twitterには一般的にの日付と時間が急行されます  + Twitterには一般的にの日付と時間が急行されます  @@ -2865,22 +2854,22 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2918,11 +2907,11 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました - +

YouTube (5)

- + - YouTubeアシスタント  + YouTubeアシスタント  @@ -2943,14 +2932,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2960,9 +2949,9 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました

- + - YouTubeは戻るでショートカットを視聴します  + YouTubeは戻るでショートカットを視聴します  @@ -2977,14 +2966,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -2992,9 +2981,9 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました

- + - より良いYouTubeボリュームコントロール  + より良いYouTubeボリュームコントロール  @@ -3009,14 +2998,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -3024,9 +3013,9 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました

- + - YouTubeダイナミックビデオグリッド  + YouTubeダイナミックビデオグリッド  @@ -3041,14 +3030,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -3058,9 +3047,9 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました

- + - YouTube Pro: オーディオ エンハンサー  + YouTube Pro: オーディオ エンハンサー  @@ -3081,14 +3070,14 @@ Twitter(x)ブラックリストとブロックリストをダウンロード Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -3096,11 +3085,11 @@ Twitter(x)ブラックリストとブロックリストをダウンロード から変更されました - +

TikTok (1)

- + - Tiktokユーザー情報  + Tiktokユーザー情報  @@ -3115,14 +3104,14 @@ Tiktokは、プロファイルに関するより拡張された情報を急行 Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -3130,11 +3119,11 @@ Tiktokは、プロファイルに関するより拡張された情報を急行 から変更されました - +

Bilibili (2)

- + - Bilibiliビデオダウンローダー  + Bilibiliビデオダウンローダー  @@ -3149,14 +3138,14 @@ Bilibili動画をダウンロードする(ドラマには対応していませ Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -3164,9 +3153,9 @@ Bilibili動画をダウンロードする(ドラマには対応していませ から変更されました

- + - Bilibiliライブルームブロックツール  + Bilibiliライブルームブロックツール  @@ -3181,14 +3170,14 @@ Bilibiliライブルームブロックツール,サポート管理リスト, Greasemonkey / - + - + Readmeファイル / 話し合う / - + ソースコード / インストール / @@ -3196,7 +3185,7 @@ Bilibiliライブルームブロックツール,サポート管理リスト, から変更されました - + @@ -3250,7 +3239,7 @@ Bilibiliライブルームブロックツール,サポート管理リスト, > [!TIP] > > - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui 劉禅鵬 :+1: -> - _このリポジトリの自動翻訳と Action ヤンキーには本当に感謝しています[Adam Lui 劉禅鵬](https://github.com/adamlui)素晴らしいアイデアとコード!_ :trollface: +> - _このリポジトリの自動翻訳と Action ヤンキーには特別な感謝を[Adam Lui 劉禅鵬](https://github.com/adamlui)素晴らしいアイデアとコード!_ :trollface: > - _ヤンキースをイメージしたウェアハウスのネーミング[Adam Lui 劉禅鵬](https://github.com/adamlui)鼓舞する_ :trollface: > - _このリポジトリの Readme ファイルは次の場所にあります。[Adam Lui 劉禅鵬](https://github.com/adamlui)自己申告スタイル_ :trollface: > - _スクリプト内の相互リダイレクト ジャンプは次のものから来ています。[Adam Lui 劉禅鵬](https://github.com/adamlui)自己申告スタイル_ :trollface: @@ -3271,6 +3260,7 @@ Bilibiliライブルームブロックツール,サポート管理リスト, 人民的勤务员 人々のロボット +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Bilibiliライブルームブロックツール,サポート管理リスト, ## 🏛️ オープンソースライセンス契約 -このプロジェクトでは、 MIT ライセンス 承認する。 -MIT ライセンスは寛容なオープンソースライセンス契約です,詳細については、を参照してください。 ライセンスの全文。 +このプロジェクトでは、 MIT ライセンス 承認する。 +MIT ライセンスは寛容なオープンソースライセンス契約です,詳細については、を参照してください。 ライセンスの全文
@@ -3297,7 +3287,7 @@ MIT ライセンスは寛容なオープンソースライセンス契約です ## 🤝 行動規範 -友好的な関係を確保するために、敬意を持った包括的な開発環境,私たちは以下のものを開発しました行動規範。各寄稿者は次のガイドラインに従うことが求められます。 +友好的な関係を確保するために、敬意を持った包括的な開発環境,私たちは以下のものを開発しました行動規範。各寄稿者は次のガイドラインに従うことが求められます。
@@ -3310,7 +3300,7 @@ MIT ライセンスは寛容なオープンソースライセンス契約です 脆弱性が見つかった場合,一つ開けてください[セキュリティに関する推奨事項の草案](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 プルリクエストも歓迎です,ただしセキュリティ上の理由から,までメールを送信してください 公開する前に返信を待ちます。 -詳細については、を参照してください。 セキュリティポリシー +詳細については、を参照してください。 セキュリティポリシー
@@ -3320,7 +3310,7 @@ MIT ライセンスは寛容なオープンソースライセンス契約です ## 💖 貢献ガイド -このプロジェクトにご興味をお持ちいただきありがとうございます!私たちは以下のものを開発しました貢献ガイド。コードやドキュメントをスムーズに投稿できるようにするため,コードや質問を送信する前に、,内容をよく読んでください。 +このプロジェクトにご興味をお持ちいただきありがとうございます!私たちは以下のものを開発しました貢献ガイド。コードやドキュメントをスムーズに投稿できるようにするため,コードや質問を送信する前に、,内容をよく読んでください。
diff --git a/docs/ko/README.md b/docs/ko/README.md index 3503e4e47..34b1fafdb 100644 --- a/docs/ko/README.md +++ b/docs/ko/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
해당 대본은 인터넷상의 수많은 네티즌들로부터 나온 것이다.,방금 몇 가지 사항을 변경했습니다..네티즌 여러분 감사합니다
침해가 있는 경우,연락처를 삭제해야 합니다.
- + 추천:
Support
Support
@@ -57,53 +57,42 @@ 💡 Tip: 위의 스크립트 관리자 및 브라우저 목록은 완전한 것이 아닙니다.
스크립트는 다음 환경에서 정상적으로 실행됩니다.
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> 이 저장소는 다음에서만 사용할 수 있습니다.GitHub호스팅됨,여기가 아니야GitCode그리고XPlaza호스팅됨。다음 저장소는 모두 미러입니다.。
-> :trollface: 중국 본토에서 사용하는 경우git clone다운로드 속도가 너무 느립니다.,다음 주소를 이용해도 됩니다 -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (미러 계정,비 본인) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 브라우저 및 스크립트 관리자](#-브라우저 및 스크립트 관리자) | -[❔️ 스크립트 설치 또는 사용 방법](#%EF%B8%8F-스크립트 설치 또는 사용 방법) | -[🙏 오픈소스 덕분에 특별히 감사드립니다](#-오픈소스 덕분에 특별히 감사드립니다) | -[🛡️ 보안 정책](#%EF%B8%8F-보안 정책) | +[🌐 브라우저 및 스크립트 관리자](#-브라우저-및-스크립트-관리자) | +[❔️ 스크립트 설치 또는 사용 방법](#%EF%B8%8F-스크립트-설치-또는-사용-방법) | +[🙏 오픈소스 덕분에 특별히 감사드립니다](#-오픈소스-덕분에-특별히-감사드립니다) | +[🛡️ 보안 정책](#%EF%B8%8F-보안-정책) | [🤝 행동강령](#-행동강령) | -[🏛️ 오픈소스 라이선스 계약](#%EF%B8%8F-오픈소스 라이선스 계약) | +[🏛️ 오픈소스 라이선스 계약](#%EF%B8%8F-오픈소스-라이선스-계약) | [🧠 기부자](#-기부자) | -[💖 기여 가이드](#-기여 가이드) | -[⭐ 스타의 역사](#-스타의 역사) | -[📜 스크립트 목록](#-스크립트 목록) +[💖 기여 가이드](#-기여-가이드) | +[⭐ 스타의 역사](#-스타의-역사) | +[📜 스크립트 목록](#-스크립트-목록) ## 📜 스크립트 목록 -💡 **Tip:** _미리보기 스크린샷을 표시하려면,확장명 아래를 클릭하세요. ▸ 또는 설명。_ +💡 **Tip:** _미리보기 스크린샷을 표시하려면,확장자 이름 아래를 클릭하세요 ▸ 또는 설명。_ **현재 저장소에 게시된 스크립트 수:85,스크립트에는 다음이 포함됩니다.:** -
웹 스크립트 (10) +
웹 스크립트 (10) | GreasyFork (12) - | 성인 대본 (11) - | Google 각본 (2) - | GitHub 각본 (20) - | 스크립트 번역 (3) - | AI 각본 (9) - | 블로그 사이트 (5) + | 성인 대본 (11) + | Google 각본 (2) + | GitHub 각본 (20) + | 스크립트 번역 (3) + | AI 각본 (9) + | 블로그 사이트 (5) | Twitter (5) | YouTube (5) | TikTok (1) @@ -113,9 +102,9 @@

웹 스크립트 (10)

- + - 스크롤 버튼  + 스크롤 버튼  @@ -136,22 +125,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - 웹 페이지 작성 클립 버전 권한 관리자  + 웹 페이지 작성 클립 버전 권한 관리자  @@ -172,14 +161,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -187,9 +176,9 @@ 변경 로그

- + - 링크 밑줄 제거  + 링크 밑줄 제거  @@ -204,22 +193,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - 웹 키워드를 강조 표시합니다  + 웹 키워드를 강조 표시합니다  @@ -234,22 +223,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - 웹에서 키워드를 강조 표시합니다  + 웹에서 키워드를 강조 표시합니다  @@ -270,22 +259,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - 상단 및 하단 버튼에 고정  + 상단 및 하단 버튼에 고정  @@ -306,14 +295,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -321,9 +310,9 @@ 변경 로그

- + - 작은 창 미리보기  + 작은 창 미리보기  @@ -344,14 +333,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -359,9 +348,9 @@ 변경 로그

- + - 화려한 그라데이션으로 웹 양식을 아름답게 꾸미세요  + 화려한 그라데이션으로 웹 양식을 아름답게 꾸미세요  @@ -382,14 +371,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -397,9 +386,9 @@ 변경 로그

- + - 링크 할 텍스트  + 링크 할 텍스트  @@ -414,14 +403,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -429,9 +418,9 @@ 다음에서 수정됨

- + - 마크 다운 클라우드 컷 메모  + 마크 다운 클라우드 컷 메모  @@ -452,14 +441,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -468,12 +457,12 @@ 다음에서 수정됨 - - + +

GreasyFork (12)

- + - URL 향상을위한 기름기가 많은 포크 스크립트 페이지  + URL 향상을위한 기름기가 많은 포크 스크립트 페이지  @@ -494,22 +483,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - Greasyfork 프레이머  + Greasyfork 프레이머  @@ -530,14 +519,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -545,9 +534,9 @@ 변경 로그

- + - Script Finder 그리스 원숭이 스크립트 조회  + Script Finder 그리스 원숭이 스크립트 조회  @@ -568,14 +557,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -583,9 +572,9 @@ 변경 로그

- + - Greasyfork 평점을 표시하는 스크립트  + Greasyfork 평점을 표시하는 스크립트  @@ -606,22 +595,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - GreasyFork: 탐색 표시줄 개선  + GreasyFork: 탐색 표시줄 개선  @@ -642,22 +631,22 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -693,9 +682,9 @@ 변경 로그

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - GreasyFork 알림 도우미  + GreasyFork 알림 도우미  @@ -746,14 +735,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -761,9 +750,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - GreaysFork 향상시키다WebHook동기화 설정  + GreaysFork 향상시키다WebHook동기화 설정  @@ -784,14 +773,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -799,9 +788,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - GreasyFork 사용자 게시 스크립트 데이터 시각화  + GreasyFork 사용자 게시 스크립트 데이터 시각화  @@ -822,14 +811,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -837,9 +826,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Greasyfork등록 시간을 표시  + Greasyfork등록 시간을 표시  @@ -860,14 +849,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -877,9 +866,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - Greasyfork는 업데이트되지 않은 스크립트가 강조 표시되었습니다  + Greasyfork는 업데이트되지 않은 스크립트가 강조 표시되었습니다  @@ -900,14 +889,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -916,12 +905,12 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨 - - + +

성인 대본 (11)

- + - Missav 배치 백업 컬렉션 비디오  + Missav 배치 백업 컬렉션 비디오  @@ -942,14 +931,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -957,9 +946,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - MissAV 자동 로그인  + MissAV 자동 로그인  @@ -974,14 +963,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -989,9 +978,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - ThisAV 자동 로그인  + ThisAV 자동 로그인  @@ -1006,14 +995,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1021,9 +1010,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - JableTV 자동 로그인  + JableTV 자동 로그인  @@ -1038,14 +1027,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1053,9 +1042,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Missav 비디오 다운로드 도구  + Missav 비디오 다운로드 도구  @@ -1076,14 +1065,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1091,9 +1080,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - xvideos 푸시 다운로드  + xvideos 푸시 다운로드  @@ -1114,14 +1103,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1129,9 +1118,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - 한 번의 클릭으로 Pornhub 비디오 다운로드  + 한 번의 클릭으로 Pornhub 비디오 다운로드  @@ -1152,14 +1141,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1167,9 +1156,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Xhamster 비디오 원 클릭 다운로드 어시스턴트  + Xhamster 비디오 원 클릭 다운로드 어시스턴트  @@ -1190,14 +1179,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1205,9 +1194,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - xnxxvideos 비디오 1 클릭 다운로드 어시스턴트  + xnxxvideos 비디오 1 클릭 다운로드 어시스턴트  @@ -1228,14 +1217,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1243,9 +1232,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Missav 강조 보조원  + Missav 강조 보조원  @@ -1266,14 +1255,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1281,9 +1270,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - 방금 18 살이되었습니다  + 방금 18 살이되었습니다  @@ -1298,14 +1287,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1314,12 +1303,12 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨 - - + +

Google 각본 (2)

- + - Google 검색 사이트를 차단하십시오  + Google 검색 사이트를 차단하십시오  @@ -1334,22 +1323,22 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - Google 고급 검색 도우미  + Google 고급 검색 도우미  @@ -1370,26 +1359,26 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / 변경 로그 - - + +

GitHub 각본 (20)

- + - 🤠 Github 향상된 보조 창고 디스플레이 크기  + 🤠 Github 향상된 보조 창고 디스플레이 크기  @@ -1410,14 +1399,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1427,9 +1416,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - GitHub 날짜순으로 정렬  + GitHub 날짜순으로 정렬  @@ -1450,22 +1439,22 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - GitHub 폴더 다운로더  + GitHub 폴더 다운로더  @@ -1486,14 +1475,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1501,9 +1490,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Github 원본 파일 복사 URL 다운로드 파일 포함  + Github 원본 파일 복사 URL 다운로드 파일 포함  @@ -1524,14 +1513,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1539,9 +1528,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - GitHub 정보 표시 웹뷰 제출  + GitHub 정보 표시 웹뷰 제출  @@ -1562,22 +1551,22 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - GitHub 파일 목록 미화자  + GitHub 파일 목록 미화자  @@ -1598,14 +1587,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1613,9 +1602,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - GitHub 장치 승인 자동 확인  + GitHub 장치 승인 자동 확인  @@ -1630,14 +1619,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1645,9 +1634,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Github 코드 언어 목록 모두 표시  + Github 코드 언어 목록 모두 표시  @@ -1668,14 +1657,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1683,9 +1672,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - GitHub 창고 빠른 점프 도우미  + GitHub 창고 빠른 점프 도우미  @@ -1706,14 +1695,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1721,9 +1710,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - GitHub에서 JSDELIVR 링크를 엽니 다  + GitHub에서 JSDELIVR 링크를 엽니 다  @@ -1744,14 +1733,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1759,9 +1748,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - github gist 코드 스 니펫 복사 및 다운로더  + github gist 코드 스 니펫 복사 및 다운로더  @@ -1782,14 +1771,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1799,9 +1788,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - Github 바로 가기 키 번역 보조원  + Github 바로 가기 키 번역 보조원  @@ -1822,14 +1811,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1837,9 +1826,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 변경 로그

- + - Github Star Warehouse Notes Assistant  + Github Star Warehouse Notes Assistant  @@ -1860,14 +1849,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1877,9 +1866,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - Github는 Deepwiki로 점프합니다  + Github는 Deepwiki로 점프합니다  @@ -1900,14 +1889,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1917,9 +1906,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - github copilot을 숨 깁니다  + github copilot을 숨 깁니다  @@ -1940,14 +1929,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1957,9 +1946,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - GitHub 이메일 주소 찾기  + GitHub 이메일 주소 찾기  @@ -1980,14 +1969,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -1995,9 +1984,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - Github는 파일 및 폴더 크기를 표시합니다  + Github는 파일 및 폴더 크기를 표시합니다  @@ -2019,14 +2008,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2036,9 +2025,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - Github 공동 저자  + Github 공동 저자  @@ -2060,14 +2049,14 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2075,9 +2064,9 @@ Google을 사용하여 검색GreasyFork그리고SleazyFork상적 각본 다음에서 수정됨

- + - Github 알림 필터 상태  + Github 알림 필터 상태  @@ -2092,14 +2081,14 @@ Github-Notification-onbox-Toggle 개발 버전 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2107,9 +2096,9 @@ Github-Notification-onbox-Toggle 개발 버전 다음에서 수정됨

- + - GitHub 복사 복제 명령 버튼(포크)  + GitHub 복사 복제 명령 버튼(포크)  @@ -2130,14 +2119,14 @@ Github-Notification-onbox-Toggle 개발 버전 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2146,12 +2135,12 @@ Github-Notification-onbox-Toggle 개발 버전 다음에서 수정됨 - - + +

스크립트 번역 (3)

- + - 외국어 터미네이터  + 외국어 터미네이터  @@ -2166,14 +2155,14 @@ Github-Notification-onbox-Toggle 개발 버전 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2181,9 +2170,9 @@ Github-Notification-onbox-Toggle 개발 버전 변경 로그

- + - 웹 페이지 번역 - 중국어로 자동 번역  + 웹 페이지 번역 - 중국어로 자동 번역  @@ -2198,22 +2187,22 @@ Github-Notification-onbox-Toggle 개발 버전 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - 번역 위젯 |. 모든 언어 번역  + 번역 위젯 |. 모든 언어 번역  @@ -2234,14 +2223,14 @@ Github-Notification-onbox-Toggle 개발 버전 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2250,12 +2239,12 @@ Github-Notification-onbox-Toggle 개발 버전 다음에서 수정됨 - - + +

AI 각본 (9)

- + - ChatGPT 자체 메시지 및 최대 너비 축소  + ChatGPT 자체 메시지 및 최대 너비 축소  @@ -2276,14 +2265,14 @@ Github-Notification-onbox-Toggle 개발 버전 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2291,9 +2280,9 @@ Github-Notification-onbox-Toggle 개발 버전 변경 로그

- + - ChatGPT코드 글꼴 크기 감소  + ChatGPT코드 글꼴 크기 감소  @@ -2308,22 +2297,22 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - ChatGPT 문자 카운터 제한 (CCCL)  + ChatGPT 문자 카운터 제한 (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2359,9 +2348,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 변경 로그

- + - ChatGPT 채팅 코드 복사 및 코드 내보내기 버튼  + ChatGPT 채팅 코드 복사 및 코드 내보내기 버튼  @@ -2382,14 +2371,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2397,9 +2386,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 변경 로그

- + - chatgpt 코드가 강조되었습니다  + chatgpt 코드가 강조되었습니다  @@ -2420,14 +2409,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2435,9 +2424,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 변경 로그

- + - chatgpt 코드 도구  + chatgpt 코드 도구  @@ -2452,14 +2441,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2467,9 +2456,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 다음에서 수정됨

- + - chatgpt 삽입 프롬프트 단어  + chatgpt 삽입 프롬프트 단어  @@ -2484,14 +2473,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2499,9 +2488,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 다음에서 수정됨

- + - Chatgpt 대화를 저장하십시오  + Chatgpt 대화를 저장하십시오  @@ -2516,14 +2505,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2533,9 +2522,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 다음에서 수정됨

- + - Chatgpt는 채팅을 쉽게 관리합니다  + Chatgpt는 채팅을 쉽게 관리합니다  @@ -2550,26 +2539,26 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / 다음에서 수정됨 - - + +

블로그 사이트 (5)

- + - 제한되지 않은 CSDN 로그인  + 제한되지 않은 CSDN 로그인  @@ -2584,14 +2573,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2599,9 +2588,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 변경 로그

- + - 깨끗한 블로그 게시물  + 깨끗한 블로그 게시물  @@ -2616,14 +2605,14 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2631,9 +2620,9 @@ ChatGPT 코드 글꼴을 더 작게 만들기 자동으로 포장 다음에서 수정됨

- + - Zhihu 어두운 테마  + Zhihu 어두운 테마  @@ -2648,14 +2637,14 @@ Zhihu의 어두운 테마 스타일 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2663,9 +2652,9 @@ Zhihu의 어두운 테마 스타일 다음에서 수정됨

- + - WeChat 웹 버전 다크 모드  + WeChat 웹 버전 다크 모드  @@ -2680,14 +2669,14 @@ Zhihu의 어두운 테마 스타일 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2695,9 +2684,9 @@ Zhihu의 어두운 테마 스타일 다음에서 수정됨

- + - 시나 웨이보 모바일 버전 점프  + 시나 웨이보 모바일 버전 점프  @@ -2712,26 +2701,26 @@ Sina Weibo가 자동으로 모바일 버전으로 이동합니다.,웨이보 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / 다음에서 수정됨 - - + +

Twitter (5)

- + - Twitter/x는 리트 윗 된 게시물을 숨 깁니다  + Twitter/x는 리트 윗 된 게시물을 숨 깁니다  @@ -2752,14 +2741,14 @@ Sina Weibo가 자동으로 모바일 버전으로 이동합니다.,웨이보 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2769,9 +2758,9 @@ Sina Weibo가 자동으로 모바일 버전으로 이동합니다.,웨이보 다음에서 수정됨

- + - 트위터 미디어 다운로드 (2025.12.02 고정)  + 트위터 미디어 다운로드 (2025.12.02 고정)  @@ -2792,14 +2781,14 @@ Sina Weibo가 자동으로 모바일 버전으로 이동합니다.,웨이보 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2809,9 +2798,9 @@ Sina Weibo가 자동으로 모바일 버전으로 이동합니다.,웨이보 다음에서 수정됨

- + - 트위터 (x) 블랙리스트 및 차단 된 목록 다운로드  + 트위터 (x) 블랙리스트 및 차단 된 목록 다운로드  @@ -2826,14 +2815,14 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2841,9 +2830,9 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 다음에서 수정됨

- + - 트위터에는 일반 날짜와 시간이 표시됩니다  + 트위터에는 일반 날짜와 시간이 표시됩니다  @@ -2865,22 +2854,22 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다

- + - 트위터(X)-플러스  + 트위터(X)-플러스  @@ -2901,14 +2890,14 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2917,12 +2906,12 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 다음에서 수정됨 - - + +

YouTube (5)

- + - YouTube Assistant  + YouTube Assistant  @@ -2943,14 +2932,14 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2960,9 +2949,9 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 다음에서 수정됨

- + - YouTube는 나중에 바로 가기를 시청합니다  + YouTube는 나중에 바로 가기를 시청합니다  @@ -2977,14 +2966,14 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -2992,9 +2981,9 @@ Twitter (X) 블랙리스트 및 차단 된 목록을 다운로드하고, 페이 다음에서 수정됨

- + - 더 나은 YouTube 볼륨 컨트롤  + 더 나은 YouTube 볼륨 컨트롤  @@ -3009,14 +2998,14 @@ YouTube 비디오 플레이어에 슬라이더를 추가하여 볼륨을 더 자 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -3024,9 +3013,9 @@ YouTube 비디오 플레이어에 슬라이더를 추가하여 볼륨을 더 자 다음에서 수정됨

- + - YouTube 동적 비디오 그리드  + YouTube 동적 비디오 그리드  @@ -3041,14 +3030,14 @@ YouTube 비디오 플레이어에 슬라이더를 추가하여 볼륨을 더 자 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -3058,9 +3047,9 @@ YouTube 비디오 플레이어에 슬라이더를 추가하여 볼륨을 더 자 다음에서 수정됨

- + - YouTube Pro: 오디오 향상기  + YouTube Pro: 오디오 향상기  @@ -3081,26 +3070,26 @@ YouTube 비디오 플레이어에 슬라이더를 추가하여 볼륨을 더 자 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / 다음에서 수정됨 - - + +

TikTok (1)

- + - Tiktok 사용자 정보  + Tiktok 사용자 정보  @@ -3115,26 +3104,26 @@ Tiktok은 프로필에 더 많은 확장 정보를 표시합니다 Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / 다음에서 수정됨 - - + +

Bilibili (2)

- + - Bilibili 비디오 다운로더  + Bilibili 비디오 다운로더  @@ -3149,14 +3138,14 @@ Bilibili 비디오 다운로드(드라마를 지원하지 않습니다) Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / @@ -3164,9 +3153,9 @@ Bilibili 비디오 다운로드(드라마를 지원하지 않습니다) 다음에서 수정됨

- + - Bilibili 라이브 룸 차단 도구  + Bilibili 라이브 룸 차단 도구  @@ -3181,22 +3170,22 @@ Bilibili 라이브 룸 차단 도구,지원 관리 목록,일괄 차단, Greasemonkey / - + - + 읽어보기 파일 / 논의하다 / - + 소스 코드 / 설치하다 / 다음에서 수정됨 - - + + @@ -3210,7 +3199,7 @@ Bilibili 라이브 룸 차단 도구,지원 관리 목록,일괄 차단, > [!IMPORTANT] > -> - _기타 기반 **Chromium** 커널 브라우저(국내 커버 브라우저 등)일반적으로 사용할 수 있습니다 Chrome 확장하다。_ +> - _기타 기반 **Chromium** 커널 브라우저(국내 커버 브라우저와 같은)일반적으로 사용할 수 있습니다 Chrome 확장하다。_ > - _꼭 이용해주세요 **Tampermonkey 공식 버전** 확장하다,其他的用户각본管理器可能导致**제대로 작동하지 않음**脚本。_ > - _스크립트를 다시 설치하고 싶다면,꼭 기억해주세요 Tampermonkey 펼친**휴지통에서 완전히 삭제**스크립트가 끝나면 스크립트를 다시 설치하십시오.。_ @@ -3254,7 +3243,7 @@ Bilibili 라이브 룸 차단 도구,지원 관리 목록,일괄 차단, > - _이 창고의 이름 스타일은 양키스에서 영감을 받았습니다.[Adam Lui 리우잔펑](https://github.com/adamlui)고무하다_ :trollface: > - _이 저장소의 추가 정보 파일은 다음에서 제공됩니다.[Adam Lui 리우잔펑](https://github.com/adamlui)자기보고 스타일_ :trollface: > - _스크립트 내의 상호 리디렉션 점프는 다음에서 비롯됩니다.[Adam Lui 리우잔펑](https://github.com/adamlui)자기보고 스타일_ :trollface: -> - _이 창고의 모든 것`README.md`이 Yankee 저장소에서 복사되어 사용되는 파일`README.md`문서 레이아웃,구분 기호,암호,아이디어_ :trollface: +> - _이 창고에 있는 모든 것`README.md`이 Yankee 저장소에서 복사되어 사용되는 파일`README.md`문서 레이아웃,구분 기호,암호,아이디어_ :trollface: > - _복사된 양키[Adam Lui 리우잔펑](https://github.com/adamlui) Action 내부 코드_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: > - _복사됨 양키[Adam Lui 리우잔펑](https://github.com/adamlui)Action 내부 코드_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: > - _복사된 양키[Adam Lui 리우잔펑](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)구분 기호,조판 스타일 :trollface: @@ -3271,6 +3260,7 @@ Bilibili 라이브 룸 차단 도구,지원 관리 목록,일괄 차단, 人民的勤务员 사람들의 로봇 +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Bilibili 라이브 룸 차단 도구,지원 관리 목록,일괄 차단, ## 🏛️ 오픈소스 라이선스 계약 -이 프로젝트에서는 MIT 특허 승인하다。 -MIT 라이선스는 허용적인 오픈 소스 라이선스 계약입니다.,자세한 내용은 다음을 참조하세요. 라이센스 전문。 +이 프로젝트에서는 MIT 특허 승인하다。 +MIT 라이선스는 허용적인 오픈 소스 라이선스 계약입니다.,자세한 내용은 다음을 참조하세요. 라이센스 전문
@@ -3297,7 +3287,7 @@ MIT 라이선스는 허용적인 오픈 소스 라이선스 계약입니다., ## 🤝 행동강령 -우호적인 관계를 보장하기 위해、존중하고 포용적인 개발 환경,우리는 다음을 개발했습니다행동강령。각 기여자는 다음 지침을 따라야 합니다.。 +우호적인 관계를 보장하기 위해、존중하고 포용적인 개발 환경,우리는 다음을 개발했습니다행동강령。각 기여자는 다음 지침을 따라야 합니다.。
@@ -3307,10 +3297,10 @@ MIT 라이선스는 허용적인 오픈 소스 라이선스 계약입니다., ## 🛡️ 보안 정책 -취약점을 발견한 경우,하나 열어주세요[초안 보안 권장사항](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 +취약점을 발견한 경우,하나 열어주세요[초안 보안 권장 사항](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Pull Request도 환영합니다,하지만 보안상의 이유로,다음 주소로 이메일을 보내주세요. 공개하기 전에 답변을 기다리세요.。 -자세한 내용은 다음을 참조하세요. 보안 정책 +자세한 내용은 다음을 참조하세요. 보안 정책
@@ -3320,7 +3310,7 @@ Pull Request도 환영합니다,하지만 보안상의 이유로,다음 주 ## 💖 기여 가이드 -본 프로젝트에 관심을 가져주셔서 감사합니다!우리는 다음을 개발했습니다기여 가이드。코드나 문서를 원활하게 기여할 수 있도록 돕기 위해,코드나 질문을 제출하기 전에 먼저,내용을 잘 읽어보세요。 +본 프로젝트에 관심을 가져주셔서 감사합니다!우리는 다음을 개발했습니다기여 가이드。코드나 문서를 원활하게 기여할 수 있도록 돕기 위해,코드나 질문을 제출하기 전에 먼저,내용을 잘 읽어보세요。
diff --git a/docs/pt/README.md b/docs/pt/README.md index 3a43b8b41..3275cef89 100644 --- a/docs/pt/README.md +++ b/docs/pt/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
O roteiro vem do grande número de internautas na Internet,Acabei de fazer algumas alterações.Obrigado internautas
Se houver alguma infração,O contato deve ser excluído
- + Recomendado:
Support
Support
@@ -57,37 +57,26 @@ 💡 Tip: A lista acima de gerenciadores de scripts e navegadores não é exaustiva
O script funciona bem no seguinte ambiente
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Este repositório está disponível apenas emGitHubhospedado em,Aqui nãoGitCodeeXPlazahospedado em。Os seguintes repositórios são todos espelhos。
-> :trollface: Se você estiver usando na China continentalgit cloneA velocidade de download é muito lenta,Você também pode usar o seguinte endereço -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Conta espelhada,não-identidade) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Gerenciador de navegador e script](#-Gerenciador de navegador e script) | -[❔️ Como instalar ou usar o script](#%EF%B8%8F-Como instalar ou usar o script) | -[🙏 Agradecimentos especiais ao código aberto](#-Agradecimentos especiais ao código aberto) | -[🛡️ política de segurança](#%EF%B8%8F-política de segurança) | -[🤝 Código de Conduta](#-Código de Conduta) | -[🏛️ Contrato de licença de código aberto](#%EF%B8%8F-Contrato de licença de código aberto) | +[🌐 Gerenciador de navegador e script](#-Gerenciador-de-navegador-e-script) | +[❔️ Como instalar ou usar o script](#%EF%B8%8F-Como-instalar-ou-usar-o-script) | +[🙏 Agradecimentos especiais ao código aberto](#-Agradecimentos-especiais-ao-código-aberto) | +[🛡️ política de segurança](#%EF%B8%8F-política-de-segurança) | +[🤝 Código de Conduta](#-Código-de-Conduta) | +[🏛️ Contrato de licença de código aberto](#%EF%B8%8F-Contrato-de-licença-de-código-aberto) | [🧠 Contribuinte](#-Contribuinte) | -[💖 Guia de contribuição](#-Guia de contribuição) | -[⭐ história das estrelas](#-história das estrelas) | -[📜 lista de scripts](#-lista de scripts) +[💖 Guia de contribuição](#-Guia-de-contribuição) | +[⭐ história das estrelas](#-história-das-estrelas) | +[📜 lista de scripts](#-lista-de-scripts) ## 📜 lista de scripts @@ -96,13 +85,13 @@ **O número atual de scripts publicados no repositório:85,O roteiro inclui:** -
script da web (10) +
script da web (10) | GreasyFork (12) - | roteiro adulto (11) - | Google Roteiro (2) - | GitHub Roteiro (20) - | Traduzir script (3) - | AI Roteiro (9) + | roteiro adulto (11) + | Google Roteiro (2) + | GitHub Roteiro (20) + | Traduzir script (3) + | AI Roteiro (9) | blog (5) | Twitter (5) | YouTube (5) @@ -113,9 +102,9 @@

script da web (10)

- + - -BR botão de rolagem  + -BR botão de rolagem  @@ -136,22 +125,22 @@ Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR Gerenciador de autorização de versão de clipe de gravação de página da Web  + -BR Gerenciador de autorização de versão de clipe de gravação de página da Web  @@ -172,14 +161,14 @@ Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -187,9 +176,9 @@ Registro de alterações

- + - -BR Remover sublinhado do link  + -BR Remover sublinhado do link  @@ -204,22 +193,22 @@ Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - Destaque palavras -chave da web  + Destaque palavras -chave da web  @@ -234,22 +223,22 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - Destaque palavras -chave na web  + Destaque palavras -chave na web  @@ -270,22 +259,22 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR Fixar nos botões superior e inferior  + -BR Fixar nos botões superior e inferior  @@ -306,14 +295,14 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -321,9 +310,9 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Registro de alterações

- + - -BR Pré-visualização em janela pequena  + -BR Pré-visualização em janela pequena  @@ -344,14 +333,14 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -359,9 +348,9 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Registro de alterações

- + - -BR Embeleze formulários da web com lindos gradientes  + -BR Embeleze formulários da web com lindos gradientes  @@ -382,14 +371,14 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -397,9 +386,9 @@ Destaque de palavras -chave personalizadas em páginas da web, incluindo carrega Registro de alterações

- + - Texto para vincular  + Texto para vincular  @@ -414,14 +403,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -429,9 +418,9 @@ Converter links de texto em links clicáveis Modificado de

- + - -BR Notas de corte na nuvem de marcação  + -BR Notas de corte na nuvem de marcação  @@ -452,14 +441,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -468,12 +457,12 @@ Converter links de texto em links clicáveis Modificado de - - + +

GreasyFork (12)

- + - Páginas de script de garfo gorduroso para aprimoramento de URL  + Páginas de script de garfo gorduroso para aprimoramento de URL  @@ -494,22 +483,22 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR Greasyfork Artesão de cola  + -BR Greasyfork Artesão de cola  @@ -530,14 +519,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -545,9 +534,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Script Finder Pesquisa de script do GreasyFork  + -BR Script Finder Pesquisa de script do GreasyFork  @@ -568,14 +557,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -583,9 +572,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Greasyfork Script para exibir avaliações  + -BR Greasyfork Script para exibir avaliações  @@ -606,22 +595,22 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR GreasyFork: Aprimoramento da barra de navegação  + -BR GreasyFork: Aprimoramento da barra de navegação  @@ -642,22 +631,22 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR GreasyFork markdown  + -BR GreasyFork markdown  @@ -678,14 +667,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -693,9 +682,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR GreasyFork Search  + -BR GreasyFork Search  @@ -710,22 +699,22 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR GreasyFork Assistente de Notificação  + -BR GreasyFork Assistente de Notificação  @@ -746,14 +735,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -761,9 +750,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR GreaysFork MelhorarWebHookSincronizar configurações  + -BR GreaysFork MelhorarWebHookSincronizar configurações  @@ -784,14 +773,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -799,9 +788,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR GreasyFork Visualização de dados de script publicado pelo usuário  + -BR GreasyFork Visualização de dados de script publicado pelo usuário  @@ -822,14 +811,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -837,9 +826,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Greasyfork Exibir tempo de registro  + -BR Greasyfork Exibir tempo de registro  @@ -860,14 +849,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -877,9 +866,9 @@ Converter links de texto em links clicáveis Modificado de

- + - Script Greasyfork não atualizado destacado  + Script Greasyfork não atualizado destacado  @@ -900,14 +889,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -916,12 +905,12 @@ Converter links de texto em links clicáveis Modificado de - - + +

roteiro adulto (11)

- + - Vídeos de coleção de backup de lote missav  + Vídeos de coleção de backup de lote missav  @@ -942,14 +931,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -957,9 +946,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR MissAV Login automático  + -BR MissAV Login automático  @@ -974,14 +963,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -989,9 +978,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR ThisAV Login automático  + -BR ThisAV Login automático  @@ -1006,14 +995,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1021,9 +1010,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR JableTV Login automático  + -BR JableTV Login automático  @@ -1038,14 +1027,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1053,9 +1042,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Ferramenta de download de vídeo missav  + -BR Ferramenta de download de vídeo missav  @@ -1076,14 +1065,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1091,9 +1080,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR XVIDEOS Push Download  + -BR XVIDEOS Push Download  @@ -1114,14 +1103,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1129,9 +1118,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Download de vídeo pornHub com um clique  + -BR Download de vídeo pornHub com um clique  @@ -1152,14 +1141,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1167,9 +1156,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Vídeo Xhamster One-Click Download Assistant  + -BR Vídeo Xhamster One-Click Download Assistant  @@ -1190,14 +1179,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1205,9 +1194,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR XNXXXVIDEOS VÍDEO ONE-Click Download Assistant  + -BR XNXXXVIDEOS VÍDEO ONE-Click Download Assistant  @@ -1228,14 +1217,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1243,9 +1232,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - -BR Assistente Missav Enhanced  + -BR Assistente Missav Enhanced  @@ -1266,14 +1255,14 @@ Converter links de texto em links clicáveis Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1281,9 +1270,9 @@ Converter links de texto em links clicáveis Registro de alterações

- + - Acabei de completar 18 anos  + Acabei de completar 18 anos  @@ -1298,14 +1287,14 @@ Desde que acabei de completar 18 anos, posso assistir a um conteúdo adulto Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1314,12 +1303,12 @@ Desde que acabei de completar 18 anos, posso assistir a um conteúdo adulto Modificado de - - + +

Google Roteiro (2)

- + - Bloquear sites de pesquisa do Google  + Bloquear sites de pesquisa do Google  @@ -1334,22 +1323,22 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR Google Assistente de pesquisa avançada  + -BR Google Assistente de pesquisa avançada  @@ -1370,26 +1359,26 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / Registro de alterações - - + +

GitHub Roteiro (20)

- + - -BR 🤠 Tamanho de exibição do armazém do assistente aprimorado do Github  + -BR 🤠 Tamanho de exibição do armazém do assistente aprimorado do Github  @@ -1410,14 +1399,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1427,9 +1416,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - -BR GitHub Classificar por data  + -BR GitHub Classificar por data  @@ -1450,22 +1439,22 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR GitHub downloader de pasta  + -BR GitHub downloader de pasta  @@ -1486,14 +1475,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1501,9 +1490,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR Github Copiar arquivo original URL com download de arquivos  + -BR Github Copiar arquivo original URL com download de arquivos  @@ -1524,14 +1513,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1539,9 +1528,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR GitHub Enviar informações exibir visualização da web  + -BR GitHub Enviar informações exibir visualização da web  @@ -1562,22 +1551,22 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR GitHub Embelezador de lista de arquivos  + -BR GitHub Embelezador de lista de arquivos  @@ -1598,14 +1587,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1613,9 +1602,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR GitHub Confirmar automaticamente a autorização do dispositivo  + -BR GitHub Confirmar automaticamente a autorização do dispositivo  @@ -1630,14 +1619,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1645,9 +1634,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR Github Lista de linguagens de código mostra todas  + -BR Github Lista de linguagens de código mostra todas  @@ -1668,14 +1657,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1683,9 +1672,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR Assistente de salto rápido do GitHub Warehouse  + -BR Assistente de salto rápido do GitHub Warehouse  @@ -1706,14 +1695,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1721,9 +1710,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR Abra o link JSDelivr no GitHub  + -BR Abra o link JSDelivr no GitHub  @@ -1744,14 +1733,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1759,9 +1748,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - -BR Cópia do snippet e downloader de código de código do Github  + -BR Cópia do snippet e downloader de código de código do Github  @@ -1782,14 +1771,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1799,9 +1788,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - -BR Assistente de Tradução de Chave de Atalho do Github  + -BR Assistente de Tradução de Chave de Atalho do Github  @@ -1822,14 +1811,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1837,9 +1826,9 @@ Procure um Google bloqueando um site especificado Registro de alterações

- + - Assistente de Notas de Armazém do Github Star  + Assistente de Notas de Armazém do Github Star  @@ -1860,14 +1849,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1877,9 +1866,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - Github saltar para Deepwiki  + Github saltar para Deepwiki  @@ -1900,14 +1889,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1917,9 +1906,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - Github ocultar copiloto  + Github ocultar copiloto  @@ -1940,14 +1929,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1957,9 +1946,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - Localizador de endereço de e -mail do github  + Localizador de endereço de e -mail do github  @@ -1980,14 +1969,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -1995,9 +1984,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - Github exibe tamanhos de arquivo e pastas  + Github exibe tamanhos de arquivo e pastas  @@ -2019,14 +2008,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2036,9 +2025,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - Co-autor do Github  + Co-autor do Github  @@ -2060,14 +2049,14 @@ Procure um Google bloqueando um site especificado Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2075,9 +2064,9 @@ Procure um Google bloqueando um site especificado Modificado de

- + - Status do filtro de notificação do github  + Status do filtro de notificação do github  @@ -2092,14 +2081,14 @@ Versão de desenvolvimento do Github-Notification-Inbox-Toggle Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2107,9 +2096,9 @@ Versão de desenvolvimento do Github-Notification-Inbox-Toggle Modificado de

- + - Botão de comando copiar clone do GitHub (fork)  + Botão de comando copiar clone do GitHub (fork)  @@ -2130,14 +2119,14 @@ Versão de desenvolvimento do Github-Notification-Inbox-Toggle Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2146,12 +2135,12 @@ Versão de desenvolvimento do Github-Notification-Inbox-Toggle Modificado de - - + +

Traduzir script (3)

- + - Terminador de língua estrangeira  + Terminador de língua estrangeira  @@ -2166,14 +2155,14 @@ Identifique caracteres não chineses. Se o comprimento for maior que 5 e o texto Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2181,9 +2170,9 @@ Identifique caracteres não chineses. Se o comprimento for maior que 5 e o texto Registro de alterações

- + - Tradução da página da web - tradução automática para chinês  + Tradução da página da web - tradução automática para chinês  @@ -2198,22 +2187,22 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR Widget de tradução |  + -BR Widget de tradução |  @@ -2234,14 +2223,14 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2250,12 +2239,12 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Modificado de - - + +

AI Roteiro (9)

- + - -BR ChatGPT Recolher mensagem própria e largura máxima  + -BR ChatGPT Recolher mensagem própria e largura máxima  @@ -2276,14 +2265,14 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2291,9 +2280,9 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Registro de alterações

- + - -BR ChatGPTTamanho da fonte do código reduzido  + -BR ChatGPTTamanho da fonte do código reduzido  @@ -2308,22 +2297,22 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - -BR ChatGPT Limite do contador de caracteres (CCCL)  + -BR ChatGPT Limite do contador de caracteres (CCCL)  @@ -2344,14 +2333,14 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2359,9 +2348,9 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Registro de alterações

- + - -BR ChatGPT Botões de copiar código de bate-papo e exportar código  + -BR ChatGPT Botões de copiar código de bate-papo e exportar código  @@ -2382,14 +2371,14 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2397,9 +2386,9 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Registro de alterações

- + - -BR Código ChatGPT destacado  + -BR Código ChatGPT destacado  @@ -2420,14 +2409,14 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2435,9 +2424,9 @@ Adicione um ícone de tradução do Google ao canto inferior direito de cada pá Registro de alterações

- + - Ferramenta de código chatgpt  + Ferramenta de código chatgpt  @@ -2452,14 +2441,14 @@ Adicione a funcionalidade aos blocos de código ChatGPT, incluindo a opção de Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2467,9 +2456,9 @@ Adicione a funcionalidade aos blocos de código ChatGPT, incluindo a opção de Modificado de

- + - Chatgpt Insert Primeiro Palavra  + Chatgpt Insert Primeiro Palavra  @@ -2484,14 +2473,14 @@ Insira o comando na caixa de entrada ChatGPT via combinação de teclas Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2499,9 +2488,9 @@ Insira o comando na caixa de entrada ChatGPT via combinação de teclas Modificado de

- + - Chatgpt Save conversa  + Chatgpt Save conversa  @@ -2516,14 +2505,14 @@ Salve a conversa como um arquivo .txt Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2533,9 +2522,9 @@ Salve a conversa como um arquivo .txt Modificado de

- + - Chatgpt gerencia facilmente bate -papos  + Chatgpt gerencia facilmente bate -papos  @@ -2550,26 +2539,26 @@ Pesquise bate -papo, bate -papo de filtro, bate -papo de exclusão rápida/lote. Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / Modificado de - - + +

blog (5)

- + - Login CSDN irrestrito  + Login CSDN irrestrito  @@ -2584,14 +2573,14 @@ Vá para o seu porra de login e copiar CSDN, você pode copiar sem fazer login Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2599,9 +2588,9 @@ Vá para o seu porra de login e copiar CSDN, você pode copiar sem fazer login Registro de alterações

- + - Postagens limpas do blog  + Postagens limpas do blog  @@ -2616,14 +2605,14 @@ Remova barras laterais irritantes, blocos de comentários, anúncios e muito mai Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2631,9 +2620,9 @@ Remova barras laterais irritantes, blocos de comentários, anúncios e muito mai Modificado de

- + - Tema escuro Zhihu  + Tema escuro Zhihu  @@ -2648,14 +2637,14 @@ Estilo de tema sombrio de Zhihu Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2663,9 +2652,9 @@ Estilo de tema sombrio de Zhihu Modificado de

- + - Modo escuro da versão web do WeChat  + Modo escuro da versão web do WeChat  @@ -2680,14 +2669,14 @@ Habilitar janela de tela inteira do WeChat web,modo escuro Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2695,9 +2684,9 @@ Habilitar janela de tela inteira do WeChat web,modo escuro Modificado de

- + - Salto da versão móvel do Sina Weibo  + Salto da versão móvel do Sina Weibo  @@ -2712,26 +2701,26 @@ Sina Weibo salta automaticamente para a versão móvel,Suporte Weibo、artigo Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / Modificado de - - + +

Twitter (5)

- + - -BR Twitter/x Hide Postagens Retweetadas  + -BR Twitter/x Hide Postagens Retweetadas  @@ -2752,14 +2741,14 @@ Sina Weibo salta automaticamente para a versão móvel,Suporte Weibo、artigo Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2769,9 +2758,9 @@ Sina Weibo salta automaticamente para a versão móvel,Suporte Weibo、artigo Modificado de

- + - Download de mídia do Twitter (2025.12.02 corrigido)  + Download de mídia do Twitter (2025.12.02 corrigido)  @@ -2792,14 +2781,14 @@ Sina Weibo salta automaticamente para a versão móvel,Suporte Weibo、artigo Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2809,9 +2798,9 @@ Sina Weibo salta automaticamente para a versão móvel,Suporte Weibo、artigo Modificado de

- + - Twitter (x) Lista negra e download da lista bloqueada  + Twitter (x) Lista negra e download da lista bloqueada  @@ -2826,14 +2815,14 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2841,9 +2830,9 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Modificado de

- + - Twitter exibe data e hora normais  + Twitter exibe data e hora normais  @@ -2865,22 +2854,22 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar

- + - Twitter(X)-Mais  + Twitter(X)-Mais  @@ -2901,14 +2890,14 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2917,12 +2906,12 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Modificado de - - + +

YouTube (5)

- + - -BR Assistente do YouTube  + -BR Assistente do YouTube  @@ -2943,14 +2932,14 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2960,9 +2949,9 @@ Usado para baixar listas negras do Twitter (x) e listas bloqueadas, suportar a d Modificado de

- + - YouTube assistir atalhos mais tarde  + YouTube assistir atalhos mais tarde  @@ -2977,14 +2966,14 @@ Use atalhos de teclado para adicionar ou excluir o vídeo atual do YouTube para Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -2992,9 +2981,9 @@ Use atalhos de teclado para adicionar ou excluir o vídeo atual do YouTube para Modificado de

- + - Melhores controles de volume do YouTube  + Melhores controles de volume do YouTube  @@ -3009,14 +2998,14 @@ Adicione os controles deslizantes ao reprodutor de vídeo do YouTube para tornar Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -3024,9 +3013,9 @@ Adicione os controles deslizantes ao reprodutor de vídeo do YouTube para tornar Modificado de

- + - Grade de vídeo dinâmico do YouTube  + Grade de vídeo dinâmico do YouTube  @@ -3041,14 +3030,14 @@ Ajuste dinamicamente a grade de vídeo do YouTube com base na largura da janela Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -3058,9 +3047,9 @@ Ajuste dinamicamente a grade de vídeo do YouTube com base na largura da janela Modificado de

- + - YouTube Pro: intensificador de áudio  + YouTube Pro: intensificador de áudio  @@ -3081,26 +3070,26 @@ Ajuste dinamicamente a grade de vídeo do YouTube com base na largura da janela Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / Modificado de - - + +

TikTok (1)

- + - Informações do usuário do Tiktok  + Informações do usuário do Tiktok  @@ -3115,26 +3104,26 @@ Tiktok exibe mais informações estendidas no perfil Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / Modificado de - - + +

Bilibili (2)

- + - Descarregador de vídeo Bilibili  + Descarregador de vídeo Bilibili  @@ -3149,14 +3138,14 @@ Baixe vídeos do Bilibili(Não suporta dramas) Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / @@ -3164,9 +3153,9 @@ Baixe vídeos do Bilibili(Não suporta dramas) Modificado de

- + - Ferramenta de bloqueio de sala ao vivo Bilibili  + Ferramenta de bloqueio de sala ao vivo Bilibili  @@ -3181,22 +3170,22 @@ Ferramenta de bloqueio de sala ao vivo Bilibili,Lista de gerenciamento de supo Greasemonkey / - + - + arquivo leia-me / discutir / - + Código fonte / Instalar / Modificado de - - + + @@ -3271,6 +3260,7 @@ Para usar qualquer script,Primeiro você precisa instalar o navegador **Tamper 人民的勤务员 robôs de pessoas +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Lista de contribuições por: [contributors](https://github.com/jaywcjlove/git ## 🏛️ Contrato de licença de código aberto -Este projeto usa MIT licença Autorizar。 -MIT A licença é um acordo de licenciamento de código aberto permissivo,Para obter detalhes, consulte Texto completo da licença。 +Este projeto usa MIT licença Autorizar。 +MIT A licença é um acordo de licenciamento de código aberto permissivo,Para obter detalhes, consulte Texto completo da licença
@@ -3297,7 +3287,7 @@ MIT A licença é um acordo de licenciamento de código aberto permissivo,Para ## 🤝 Código de Conduta -Para garantir um amistoso、Um ambiente de desenvolvimento respeitoso e inclusivo,Desenvolvemos o seguinteCódigo de Conduta。Cada colaborador é solicitado a seguir estas diretrizes。 +Para garantir um amistoso、Um ambiente de desenvolvimento respeitoso e inclusivo,Desenvolvemos o seguinteCódigo de Conduta。Cada colaborador é solicitado a seguir estas diretrizes。
@@ -3310,7 +3300,7 @@ Para garantir um amistoso、Um ambiente de desenvolvimento respeitoso e inclusiv Se você encontrar uma vulnerabilidade,por favor abra um[projecto de recomendações de segurança](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Solicitações pull também são bem-vindas,mas por razões de segurança,Por favor envie um e-mail para e aguarde uma resposta antes de torná-la pública。 -Para obter detalhes, consulte política de segurança +Para obter detalhes, consulte política de segurança
@@ -3320,7 +3310,7 @@ Para obter detalhes, consulte política de segur ## 💖 Guia de contribuição -Obrigado pelo seu interesse neste projeto!Desenvolvemos o seguinteGuia de contribuição。Para ajudá-lo a contribuir com código ou documentação sem problemas,Antes de enviar código ou perguntas, por favor,Leia o conteúdo com atenção。 +Obrigado pelo seu interesse neste projeto!Desenvolvemos o seguinteGuia de contribuição。Para ajudá-lo a contribuir com código ou documentação sem problemas,Antes de enviar código ou perguntas, por favor,Leia o conteúdo com atenção。
@@ -3366,7 +3356,7 @@ Obrigado pelo seu interesse neste projeto!Desenvolvemos o seguinte - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
- Сценарий принадлежит огромному количеству пользователей сети Интернет.,Я только что внес некоторые изменения.Спасибо пользователям сети
+ 脚本来自互联网广大网友,本人仅是做了些许改动.Спасибо пользователям сети
Если есть нарушения,Контакт необходимо удалить
- + Рекомендуется:
Support
Support
@@ -57,52 +57,41 @@ 💡 Tip: Приведенный выше список менеджеров скриптов и браузеров не является исчерпывающим.
Сценарий отлично работает в следующей среде
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Этот репозиторий доступен только вGitHubразмещен на,Не здесьGitCodeиXPlazaразмещен на。Все следующие репозитории являются зеркалами.。
-> :trollface: Если вы используете его в материковом Китаеgit cloneСкорость загрузки слишком низкая,Вы также можете использовать следующий адрес -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Зеркальный аккаунт,нетождественность) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Браузер и менеджер скриптов](#-Браузер и менеджер скриптов) | -[❔️ Как установить или использовать скрипт](#%EF%B8%8F-Как установить или использовать скрипт) | -[🙏 Особая благодарность открытому исходному коду](#-Особая благодарность открытому исходному коду) | -[🛡️ политика безопасности](#%EF%B8%8F-политика безопасности) | -[🤝 нормы поведения](#-нормы поведения) | -[🏛️ Лицензионное соглашение с открытым исходным кодом](#%EF%B8%8F-Лицензионное соглашение с открытым исходным кодом) | +[🌐 Браузер и менеджер скриптов](#-Браузер-и-менеджер-скриптов) | +[❔️ Как установить или использовать скрипт](#%EF%B8%8F-Как-установить-или-использовать-скрипт) | +[🙏 Особая благодарность открытому исходному коду](#-Особая-благодарность-открытому-исходному-коду) | +[🛡️ 安全政策](#%EF%B8%8F-安全政策) | +[🤝 нормы поведения](#-нормы-поведения) | +[🏛️ Лицензионное соглашение с открытым исходным кодом](#%EF%B8%8F-Лицензионное-соглашение-с-открытым-исходным-кодом) | [🧠 Автор](#-Автор) | -[💖 Руководство по вкладу](#-Руководство по вкладу) | -[⭐ звездная история](#-звездная история) | -[📜 список сценариев](#-список сценариев) +[💖 Руководство по вкладу](#-Руководство-по-вкладу) | +[⭐ звездная история](#-звездная-история) | +[📜 список сценариев](#-список-сценариев) ## 📜 список сценариев -💡 **Tip:** _Чтобы показать скриншот предварительного просмотра,Нажмите под названием расширения. ▸ или описать。_ +💡 **Tip:** _要显示预览截图,请点击扩展名称下方的 ▸ или описать。_ **Текущее количество опубликованных скриптов в репозитории:85,Скрипт включает в себя:**
веб-скрипт (10) | GreasyFork (12) - | сценарий для взрослых (11) - | Google Скрипт (2) - | GitHub Скрипт (20) - | Перевести скрипт (3) - | AI Скрипт (9) + | сценарий для взрослых (11) + | Google Скрипт (2) + | GitHub Скрипт (20) + | Перевести скрипт (3) + | AI Скрипт (9) | блог-сайт (5) | Twitter (5) | YouTube (5) @@ -112,10 +101,10 @@ -

веб-скрипт (10)

- +

网页脚本 (10)

+ - кнопка прокрутки  + кнопка прокрутки  @@ -136,22 +125,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Менеджер авторизации версий клипов для написания веб-страниц  + Менеджер авторизации версий клипов для написания веб-страниц  @@ -172,14 +161,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -187,9 +176,9 @@ Журнал изменений

- + - Удалить подчеркивание ссылки  + Удалить подчеркивание ссылки  @@ -204,22 +193,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Выделите веб -ключевые слова  + Выделите веб -ключевые слова  @@ -234,22 +223,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Выделите ключевые слова в Интернете  + Выделите ключевые слова в Интернете  @@ -270,22 +259,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Закрепить на верхней и нижней кнопках  + Закрепить на верхней и нижней кнопках  @@ -306,14 +295,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -321,11 +310,11 @@ Журнал изменений

- + - Предварительный просмотр в небольшом окне  + Предварительный просмотр в небольшом окне  - + Tweet @@ -344,14 +333,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -359,9 +348,9 @@ Журнал изменений

- + - Украсьте веб-формы великолепными градиентами  + Украсьте веб-формы великолепными градиентами  @@ -382,14 +371,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -397,9 +386,9 @@ Журнал изменений

- + - Текст на ссылку  + Текст на ссылку  @@ -414,24 +403,24 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / - Изменено из + 修改自

- + - Примечания к облаку отметки  + Примечания к облаку отметки  @@ -452,14 +441,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -468,12 +457,12 @@ Изменено из - - + +

GreasyFork (12)

- + - Страницы сценариев Greasy Fork для улучшения URL  + Страницы сценариев Greasy Fork для улучшения URL  @@ -494,22 +483,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Greasyfork Мастер по клею  + Greasyfork Мастер по клею  @@ -530,14 +519,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -545,9 +534,9 @@ Журнал изменений

- + - Script Finder Поиск сценария GreasyFork  + Script Finder Поиск сценария GreasyFork  @@ -568,14 +557,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -583,9 +572,9 @@ Журнал изменений

- + - Greasyfork Скрипт для отображения рейтингов  + Greasyfork Скрипт для отображения рейтингов  @@ -606,22 +595,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - GreasyFork: Улучшение панели навигации  + GreasyFork: Улучшение панели навигации  @@ -642,22 +631,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -693,9 +682,9 @@ Журнал изменений

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - GreasyFork Помощник по уведомлениям  + GreasyFork Помощник по уведомлениям  @@ -746,14 +735,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -761,9 +750,9 @@ Журнал изменений

- + - GreaysFork УсиливатьWebHookСинхронизировать настройки  + GreaysFork УсиливатьWebHookСинхронизировать настройки  @@ -784,14 +773,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -799,9 +788,9 @@ Журнал изменений

- + - GreasyFork Визуализация данных сценария, опубликованного пользователем.  + GreasyFork Визуализация данных сценария, опубликованного пользователем.  @@ -822,14 +811,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -837,9 +826,9 @@ Журнал изменений

- + - Greasyfork Показать время регистрации  + Greasyfork Показать время регистрации  @@ -860,26 +849,26 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений / - Изменено из + 修改自

- + - Geasyfork не обновленный скрипт выделен  + Geasyfork не обновленный скрипт выделен  @@ -900,28 +889,28 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений / - Изменено из + 修改自 - - -

сценарий для взрослых (11)

- + + +

成人脚本 (11)

+ - Миссав пакетный резервный видео видео  + Миссав пакетный резервный видео видео  @@ -942,14 +931,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -957,9 +946,9 @@ Журнал изменений

- + - MissAV Автоматический вход  + MissAV Автоматический вход  @@ -974,14 +963,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -989,9 +978,9 @@ Журнал изменений

- + - ThisAV Автоматический вход  + ThisAV Автоматический вход  @@ -1006,14 +995,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1021,9 +1010,9 @@ Журнал изменений

- + - JableTV Автоматический вход  + JableTV Автоматический вход  @@ -1038,14 +1027,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1053,9 +1042,9 @@ Журнал изменений

- + - Инструмент загрузки видео Missav  + Инструмент загрузки видео Missav  @@ -1076,14 +1065,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1091,9 +1080,9 @@ Журнал изменений

- + - xvideos push скачать  + xvideos push скачать  @@ -1114,14 +1103,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1129,9 +1118,9 @@ Журнал изменений

- + - Скачать видео Pornhub с одним щелчком  + Скачать видео Pornhub с одним щелчком  @@ -1152,14 +1141,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1167,9 +1156,9 @@ Журнал изменений

- + - Xhamster Video One Click Download Assistant  + Xhamster Video One Click Download Assistant  @@ -1190,14 +1179,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1205,9 +1194,9 @@ Журнал изменений

- + - Xnxxvideos видео один клик скачать помощник  + Xnxxvideos видео один клик скачать помощник  @@ -1228,14 +1217,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1243,9 +1232,9 @@ Журнал изменений

- + - Missav Enhanced Assistant  + Missav Enhanced Assistant  @@ -1266,14 +1255,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1281,9 +1270,9 @@ Журнал изменений

- + - Только что исполнилось 18 лет  + Только что исполнилось 18 лет  @@ -1298,28 +1287,28 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений / - Изменено из + 修改自 - - + +

Google Скрипт (2)

- + - Заблокировать сайты поиска Google  + Заблокировать сайты поиска Google  @@ -1334,22 +1323,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Google Расширенный помощник поиска  + Google Расширенный помощник поиска  @@ -1370,26 +1359,26 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений - - + +

GitHub Скрипт (20)

- + - 🤠 Расширенный размер отображения склада помощника Github  + 🤠 Расширенный размер отображения склада помощника Github  @@ -1410,14 +1399,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1427,9 +1416,9 @@ Изменено из

- + - GitHub Сортировать по дате  + GitHub Сортировать по дате  @@ -1450,22 +1439,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - GitHub загрузчик папок  + GitHub загрузчик папок  @@ -1486,14 +1475,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1501,9 +1490,9 @@ Журнал изменений

- + - Github Скопировать исходный файл URL с загрузкой файлов  + Github Скопировать исходный файл URL с загрузкой файлов  @@ -1524,14 +1513,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1539,9 +1528,9 @@ Журнал изменений

- + - GitHub Отправить информацию, отобразить веб-просмотр  + GitHub Отправить информацию, отобразить веб-просмотр  @@ -1562,22 +1551,22 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - GitHub Средство украшения списка файлов  + GitHub Средство украшения списка файлов  @@ -1598,14 +1587,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1613,9 +1602,9 @@ Журнал изменений

- + - GitHub Автоматически подтверждать авторизацию устройства  + GitHub Автоматически подтверждать авторизацию устройства  @@ -1630,14 +1619,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1645,9 +1634,9 @@ Журнал изменений

- + - Github Список языков программирования показать все  + Github Список языков программирования показать все  @@ -1668,14 +1657,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1683,9 +1672,9 @@ Журнал изменений

- + - Помощник по быстрому переходу на склад GitHub  + Помощник по быстрому переходу на склад GitHub  @@ -1706,14 +1695,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1721,9 +1710,9 @@ Журнал изменений

- + - Откройте ссылку JSDelivr на GitHub  + Откройте ссылку JSDelivr на GitHub  @@ -1744,14 +1733,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1759,9 +1748,9 @@ Журнал изменений

- + - Github Gist Code Specy Copy and Downloader  + Github Gist Code Specy Copy and Downloader  @@ -1782,14 +1771,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1799,9 +1788,9 @@ Изменено из

- + - GitHub  + GitHub  @@ -1822,14 +1811,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1837,9 +1826,9 @@ Журнал изменений

- + - Звездный склад GitHub  + Звездный склад GitHub  @@ -1860,26 +1849,26 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений / - Изменено из + 修改自

- + - GitHub прыгнет в Дипвики  + GitHub прыгнет в Дипвики  @@ -1900,14 +1889,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1917,9 +1906,9 @@ Изменено из

- + - GitHub скрыть копилот  + GitHub скрыть копилот  @@ -1940,14 +1929,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1957,9 +1946,9 @@ Изменено из

- + - GitHub Emlect Finder  + GitHub Emlect Finder  @@ -1980,14 +1969,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -1995,9 +1984,9 @@ Изменено из

- + - GitHub отображает размеры файлов и папок  + GitHub отображает размеры файлов и папок  @@ -2019,26 +2008,26 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений / - Изменено из + 修改自

- + - GitHub соавтор  + GitHub соавтор  @@ -2060,14 +2049,14 @@ Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2075,9 +2064,9 @@ Изменено из

- + - Статус фильтра GitHub  + Статус фильтра GitHub  @@ -2092,14 +2081,14 @@ github-notification-inbox-toggle версия разработки Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2107,9 +2096,9 @@ github-notification-inbox-toggle версия разработки Изменено из

- + - Командная кнопка копирования клона GitHub (вилка)  + Командная кнопка копирования клона GitHub (вилка)  @@ -2130,14 +2119,14 @@ github-notification-inbox-toggle версия разработки Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2146,12 +2135,12 @@ github-notification-inbox-toggle версия разработки Изменено из - - -

Перевести скрипт (3)

- + + +

翻译脚本 (3)

+ - Терминатор иностранного языка  + Терминатор иностранного языка  @@ -2166,14 +2155,14 @@ github-notification-inbox-toggle версия разработки Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2181,11 +2170,11 @@ github-notification-inbox-toggle версия разработки Журнал изменений

- + - Перевод веб -страницы - автоматический перевод на китайский  + Перевод веб -страницы - автоматический перевод на китайский  - + Tweet @@ -2198,22 +2187,22 @@ github-notification-inbox-toggle версия разработки Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Перевод виджет |  + Перевод виджет |  @@ -2234,14 +2223,14 @@ github-notification-inbox-toggle версия разработки Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2250,12 +2239,12 @@ github-notification-inbox-toggle версия разработки Изменено из - - + +

AI Скрипт (9)

- + - ChatGPT Свернуть собственное сообщение и максимальную ширину  + ChatGPT Свернуть собственное сообщение и максимальную ширину  @@ -2276,14 +2265,14 @@ github-notification-inbox-toggle версия разработки Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2291,9 +2280,9 @@ github-notification-inbox-toggle версия разработки Журнал изменений

- + - ChatGPTРазмер шрифта кода уменьшен  + ChatGPTРазмер шрифта кода уменьшен  @@ -2308,22 +2297,22 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - ChatGPT Ограничение счетчика символов (CCCL)  + ChatGPT Ограничение счетчика символов (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2359,9 +2348,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Журнал изменений

- + - ChatGPT Кнопки копирования кода чата и экспорта кода  + ChatGPT Кнопки копирования кода чата и экспорта кода  @@ -2382,14 +2371,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2397,9 +2386,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Журнал изменений

- + - Код CHATGPT выделен  + Код CHATGPT выделен  @@ -2420,14 +2409,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2435,9 +2424,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Журнал изменений

- + - Инструмент CATGPT CODE  + Инструмент CATGPT CODE  @@ -2452,24 +2441,24 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / - Изменено из + 修改自

- + - CHATGPT вставьте оперативное слово  + CHATGPT вставьте оперативное слово  @@ -2484,14 +2473,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2499,9 +2488,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Изменено из

- + - Chatgpt сохранить разговор  + Chatgpt сохранить разговор  @@ -2516,14 +2505,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2533,9 +2522,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Изменено из

- + - Chatgpt легко управлять чатами  + Chatgpt легко управлять чатами  @@ -2550,26 +2539,26 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Изменено из - - + +

блог-сайт (5)

- + - Неограниченный логин CSDN  + Неограниченный логин CSDN  @@ -2584,14 +2573,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2599,9 +2588,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Журнал изменений

- + - Чистые сообщения в блоге  + Чистые сообщения в блоге  @@ -2616,14 +2605,14 @@ ChatGPT Уменьшить шрифт кода и автоматически о Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2631,9 +2620,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Изменено из

- + - Чжиху темная тема  + 知乎的深色主题  @@ -2641,21 +2630,21 @@ ChatGPT Уменьшить шрифт кода и автоматически о

-Темный стиль Чжиху +知乎的深色主题风格
Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2663,9 +2652,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Изменено из

- + - Темный режим веб-версии WeChat  + Темный режим веб-версии WeChat  @@ -2673,21 +2662,21 @@ ChatGPT Уменьшить шрифт кода и автоматически о

-Включить полноэкранное окно веб-WeChat,темный режим +启用网页微信全屏窗口,深色模式
Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2695,9 +2684,9 @@ ChatGPT Уменьшить шрифт кода и автоматически о Изменено из

- + - Переход на мобильную версию Sina Weibo  + Переход на мобильную версию Sina Weibo  @@ -2712,26 +2701,26 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Изменено из - - + +

Twitter (5)

- + - Twitter/x скрыть ретвитические сообщения  + Twitter/x скрыть ретвитические сообщения  @@ -2752,14 +2741,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2769,9 +2758,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - Скачать Twitter Media (2025.12.02 Исправлена)  + Скачать Twitter Media (2025.12.02 Исправлена)  @@ -2792,14 +2781,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2809,9 +2798,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - Twitter (x) BlackList и Blocked List скачать  + Twitter (x) BlackList и Blocked List скачать  @@ -2826,14 +2815,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2841,9 +2830,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - Твиттер отображает обычную дату и время  + Твиттер отображает обычную дату и время  @@ -2865,22 +2854,22 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить

- + - Твиттер(X)-Плюс  + Твиттер(X)-Плюс  @@ -2901,28 +2890,28 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Журнал изменений / - Изменено из + 修改自 - - + +

YouTube (5)

- + - YouTube Assistant  + YouTube Assistant  @@ -2943,14 +2932,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2960,9 +2949,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - Ярлыки часа на YouTube позже  + Ярлыки часа на YouTube позже  @@ -2977,14 +2966,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -2992,9 +2981,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - Лучшие регуляторы громкости YouTube  + Лучшие регуляторы громкости YouTube  @@ -3009,14 +2998,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -3024,9 +3013,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - Dynamic Video Grid YouTube  + Dynamic Video Grid YouTube  @@ -3041,14 +3030,14 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -3058,9 +3047,9 @@ Sina Weibo автоматически переходит на мобильную Изменено из

- + - YouTube Pro: усилитель звука  + YouTube Pro: усилитель звука  @@ -3081,26 +3070,26 @@ Sina Weibo автоматически переходит на мобильную Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Изменено из - - + +

TikTok (1)

- + - Информация пользователя Tiktok  + Информация пользователя Tiktok  @@ -3115,26 +3104,26 @@ Tiktok отображает более расширенную информаци Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Изменено из - - + +

Bilibili (2)

- + - Билибили видео-загрузчик  + 哔哩哔哩视频下载器  @@ -3142,21 +3131,21 @@ Tiktok отображает более расширенную информаци

-Скачать видео Билибили(Не поддерживает драмы) +下载哔哩哔哩视频(Не поддерживает драмы)
Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / @@ -3164,9 +3153,9 @@ Tiktok отображает более расширенную информаци Изменено из

- + - Инструмент блокировки Bilibili Live Room  + Инструмент блокировки Bilibili Live Room  @@ -3181,38 +3170,38 @@ Tiktok отображает более расширенную информаци Greasemonkey / - + - + файл readme / обсуждать / - + Исходный код / Установить / Изменено из - - + + -## ❔️ Как установить или использовать скрипт? +## ❔️ 如何安装或使用脚本? Чтобы использовать любой скрипт,Сначала вам нужно установить браузер **Tampermonkey Расширение диспетчера сценариев([Chrome](https://pan.lanpw.com/b073l8d1e)** / **[Firefox](https://addons.mozilla.org/firefox/addon/tampermonkey/)** / **[Edge](https://microsoftedge.microsoft.com/addons/detail/tampermonkey/iikmkjmpaadaobahmlepeloendndfphd?hl=zh-CN))。** - Нажмите на форму **\[Установить\]** Непосредственное открытие интерфейса установки диспетчера сценариев.。 -- если Github Скорость доступа слишком низкая,Вы можете нажать кнопку GreasyFork **\[Установить\]** Приглашение к расширению появляется после,Нажмите еще раз **\[Установить\]** Вот и все。 +- если Github Скорость доступа слишком низкая,可以选择点击 GreasyFork **\[Установить\]** 后弹出扩展提示,Нажмите еще раз **\[Установить\]** Вот и все。 - [Посмотреть подробное руководство](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md) > [!IMPORTANT] > > - _Другие на основе **Chromium** Ядро браузера(Например, внутренний браузер обложки)Обычно можно использовать Chrome Расширять。_ -> - _Пожалуйста, обязательно используйте **Tampermonkey Официальная версия** Расширять,其他的用户Скрипт管理器可能导致**Не работает должным образом**脚本。_ -> - _Если вы хотите переустановить скрипт,Пожалуйста, не забудьте Tampermonkey расширенный**Полностью удалить из корзины**После скрипта зайдите и переустановите скрипт.。_ +> - _Пожалуйста, обязательно используйте **Tampermonkey Официальная версия** Расширять,其他的用户Скрипт管理器可能导致**无法正常使用**脚本。_ +> - _如果要重装脚本,Пожалуйста, не забудьте Tampermonkey расширенный**Полностью удалить из корзины**После скрипта зайдите и переустановите скрипт.。_ > _**Нет автономной установки .crx Расширять?[Chrome、Edge Открыть скрытое повторно [Установка с помощью перетаскивания .crx Расширять] Функция!](https://zhuanlan.zhihu.com/p/276027099)**_ @@ -3227,12 +3216,12 @@ Tiktok отображает более расширенную информаци > [!TIP] > > - XIU2 :+1: -> - Этот файл readme репозитория скопирован[XIU2/UserScript//README.md](https://github.com/XIU2/UserScript/#:~:text=%E5%A6%82%E4%BD%95%E5%AE%89%E8%A3%85/%E4%BD%BF%E7%94%A8%E8%84%9A%E6%9C%AC%EF%BC%9F)содержание `Браузер и менеджер скриптов` +> - Этот файл readme репозитория скопирован[XIU2/UserScript//README.md](https://github.com/XIU2/UserScript/#:~:text=%E5%A6%82%E4%BD%95%E5%AE%89%E8%A3%85/%E4%BD%BF%E7%94%A8%E8%84%9A%E6%9C%AC%EF%BC%9F)содержание `浏览器与脚本管理器` > [!TIP] > > - Hmjz100 :+1: -> - Все на складе`README.md`Значок файла скопирован.[Hmjz100](https://github.com/hmjz100)склад[Online-disk-direct-link-download-assistant](https://github.com/hmjz100/Online-disk-direct-link-download-assistant)внутренний[README.md](https://github.com/hmjz100/Online-disk-direct-link-download-assistant/blob/main/README.md)Стиль значка документа +> - 仓库内所有`README.md`Значок файла скопирован.[Hmjz100](https://github.com/hmjz100)склад[Online-disk-direct-link-download-assistant](https://github.com/hmjz100/Online-disk-direct-link-download-assistant)внутренний[README.md](https://github.com/hmjz100/Online-disk-direct-link-download-assistant/blob/main/README.md)Стиль значка документа > [!TIP] > @@ -3243,19 +3232,19 @@ Tiktok отображает более расширенную информаци > [!TIP] > > - сын пустыни :+1: -> - Скопировано [сын пустыни](https://github.com/maboloshi)склад[github-chinese](https://github.com/maboloshi/github-chinese)код внутри
+> - 复制了 [сын пустыни](https://github.com/maboloshi)的仓库[github-chinese](https://github.com/maboloshi/github-chinese)код внутри
> - На этом складе`writer.py` `update-contributors.yml` Скопировано с помощью[tributors_images.yml](https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml)код внутри > - Этот файл readme репозитория скопирован[github-chinese/README.md](https://github.com/maboloshi/github-chinese#:~:text=%E6%B5%8F%E8%A7%88%E5%99%A8%E4%B8%8E%D0%9C%D0%B5%D0%BD%D0%B5%D0%B4%D0%B6%D0%B5%D1%80%20%D1%81%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D0%B5%D0%B2)содержание `Как установить/Использовать скрипт?` > [!TIP] > > - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui Лю Чжаньпэн :+1: -> - _Автоматический перевод этого репозитория и Action Особая благодарность Янки[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)Отличные идеи и код!_ :trollface: -> - _Стиль названия этого склада вдохновлен командой Yankees.[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)Вдохновлять_ :trollface: +> - _Автоматический перевод этого репозитория и Action Особая благодарность Янки[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)出色的想法与代码!_ :trollface: +> - _本仓库命名风格受美国佬[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)Вдохновлять_ :trollface: > - _Файл readme в этом репозитории взят из[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)стиль самоотчета_ :trollface: > - _Взаимный переход перенаправления внутри скрипта происходит из[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)стиль самоотчета_ :trollface: > - _Все на этом складе`README.md`Файл скопирован и использован из этого репозитория Yankee.`README.md`Макет документа,разделитель,код,Идеи_ :trollface: -> - _скопированный янки[Adam Lui Лю Чжаньпэн](https://github.com/adamlui) Action внутренний код_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: +> - _скопированный янки[Adam Lui 刘展鹏](https://github.com/adamlui) Action 内代码_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: > - _Скопировано янки[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)Action внутренний код_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: > - _скопированный янки[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)разделитель,Стиль набора текста :trollface: > - _Скопировано янки[Adam Lui Лю Чжаньпэн](https://github.com/adamlui)Python внутренний код_ [translate-en-messages.py](https://github.com/adamlui/python-utils/blob/main/translate-messages/translate-en-messages.py) :trollface: @@ -3270,7 +3259,8 @@ Tiktok отображает более расширенную информаци 人民的勤务员 -люди-роботы +人民的机器人 +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Tiktok отображает более расширенную информаци ## 🏛️ Лицензионное соглашение с открытым исходным кодом -В этом проекте используется MIT лицензия Авторизовать。 -MIT Лицензия представляет собой разрешительное лицензионное соглашение с открытым исходным кодом.,Подробную информацию см. Полный текст лицензии。 +В этом проекте используется MIT лицензия Авторизовать。 +MIT Лицензия представляет собой разрешительное лицензионное соглашение с открытым исходным кодом.,Подробную информацию см. Полный текст лицензии
@@ -3297,7 +3287,7 @@ MIT Лицензия представляет собой разрешитель ## 🤝 нормы поведения -Чтобы обеспечить дружеское、Уважительная и инклюзивная среда развития,Мы разработали следующиенормы поведения。Каждому участнику предлагается следовать этим правилам.。 +为了确保一个友好、尊重和包容的开发环境,Мы разработали следующиенормы поведения。Каждому участнику предлагается следовать этим правилам.。
@@ -3310,7 +3300,7 @@ MIT Лицензия представляет собой разрешитель Если вы нашли уязвимость,пожалуйста, откройте один[проект рекомендаций по безопасности](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Запросы на вытягивание также приветствуются,но из соображений безопасности,Пожалуйста, отправьте электронное письмо на и дождитесь ответа, прежде чем опубликовать его。 -Подробную информацию см. политика безопасности +Подробную информацию см. политика безопасности
@@ -3320,7 +3310,7 @@ MIT Лицензия представляет собой разрешитель ## 💖 Руководство по вкладу -Спасибо за интерес к этому проекту!Мы разработали следующиеРуководство по вкладу。Чтобы помочь вам беспрепятственно вносить код или документацию,Прежде чем отправлять код или вопросы, пожалуйста,,Внимательно читайте содержимое。 +感谢您对本项目的兴趣!我们制定了以下Руководство по вкладу。Чтобы помочь вам беспрепятственно вносить код или документацию,Прежде чем отправлять код или вопросы, пожалуйста,,Внимательно читайте содержимое。
@@ -3334,9 +3324,9 @@ MIT Лицензия представляет собой разрешитель | :---------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------: | ----------------------------------------------------------------------------- | |
Chrome или на основе Chromium Ядро браузера[![][chrome]][chrome_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][chrome]][chrome_link] [![][edge]][edge_link] [![][QQ]][QQ_link] | |
Safari Браузер(macOS, iOS, iPadOS)[![][safari]][safari_link] |
![][Macaquer] [Macaque][Macaque] или ![][stayr] [Stay] |
[![][safari]][safari_link] | -|
Firefox или на основе Gecko Ядро браузера[![][firefox]][firefox_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][firefox]][firefox_link] | +|
Firefox или на основе Gecko 内核的浏览器[![][firefox]][firefox_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][firefox]][firefox_link] | |
Opera Браузер[![][opera]][opera_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][opera]][opera_link] | -|
Via Браузер(Android)[![][via]][via_link] |
Встроенный браузер |
[![][via]][via_link] | +|
Via Браузер(Android)[![][via]][via_link] |
浏览器内自带 |
[![][via]][via_link] | |
X Браузер(Android) [![][x]][x_link] |
Встроенный браузер |
[![][x]][x_link] | |
KIWI Браузер(Android)[![][kiwi]][kiwi_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][kiwi]][kiwi_link] | |
Лемур Браузер(Android)[![][le]][le_link] |
![.png][TM][Tampermonkey][Tampermonkey] ![.png][vm][Violentmonkey][Violentmonkey] ![.png][cat][ScriptCat][cat_link] |
[![][le]][le_link] | @@ -3366,8 +3356,8 @@ MIT Лицензия представляет собой разрешитель [x_link]: https://www.xbext.com/ "XБраузер" [vm]: https://img.xwyue.com/i/2024/08/02/66ac94776b711.png "жестокая обезьяна" [cat]: https://img.xwyue.com/i/2024/08/02/66ac94776a4e6.png -[cat_link]: https://docs.scriptcat.org/ "сценарий кот" -[TM]: https://img.xwyue.com/i/2024/08/02/66ac94776a4f8.png "обезьяна-тампер" +[cat_link]: https://docs.scriptcat.org/ "脚本猫" +[TM]: https://img.xwyue.com/i/2024/08/02/66ac94776a4f8.png "篡改猴" [le]: https://img.xwyue.com/i/2024/08/02/66ac9deb3647d.png [le_link]: https://lemurbrowser.com/ "Лемур Браузер" [kiwi]: https://img.xwyue.com/i/2024/08/02/66ac9deb33bc1.jpg diff --git a/docs/vi/README.md b/docs/vi/README.md index 8235ce4bc..52eb14a1b 100644 --- a/docs/vi/README.md +++ b/docs/vi/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
Kịch bản đến từ đông đảo cư dân mạng trên Internet,Tôi vừa thực hiện một số thay đổi.Cảm ơn cư dân mạng
Nếu có sự vi phạm,Liên hệ phải được xóa
- + Khuyến khích:
Support
Support
@@ -57,37 +57,26 @@ 💡 Tip: Danh sách trình quản lý tập lệnh và trình duyệt ở trên không đầy đủ
Tập lệnh chạy tốt trong môi trường sau
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> Kho lưu trữ này chỉ có sẵn trongGitHubđược lưu trữ trên,Không phải ở đâyGitCodeXPlazađược lưu trữ trên。Các kho lưu trữ sau đây đều là gương。
-> :trollface: Nếu bạn đang sử dụng nó ở Trung Quốc đại lụcgit cloneTốc độ tải xuống quá chậm,Bạn cũng có thể sử dụng địa chỉ sau -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (Tài khoản nhân bản,không có danh tính) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC -[🌐 Trình quản lý trình duyệt và tập lệnh](#-Trình quản lý trình duyệt và tập lệnh) | -[❔️ Cách cài đặt hoặc sử dụng tập lệnh](#%EF%B8%8F-Cách cài đặt hoặc sử dụng tập lệnh) | -[🙏 Đặc biệt cảm ơn nguồn mở](#-Đặc biệt cảm ơn nguồn mở) | -[🛡️ chính sách bảo mật](#%EF%B8%8F-chính sách bảo mật) | -[🤝 quy tắc ứng xử](#-quy tắc ứng xử) | -[🏛️ Thỏa thuận cấp phép nguồn mở](#%EF%B8%8F-Thỏa thuận cấp phép nguồn mở) | -[🧠 Người đóng góp](#-Người đóng góp) | -[💖 Hướng dẫn đóng góp](#-Hướng dẫn đóng góp) | -[⭐ lịch sử ngôi sao](#-lịch sử ngôi sao) | -[📜 danh sách kịch bản](#-danh sách kịch bản) +[🌐 Trình quản lý trình duyệt và tập lệnh](#-Trình-quản-lý-trình-duyệt-và-tập-lệnh) | +[❔️ Cách cài đặt hoặc sử dụng tập lệnh](#%EF%B8%8F-Cách-cài-đặt-hoặc-sử-dụng-tập-lệnh) | +[🙏 Đặc biệt cảm ơn nguồn mở](#-Đặc-biệt-cảm-ơn-nguồn-mở) | +[🛡️ chính sách bảo mật](#%EF%B8%8F-chính-sách-bảo-mật) | +[🤝 quy tắc ứng xử](#-quy-tắc-ứng-xử) | +[🏛️ Thỏa thuận cấp phép nguồn mở](#%EF%B8%8F-Thỏa-thuận-cấp-phép-nguồn-mở) | +[🧠 Người đóng góp](#-Người-đóng-góp) | +[💖 Hướng dẫn đóng góp](#-Hướng-dẫn-đóng-góp) | +[⭐ lịch sử ngôi sao](#-lịch-sử-ngôi-sao) | +[📜 danh sách kịch bản](#-danh-sách-kịch-bản) ## 📜 danh sách kịch bản @@ -96,14 +85,14 @@ **Số lượng tập lệnh được xuất bản hiện tại trong kho:85,Kịch bản bao gồm:** -
kịch bản web (10) +
kịch bản web (10) | GreasyFork (12) - | kịch bản người lớn (11) - | Google Kịch bản (2) - | GitHub Kịch bản (20) - | Dịch tập lệnh (3) - | AI Kịch bản (9) - | trang blog (5) + | kịch bản người lớn (11) + | Google Kịch bản (2) + | GitHub Kịch bản (20) + | Dịch tập lệnh (3) + | AI Kịch bản (9) + | trang blog (5) | Twitter (5) | YouTube (5) | TikTok (1) @@ -113,9 +102,9 @@

kịch bản web (10)

- + - nút cuộn  + nút cuộn  @@ -136,22 +125,22 @@ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Trình quản lý ủy quyền phiên bản clip viết trang web  + Trình quản lý ủy quyền phiên bản clip viết trang web  @@ -172,14 +161,14 @@ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -187,9 +176,9 @@ Nhật ký thay đổi

- + - Xóa gạch chân liên kết  + Xóa gạch chân liên kết  @@ -204,22 +193,22 @@ Xóa gạch chân liên kết trên tất cả các trang web,và xử lý cá Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Làm nổi bật các từ khóa web  + Làm nổi bật các từ khóa web  @@ -234,22 +223,22 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Đánh dấu các từ khóa trên web  + Đánh dấu các từ khóa trên web  @@ -270,22 +259,22 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Ghim vào nút trên và dưới  + Ghim vào nút trên và dưới  @@ -306,14 +295,14 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -321,9 +310,9 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Nhật ký thay đổi

- + - Xem trước cửa sổ nhỏ  + Xem trước cửa sổ nhỏ  @@ -344,14 +333,14 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -359,9 +348,9 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Nhật ký thay đổi

- + - Làm đẹp các biểu mẫu web với độ dốc tuyệt đẹp  + Làm đẹp các biểu mẫu web với độ dốc tuyệt đẹp  @@ -382,14 +371,14 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -397,9 +386,9 @@ Từ khóa tùy chỉnh làm nổi bật trên các trang web bao gồm tải đ Nhật ký thay đổi

- + - Văn bản để liên kết  + Văn bản để liên kết  @@ -414,14 +403,14 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -429,9 +418,9 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Đã sửa đổi từ

- + - Markdown Cloud Cut Ghi chú  + Markdown Cloud Cut Ghi chú  @@ -452,14 +441,14 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -468,12 +457,12 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Đã sửa đổi từ - - + +

GreasyFork (12)

- + - Trang kịch kịch bản FREASY FORK để tăng cường URL  + Trang kịch kịch bản FREASY FORK để tăng cường URL  @@ -494,22 +483,22 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Greasyfork Thợ làm keo  + Greasyfork Thợ làm keo  @@ -530,14 +519,14 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -545,9 +534,9 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Nhật ký thay đổi

- + - Script Finder Tra cứu tập lệnh GreasyFork  + Script Finder Tra cứu tập lệnh GreasyFork  @@ -568,14 +557,14 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -583,9 +572,9 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Nhật ký thay đổi

- + - Greasyfork Script hiển thị xếp hạng  + Greasyfork Script hiển thị xếp hạng  @@ -606,22 +595,22 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - GreasyFork: Cải tiến thanh điều hướng  + GreasyFork: Cải tiến thanh điều hướng  @@ -642,22 +631,22 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -693,9 +682,9 @@ Chuyển đổi liên kết văn bản thành các liên kết có thể nhấp Nhật ký thay đổi

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - GreasyFork Trợ lý thông báo  + GreasyFork Trợ lý thông báo  @@ -746,14 +735,14 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -761,9 +750,9 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Nhật ký thay đổi

- + - GreaysFork Nâng caoWebHookĐồng bộ hóa cài đặt  + GreaysFork Nâng caoWebHookĐồng bộ hóa cài đặt  @@ -784,14 +773,14 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -799,9 +788,9 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Nhật ký thay đổi

- + - GreasyFork Trực quan hóa dữ liệu tập lệnh do người dùng xuất bản  + GreasyFork Trực quan hóa dữ liệu tập lệnh do người dùng xuất bản  @@ -822,14 +811,14 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -837,9 +826,9 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Nhật ký thay đổi

- + - Greasyfork Hiển thị thời gian đăng ký  + Greasyfork Hiển thị thời gian đăng ký  @@ -860,14 +849,14 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -877,9 +866,9 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Đã sửa đổi từ

- + - GREASYFORK không được cập nhật tập lệnh được tô sáng  + GREASYFORK không được cập nhật tập lệnh được tô sáng  @@ -900,14 +889,14 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -916,12 +905,12 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Đã sửa đổi từ - - + +

kịch bản người lớn (11)

- + - Video bộ sưu tập sao lưu missav  + Video bộ sưu tập sao lưu missav  @@ -942,14 +931,14 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -957,9 +946,9 @@ Tìm kiếm bằng GoogleGreasyForkVàSleazyForkchữ viết trên Nhật ký thay đổi

- + - MissAV Đăng nhập tự động  + MissAV Đăng nhập tự động  @@ -974,14 +963,14 @@ Phát hiện MissAV tình trạng,và tự động đăng nhập khi chưa đăn Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -989,9 +978,9 @@ Phát hiện MissAV tình trạng,và tự động đăng nhập khi chưa đăn Nhật ký thay đổi

- + - ThisAV Đăng nhập tự động  + ThisAV Đăng nhập tự động  @@ -1006,14 +995,14 @@ Phát hiện ThisAV tình trạng,và tự động đăng nhập khi chưa đăn Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1021,9 +1010,9 @@ Phát hiện ThisAV tình trạng,và tự động đăng nhập khi chưa đăn Nhật ký thay đổi

- + - JableTV Đăng nhập tự động  + JableTV Đăng nhập tự động  @@ -1038,14 +1027,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1053,9 +1042,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - Công cụ tải xuống video missav  + Công cụ tải xuống video missav  @@ -1076,14 +1065,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1091,9 +1080,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - XVIDEOS Đẩy tải xuống  + XVIDEOS Đẩy tải xuống  @@ -1114,14 +1103,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1129,9 +1118,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - Tải xuống video pornhub chỉ bằng một cú nhấp chuột  + Tải xuống video pornhub chỉ bằng một cú nhấp chuột  @@ -1152,14 +1141,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1167,9 +1156,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - Xamster Video một cú nhấp chuột Trợ lý tải xuống  + Xamster Video một cú nhấp chuột Trợ lý tải xuống  @@ -1190,14 +1179,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1205,9 +1194,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - Trợ lý tải xuống video xnxxvideos  + Trợ lý tải xuống video xnxxvideos  @@ -1228,14 +1217,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1243,9 +1232,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - Trợ lý nâng cao Missav  + Trợ lý nâng cao Missav  @@ -1266,14 +1255,14 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1281,9 +1270,9 @@ Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đă Nhật ký thay đổi

- + - Vừa mới 18 tuổi  + Vừa mới 18 tuổi  @@ -1298,14 +1287,14 @@ Vì tôi mới tròn 18 tuổi, tôi có thể xem nội dung người lớn Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1314,12 +1303,12 @@ Vì tôi mới tròn 18 tuổi, tôi có thể xem nội dung người lớn Đã sửa đổi từ - - + +

Google Kịch bản (2)

- + - Chặn các trang web tìm kiếm google  + Chặn các trang web tìm kiếm google  @@ -1334,22 +1323,22 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Google Trợ lý tìm kiếm nâng cao  + Google Trợ lý tìm kiếm nâng cao  @@ -1370,26 +1359,26 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / Nhật ký thay đổi - - + +

GitHub Kịch bản (20)

- + - 🤠 Kích thước hiển thị kho trợ lý nâng cao của Github  + 🤠 Kích thước hiển thị kho trợ lý nâng cao của Github  @@ -1410,14 +1399,14 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1427,9 +1416,9 @@ Tìm kiếm một Google chặn một trang web được chỉ định Đã sửa đổi từ

- + - GitHub Sắp xếp theo ngày  + GitHub Sắp xếp theo ngày  @@ -1450,22 +1439,22 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - GitHub trình tải xuống thư mục  + GitHub trình tải xuống thư mục  @@ -1486,14 +1475,14 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1501,9 +1490,9 @@ Tìm kiếm một Google chặn một trang web được chỉ định Nhật ký thay đổi

- + - Github Sao chép tập tin gốc URL với các tập tin tải về  + Github Sao chép tập tin gốc URL với các tập tin tải về  @@ -1524,14 +1513,14 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1539,9 +1528,9 @@ Tìm kiếm một Google chặn một trang web được chỉ định Nhật ký thay đổi

- + - GitHub Gửi thông tin hiển thị xem web  + GitHub Gửi thông tin hiển thị xem web  @@ -1562,22 +1551,22 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - GitHub Trình làm đẹp danh sách tập tin  + GitHub Trình làm đẹp danh sách tập tin  @@ -1598,14 +1587,14 @@ Tìm kiếm một Google chặn một trang web được chỉ định Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1613,9 +1602,9 @@ Tìm kiếm một Google chặn một trang web được chỉ định Nhật ký thay đổi

- + - GitHub Tự động xác nhận ủy quyền thiết bị  + GitHub Tự động xác nhận ủy quyền thiết bị  @@ -1630,14 +1619,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1645,9 +1634,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Nhật ký thay đổi

- + - Github Danh sách ngôn ngữ mã hiển thị tất cả  + Github Danh sách ngôn ngữ mã hiển thị tất cả  @@ -1668,14 +1657,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1683,9 +1672,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Nhật ký thay đổi

- + - Trợ lý nhảy nhanh kho GitHub  + Trợ lý nhảy nhanh kho GitHub  @@ -1706,14 +1695,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1721,9 +1710,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Nhật ký thay đổi

- + - Mở liên kết JSDELIVR trên GitHub  + Mở liên kết JSDELIVR trên GitHub  @@ -1744,14 +1733,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1759,9 +1748,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Nhật ký thay đổi

- + - Github Gist Code Snippet Sao chép và tải xuống  + Github Gist Code Snippet Sao chép và tải xuống  @@ -1782,14 +1771,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1799,9 +1788,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - Trợ lý bản dịch phím tắt GitHub  + Trợ lý bản dịch phím tắt GitHub  @@ -1822,14 +1811,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1837,9 +1826,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Nhật ký thay đổi

- + - Github Star Warehouse Ghi chú Trợ lý  + Github Star Warehouse Ghi chú Trợ lý  @@ -1860,14 +1849,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1877,9 +1866,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - GitHub nhảy đến Deepwiki  + GitHub nhảy đến Deepwiki  @@ -1900,14 +1889,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1917,9 +1906,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - GitHub ẩn Copilot  + GitHub ẩn Copilot  @@ -1940,14 +1929,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1957,9 +1946,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - Công cụ tìm địa chỉ email GitHub  + Công cụ tìm địa chỉ email GitHub  @@ -1980,14 +1969,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -1995,9 +1984,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - Github hiển thị kích thước tệp và thư mục  + Github hiển thị kích thước tệp và thư mục  @@ -2019,14 +2008,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2036,9 +2025,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - Đồng tác giả GitHub  + Đồng tác giả GitHub  @@ -2060,14 +2049,14 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2075,9 +2064,9 @@ hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và t Đã sửa đổi từ

- + - Trạng thái bộ lọc thông báo GitHub  + Trạng thái bộ lọc thông báo GitHub  @@ -2092,14 +2081,14 @@ Phiên bản phát triển github-notification-inbox-toggle Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2107,9 +2096,9 @@ Phiên bản phát triển github-notification-inbox-toggle Đã sửa đổi từ

- + - Nút lệnh sao chép GitHub (ngã ba)  + Nút lệnh sao chép GitHub (ngã ba)  @@ -2130,14 +2119,14 @@ Phiên bản phát triển github-notification-inbox-toggle Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2146,12 +2135,12 @@ Phiên bản phát triển github-notification-inbox-toggle Đã sửa đổi từ - - + +

Dịch tập lệnh (3)

- + - Terminator ngoại ngữ  + Terminator ngoại ngữ  @@ -2166,14 +2155,14 @@ Xác định các ký tự không phải người Trung Quốc. Nếu độ dài Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2181,9 +2170,9 @@ Xác định các ký tự không phải người Trung Quốc. Nếu độ dài Nhật ký thay đổi

- + - Bản dịch trang web - Bản dịch tự động sang tiếng Trung  + Bản dịch trang web - Bản dịch tự động sang tiếng Trung  @@ -2198,22 +2187,22 @@ Thêm biểu tượng Google Dịch vào góc dưới bên phải của mỗi tr Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Tiện ích dịch |  + Tiện ích dịch |  @@ -2234,14 +2223,14 @@ Thêm biểu tượng Google Dịch vào góc dưới bên phải của mỗi tr Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2250,12 +2239,12 @@ Thêm biểu tượng Google Dịch vào góc dưới bên phải của mỗi tr Đã sửa đổi từ - - + +

AI Kịch bản (9)

- + - ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa  + ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa  @@ -2276,14 +2265,14 @@ Thêm biểu tượng Google Dịch vào góc dưới bên phải của mỗi tr Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2291,9 +2280,9 @@ Thêm biểu tượng Google Dịch vào góc dưới bên phải của mỗi tr Nhật ký thay đổi

- + - ChatGPTKích thước phông chữ mã giảm  + ChatGPTKích thước phông chữ mã giảm  @@ -2308,22 +2297,22 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - ChatGPT Giới hạn bộ đếm ký tự (CCCL)  + ChatGPT Giới hạn bộ đếm ký tự (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2359,9 +2348,9 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Nhật ký thay đổi

- + - ChatGPT Nút trò chuyện sao chép mã và xuất mã  + ChatGPT Nút trò chuyện sao chép mã và xuất mã  @@ -2382,14 +2371,14 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2397,9 +2386,9 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Nhật ký thay đổi

- + - Mã chatgpt được tô sáng  + Mã chatgpt được tô sáng  @@ -2420,14 +2409,14 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2435,9 +2424,9 @@ ChatGPT Làm cho phông chữ mã nhỏ hơn và tự động bọc Nhật ký thay đổi

- + - Công cụ mã Chatgpt  + Công cụ mã Chatgpt  @@ -2452,14 +2441,14 @@ Thêm chức năng vào các khối mã Chatgpt, bao gồm tùy chọn để lư Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2467,9 +2456,9 @@ Thêm chức năng vào các khối mã Chatgpt, bao gồm tùy chọn để lư Đã sửa đổi từ

- + - Chật chèn chèn từ nhắc nhở  + Chật chèn chèn từ nhắc nhở  @@ -2484,14 +2473,14 @@ Chèn lệnh vào hộp đầu vào chatgpt thông qua kết hợp khóa Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2499,9 +2488,9 @@ Chèn lệnh vào hộp đầu vào chatgpt thông qua kết hợp khóa Đã sửa đổi từ

- + - Chatgpt Lưu trò chuyện  + Chatgpt Lưu trò chuyện  @@ -2516,14 +2505,14 @@ Lưu cuộc trò chuyện dưới dạng tệp .txt Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2533,9 +2522,9 @@ Lưu cuộc trò chuyện dưới dạng tệp .txt Đã sửa đổi từ

- + - Chatgpt dễ dàng quản lý các cuộc trò chuyện  + Chatgpt dễ dàng quản lý các cuộc trò chuyện  @@ -2550,26 +2539,26 @@ Chat tìm kiếm, trò chuyện lọc, trò chuyện xóa nhanh/hàng loạt. Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / Đã sửa đổi từ - - + +

trang blog (5)

- + - Đăng nhập CSDN không giới hạn  + Đăng nhập CSDN không giới hạn  @@ -2584,14 +2573,14 @@ Truy cập đăng nhập và sao chép CSDN chết tiệt của bạn, bạn có Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2599,9 +2588,9 @@ Truy cập đăng nhập và sao chép CSDN chết tiệt của bạn, bạn có Nhật ký thay đổi

- + - Làm sạch bài viết trên blog  + Làm sạch bài viết trên blog  @@ -2616,14 +2605,14 @@ Hủy bỏ thanh bên khó chịu, khối bình luận, quảng cáo, và nhiề Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2631,9 +2620,9 @@ Hủy bỏ thanh bên khó chịu, khối bình luận, quảng cáo, và nhiề Đã sửa đổi từ

- + - Chủ đề tối của Zhihu  + Chủ đề tối của Zhihu  @@ -2648,14 +2637,14 @@ Phong cách chủ đề đen tối của Zhihu Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2663,9 +2652,9 @@ Phong cách chủ đề đen tối của Zhihu Đã sửa đổi từ

- + - Phiên bản web WeChat chế độ tối  + Phiên bản web WeChat chế độ tối  @@ -2680,14 +2669,14 @@ Bật cửa sổ toàn màn hình web WeChat,chế độ tối Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2695,9 +2684,9 @@ Bật cửa sổ toàn màn hình web WeChat,chế độ tối Đã sửa đổi từ

- + - Phiên bản di động Sina Weibo nhảy  + Phiên bản di động Sina Weibo nhảy  @@ -2712,26 +2701,26 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / Đã sửa đổi từ - - + +

Twitter (5)

- + - Twitter/x ẩn các bài viết chuyển tiếp  + Twitter/x ẩn các bài viết chuyển tiếp  @@ -2752,14 +2741,14 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2769,9 +2758,9 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Đã sửa đổi từ

- + - Tải xuống phương tiện truyền thông Twitter (2025.04,28 đã sửa)  + Tải xuống phương tiện truyền thông Twitter (2025.04,28 đã sửa)  @@ -2792,14 +2781,14 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2809,9 +2798,9 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Đã sửa đổi từ

- + - Tải xuống danh sách đen và danh sách đen và danh sách bị chặn  + Tải xuống danh sách đen và danh sách đen và danh sách bị chặn  @@ -2826,14 +2815,14 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2841,9 +2830,9 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Đã sửa đổi từ

- + - Twitter hiển thị ngày và giờ bình thường  + Twitter hiển thị ngày và giờ bình thường  @@ -2865,22 +2854,22 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2917,12 +2906,12 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Đã sửa đổi từ - - + +

YouTube (5)

- + - Trợ lý YouTube  + Trợ lý YouTube  @@ -2943,14 +2932,14 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2960,9 +2949,9 @@ Sina Weibo tự động chuyển sang phiên bản di động,Hỗ trợ weibo Đã sửa đổi từ

- + - Các phím tắt theo dõi YouTube sau  + Các phím tắt theo dõi YouTube sau  @@ -2977,14 +2966,14 @@ Sử dụng các phím tắt để thêm hoặc xóa video YouTube hiện tại Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -2992,9 +2981,9 @@ Sử dụng các phím tắt để thêm hoặc xóa video YouTube hiện tại Đã sửa đổi từ

- + - Điều khiển âm lượng YouTube tốt hơn  + Điều khiển âm lượng YouTube tốt hơn  @@ -3009,14 +2998,14 @@ Thêm thanh trượt vào trình phát video YouTube để làm cho thay đổi Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -3024,9 +3013,9 @@ Thêm thanh trượt vào trình phát video YouTube để làm cho thay đổi Đã sửa đổi từ

- + - YouTube Dynamic Video Grid  + YouTube Dynamic Video Grid  @@ -3041,14 +3030,14 @@ Thêm thanh trượt vào trình phát video YouTube để làm cho thay đổi Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -3058,9 +3047,9 @@ Thêm thanh trượt vào trình phát video YouTube để làm cho thay đổi Đã sửa đổi từ

- + - YouTube Pro: Trình cải tiến âm thanh  + YouTube Pro: Trình cải tiến âm thanh  @@ -3081,26 +3070,26 @@ Thêm thanh trượt vào trình phát video YouTube để làm cho thay đổi Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / Đã sửa đổi từ - - + +

TikTok (1)

- + - Thông tin người dùng Tiktok  + Thông tin người dùng Tiktok  @@ -3115,26 +3104,26 @@ Tiktok hiển thị nhiều thông tin mở rộng hơn về hồ sơ Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / Đã sửa đổi từ - - + +

Bilibili (2)

- + - Trình tải xuống video Bilibili  + Trình tải xuống video Bilibili  @@ -3149,14 +3138,14 @@ Tải xuống video Bilibili(Không hỗ trợ phim truyền hình) Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / @@ -3164,9 +3153,9 @@ Tải xuống video Bilibili(Không hỗ trợ phim truyền hình) Đã sửa đổi từ

- + - Công cụ chặn phòng trực tiếp Bilibili  + Công cụ chặn phòng trực tiếp Bilibili  @@ -3181,22 +3170,22 @@ Công cụ chặn phòng trực tiếp Bilibili,Danh sách quản lý hỗ tr Greasemonkey / - + - + tập tin readme / bàn luận / - + Mã nguồn / Cài đặt / Đã sửa đổi từ - - + + @@ -3250,7 +3239,7 @@ Công cụ chặn phòng trực tiếp Bilibili,Danh sách quản lý hỗ tr > [!TIP] > > - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui Lưu Triển Bằng :+1: -> - _Dịch tự động kho lưu trữ này và Action Cảm ơn đặc biệt đến Yankee[Adam Lui Lưu Triển Bằng](https://github.com/adamlui)Ý tưởng và mã tuyệt vời!_ :trollface: +> - _Dịch tự động kho lưu trữ này và Action Đặc biệt cảm ơn Yankee[Adam Lui Lưu Triển Bằng](https://github.com/adamlui)Ý tưởng và mã tuyệt vời!_ :trollface: > - _Phong cách đặt tên của nhà kho này được lấy cảm hứng từ đội Yankees[Adam Lui Lưu Triển Bằng](https://github.com/adamlui)Truyền cảm hứng_ :trollface: > - _Tệp readme trong kho lưu trữ này đến từ[Adam Lui Lưu Triển Bằng](https://github.com/adamlui)phong cách tự báo cáo_ :trollface: > - _Bước nhảy chuyển hướng lẫn nhau trong tập lệnh xuất phát từ[Adam Lui Lưu Triển Bằng](https://github.com/adamlui)phong cách tự báo cáo_ :trollface: @@ -3271,6 +3260,7 @@ Công cụ chặn phòng trực tiếp Bilibili,Danh sách quản lý hỗ tr 人民的勤务员 robot của con người +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ Danh sách đóng góp theo: [contributors](https://github.com/jaywcjlove/gith ## 🏛️ Thỏa thuận cấp phép nguồn mở -Dự án này sử dụng MIT giấy phép Ủy quyền。 -MIT Giấy phép là một thỏa thuận cấp phép nguồn mở dễ dàng,Để biết chi tiết, vui lòng tham khảo Toàn văn giấy phép。 +Dự án này sử dụng MIT giấy phép Ủy quyền。 +MIT Giấy phép là một thỏa thuận cấp phép nguồn mở dễ dàng,Để biết chi tiết, vui lòng tham khảo Toàn văn giấy phép
@@ -3297,7 +3287,7 @@ MIT Giấy phép là một thỏa thuận cấp phép nguồn mở dễ dàng, ## 🤝 quy tắc ứng xử -Để đảm bảo sự thân thiện、Một môi trường phát triển tôn trọng và hòa nhập,Chúng tôi đã phát triển như sauquy tắc ứng xử。Mỗi cộng tác viên được yêu cầu tuân theo các nguyên tắc này。 +Để đảm bảo sự thân thiện、Một môi trường phát triển tôn trọng và hòa nhập,Chúng tôi đã phát triển những điều sau đâyquy tắc ứng xử。Mỗi cộng tác viên được yêu cầu tuân theo các nguyên tắc này。
@@ -3310,7 +3300,7 @@ MIT Giấy phép là một thỏa thuận cấp phép nguồn mở dễ dàng, Nếu bạn tìm thấy một lỗ hổng,hãy mở một cái[dự thảo khuyến nghị bảo mật](https://github.com/ChinaGodMan/UserScripts/security/advisories/new)。 Yêu cầu kéo cũng được chào đón,nhưng vì lý do bảo mật,Vui lòng gửi email đến và chờ phản hồi trước khi công khai。 -Để biết chi tiết, vui lòng tham khảo chính sách bảo mật +Để biết chi tiết, vui lòng tham khảo chính sách bảo mật
@@ -3320,7 +3310,7 @@ Yêu cầu kéo cũng được chào đón,nhưng vì lý do bảo mật,Vui ## 💖 Hướng dẫn đóng góp -Cảm ơn bạn đã quan tâm đến dự án này!Chúng tôi đã phát triển như sauHướng dẫn đóng góp。Để giúp bạn đóng góp mã hoặc tài liệu một cách suôn sẻ,Trước khi gửi mã hoặc câu hỏi, vui lòng,Đọc kỹ nội dung。 +Cảm ơn bạn đã quan tâm đến dự án này!Chúng tôi đã phát triển những điều sau đâyHướng dẫn đóng góp。Để giúp bạn đóng góp mã hoặc tài liệu một cách suôn sẻ,Trước khi gửi mã hoặc câu hỏi, vui lòng,Đọc kỹ nội dung。
diff --git a/docs/zh-TW/README.md b/docs/zh-TW/README.md index 71be420c4..e14862834 100644 --- a/docs/zh-TW/README.md +++ b/docs/zh-TW/README.md @@ -8,18 +8,18 @@ - China简体中文 | - China繁體中文 | - English | - 日本語 | - Tiếng Việt | - Italiano | - Русский | - Deutsch | - Español | - Portuguese | - Français | - 대한민국 + China简体中文 | + China繁體中文 | + English | + 日本語 | + Tiếng Việt | + Italiano | + Русский | + Deutsch | + Español | + Portuguese | + Français | + 대한민국

- +
劇本來自網路廣大網友,本人僅是做了些許改動.感謝網友
- 如有侵權,联系必删
- - 推荐使用:
+ 如有侵權,聯繫必刪
+ + 推薦使用:
Support
Support
Support
💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運作正常
Passed
- +
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ChinaGodMan/UserScripts) -> [!WARNING] ->
-> 本存儲庫僅在GitHub上託管,未在GitCodeXPlaza上託管。以下存儲庫均為鏡像。
-> :trollface: 如果你在中國大陸地區使用git clone下載速度太慢,你也可以是使用以下地址進行 -> -> -> [https://www.xplaza.cn/ChinaGodMan](https://www.xplaza.cn/ChinaGodMan) (镜像账号,非本人) -> [https://www.xplaza.cn/ChinaGodMan/userscripts](https://www.xplaza.cn/ChinaGodMan/userscripts) -> [https://gitcode.com/gh_mirrors/userscripts1/UserScripts/](https://gitcode.com/gh_mirrors/userscripts1/UserScripts) -> -> ->
+ ## 🔖 TOC @@ -99,10 +88,10 @@
網頁腳本 (10) | GreasyFork (12) | 成人腳本 (11) - | Google 腳本 (2) - | GitHub 腳本 (20) + | Google 腳本 (2) + | GitHub 腳本 (20) | 翻譯腳本 (3) - | AI 腳本 (9) + | AI 腳本 (9) | 部落格網站 (5) | Twitter (5) | YouTube (5) @@ -113,9 +102,9 @@

網頁腳本 (10)

- + - 上下滾動按鈕  + 上下滾動按鈕  @@ -136,22 +125,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - 網頁寫入剪輯版授權管理員  + 網頁寫入剪輯版授權管理員  @@ -172,14 +161,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -187,9 +176,9 @@ 更新日誌

- + - 移除連結下劃線  + 移除連結下劃線  @@ -204,22 +193,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - 網頁關鍵詞高亮顯示  + 網頁關鍵詞高亮顯示  @@ -234,22 +223,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - 網頁高亮關鍵字  + 網頁高亮關鍵字  @@ -270,22 +259,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - 置頂和置底按鈕  + 置頂和置底按鈕  @@ -306,14 +295,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -321,9 +310,9 @@ 更新日誌

- + - 小窗預覽  + 小窗預覽  @@ -344,14 +333,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -359,9 +348,9 @@ 更新日誌

- + - 絢麗漸層美化網頁表格  + 絢麗漸層美化網頁表格  @@ -382,14 +371,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -397,9 +386,9 @@ 更新日誌

- + - 文本轉鏈接  + 文本轉鏈接  @@ -414,14 +403,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -429,9 +418,9 @@ 修改自

- + - MarkDown 雲剪筆記  + MarkDown 雲剪筆記  @@ -452,14 +441,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -469,11 +458,11 @@ 修改自 - +

GreasyFork (12)

- + - Greasy fork腳本頁面適用於網址增強  + Greasy fork腳本頁面適用於網址增強  @@ -494,22 +483,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - Greasyfork 膠水工匠  + Greasyfork 膠水工匠  @@ -530,14 +519,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -545,9 +534,9 @@ 更新日誌

- + - Script Finder 油猴腳本查找  + Script Finder 油猴腳本查找  @@ -568,14 +557,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -583,9 +572,9 @@ 更新日誌

- + - Greasyfork 腳本顯示評分  + Greasyfork 腳本顯示評分  @@ -606,22 +595,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - GreasyFork: 導覽列增強  + GreasyFork: 導覽列增強  @@ -642,22 +631,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - GreasyFork markdown  + GreasyFork markdown  @@ -678,14 +667,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -693,9 +682,9 @@ 更新日誌

- + - GreasyFork Search  + GreasyFork Search  @@ -710,22 +699,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - GreasyFork 通知助手  + GreasyFork 通知助手  @@ -746,14 +735,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -761,9 +750,9 @@ 更新日誌

- + - GreaysFork 增強WebHook同步設定  + GreaysFork 增強WebHook同步設定  @@ -784,14 +773,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -799,9 +788,9 @@ 更新日誌

- + - GreasyFork 用戶發布的腳本資料視覺化  + GreasyFork 用戶發布的腳本資料視覺化  @@ -822,14 +811,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -837,9 +826,9 @@ 更新日誌

- + - 顯示Greasyfork用戶註冊時間,識別惡意評論  + 顯示Greasyfork用戶註冊時間,識別惡意評論  @@ -860,14 +849,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -877,9 +866,9 @@ 修改自

- + - Greasyfork 未更新腳本高亮  + Greasyfork 未更新腳本高亮  @@ -900,14 +889,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -917,11 +906,11 @@ 修改自 - +

成人腳本 (11)

- + - MissAv批量備份收藏視頻  + MissAv批量備份收藏視頻  @@ -942,14 +931,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -957,9 +946,9 @@ 更新日誌

- + - MissAV 自動登入  + MissAV 自動登入  @@ -974,14 +963,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -989,9 +978,9 @@ 更新日誌

- + - ThisAV 自動登入  + ThisAV 自動登入  @@ -1006,14 +995,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1021,9 +1010,9 @@ 更新日誌

- + - JableTV 自動登入  + JableTV 自動登入  @@ -1038,14 +1027,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1053,9 +1042,9 @@ 更新日誌

- + - MissAV視頻下載工具  + MissAV視頻下載工具  @@ -1076,14 +1065,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1091,9 +1080,9 @@ 更新日誌

- + - xvideos推送下載  + xvideos推送下載  @@ -1114,14 +1103,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1129,9 +1118,9 @@ 更新日誌

- + - Pornhub 視頻一鍵下載  + Pornhub 視頻一鍵下載  @@ -1152,14 +1141,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1167,9 +1156,9 @@ 更新日誌

- + - xhamster 視頻一鍵下載助手  + xhamster 視頻一鍵下載助手  @@ -1190,14 +1179,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1205,9 +1194,9 @@ 更新日誌

- + - XnxxVideos 視頻一鍵下載助手  + XnxxVideos 視頻一鍵下載助手  @@ -1228,14 +1217,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1243,9 +1232,9 @@ 更新日誌

- + - MissAV 增強小助手  + MissAV 增強小助手  @@ -1266,14 +1255,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1281,9 +1270,9 @@ 更新日誌

- + - 剛滿 18 歲  + 剛滿 18 歲  @@ -1298,14 +1287,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1315,11 +1304,11 @@ 修改自 - +

Google 腳本 (2)

- + - 屏蔽谷歌搜索站點  + 屏蔽谷歌搜索站點  @@ -1334,22 +1323,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - Google 高級搜尋助手  + Google 高級搜尋助手  @@ -1370,14 +1359,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1385,11 +1374,11 @@ 更新日誌 - +

GitHub 腳本 (20)

- + - 🤠 Github 增強小助手 倉庫顯示大小  + 🤠 Github 增強小助手 倉庫顯示大小  @@ -1410,14 +1399,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1427,9 +1416,9 @@ 修改自

- + - GitHub 按日期排序  + GitHub 按日期排序  @@ -1450,22 +1439,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - GitHub 資料夾下載器  + GitHub 資料夾下載器  @@ -1486,14 +1475,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1501,9 +1490,9 @@ 更新日誌

- + - Github 複製原始文件 URL 與下載文件  + Github 複製原始文件 URL 與下載文件  @@ -1524,14 +1513,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1539,9 +1528,9 @@ 更新日誌

- + - GitHub 提交資料顯示網頁視圖  + GitHub 提交資料顯示網頁視圖  @@ -1562,22 +1551,22 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - GitHub 文件列表美化器  + GitHub 文件列表美化器  @@ -1598,14 +1587,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1613,9 +1602,9 @@ 更新日誌

- + - GitHub 自動確認設備授權  + GitHub 自動確認設備授權  @@ -1630,14 +1619,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1645,9 +1634,9 @@ 更新日誌

- + - Github 代碼語言列表顯示全部  + Github 代碼語言列表顯示全部  @@ -1668,14 +1657,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1683,9 +1672,9 @@ 更新日誌

- + - GitHub 倉庫快速跳轉助手  + GitHub 倉庫快速跳轉助手  @@ -1706,14 +1695,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1721,9 +1710,9 @@ 更新日誌

- + - 在Github上打開jsDelivr鏈接  + 在Github上打開jsDelivr鏈接  @@ -1744,14 +1733,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1759,9 +1748,9 @@ 更新日誌

- + - GitHub Gist 代碼片段複製與下載器  + GitHub Gist 代碼片段複製與下載器  @@ -1782,14 +1771,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1799,9 +1788,9 @@ 修改自

- + - GitHub 快捷鍵翻譯助手  + GitHub 快捷鍵翻譯助手  @@ -1822,14 +1811,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1837,9 +1826,9 @@ 更新日誌

- + - GitHub 星標倉庫備註助手  + GitHub 星標倉庫備註助手  @@ -1860,14 +1849,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1877,9 +1866,9 @@ 修改自

- + - GitHub 跳轉到 DeepWiKi  + GitHub 跳轉到 DeepWiKi  @@ -1900,14 +1889,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1917,9 +1906,9 @@ 修改自

- + - GitHub 隱藏 Copilot  + GitHub 隱藏 Copilot  @@ -1940,14 +1929,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1957,9 +1946,9 @@ 修改自

- + - GitHub 郵箱地址查找器  + GitHub 郵箱地址查找器  @@ -1980,14 +1969,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -1995,9 +1984,9 @@ 修改自

- + - GitHub 顯示文件和文件夾大小  + GitHub 顯示文件和文件夾大小  @@ -2019,14 +2008,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2036,9 +2025,9 @@ 修改自

- + - GitHub 共同協作者  + GitHub 共同協作者  @@ -2060,14 +2049,14 @@ Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2075,9 +2064,9 @@ 修改自

- + - GitHub 通知篩選狀態  + GitHub 通知篩選狀態  @@ -2092,14 +2081,14 @@ github-notification-inbox-toggle 開發版本 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2107,9 +2096,9 @@ github-notification-inbox-toggle 開發版本 修改自

- + - GitHub 複製複製指令按鈕(fork)  + GitHub 複製複製指令按鈕(fork)  @@ -2130,14 +2119,14 @@ github-notification-inbox-toggle 開發版本 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2147,11 +2136,11 @@ github-notification-inbox-toggle 開發版本 修改自 - +

翻譯腳本 (3)

- + - 外語終結者  + 外語終結者  @@ -2166,14 +2155,14 @@ github-notification-inbox-toggle 開發版本 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2181,9 +2170,9 @@ github-notification-inbox-toggle 開發版本 更新日誌

- + - 網頁翻譯——自動翻譯為中文  + 網頁翻譯——自動翻譯為中文  @@ -2198,22 +2187,22 @@ github-notification-inbox-toggle 開發版本 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - 翻譯小工具 | 翻譯任何語言  + 翻譯小工具 | 翻譯任何語言  @@ -2234,14 +2223,14 @@ github-notification-inbox-toggle 開發版本 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2251,11 +2240,11 @@ github-notification-inbox-toggle 開發版本 修改自 - +

AI 腳本 (9)

- + - ChatGPT 折疊自己訊息和最大寬度  + ChatGPT 折疊自己訊息和最大寬度  @@ -2276,14 +2265,14 @@ github-notification-inbox-toggle 開發版本 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2291,9 +2280,9 @@ github-notification-inbox-toggle 開發版本 更新日誌

- + - ChatGPT程式碼字體縮小  + ChatGPT程式碼字體縮小  @@ -2308,22 +2297,22 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - ChatGPT 字元計數器限制 (CCCL)  + ChatGPT 字元計數器限制 (CCCL)  @@ -2344,14 +2333,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2359,9 +2348,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 更新日誌

- + - ChatGPT 聊天複製程式碼和匯出程式碼按鈕  + ChatGPT 聊天複製程式碼和匯出程式碼按鈕  @@ -2382,14 +2371,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2397,9 +2386,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 更新日誌

- + - ChatGPT 代碼高亮  + ChatGPT 代碼高亮  @@ -2420,14 +2409,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2435,9 +2424,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 更新日誌

- + - ChatGPT代碼工具  + ChatGPT代碼工具  @@ -2452,14 +2441,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2467,9 +2456,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - ChatGPT 插入提示詞  + ChatGPT 插入提示詞  @@ -2484,14 +2473,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2499,9 +2488,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - ChatGPT 保存對話  + ChatGPT 保存對話  @@ -2516,14 +2505,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2533,9 +2522,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - ChatGPT 輕鬆管理聊天  + ChatGPT 輕鬆管理聊天  @@ -2550,14 +2539,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2565,11 +2554,11 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自 - +

部落格網站 (5)

- + - 解除CSDN登錄複製  + 解除CSDN登錄複製  @@ -2584,14 +2573,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2599,9 +2588,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 更新日誌

- + - 乾淨的博客文章  + 乾淨的博客文章  @@ -2616,14 +2605,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2631,9 +2620,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - 知乎的深色主題  + 知乎的深色主題  @@ -2648,14 +2637,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2663,9 +2652,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - 微信網頁版深色模式  + 微信網頁版深色模式  @@ -2680,14 +2669,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2695,9 +2684,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - 新浪微博行動版跳轉  + 新浪微博行動版跳轉  @@ -2712,14 +2701,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2727,11 +2716,11 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自 - +

Twitter (5)

- + - Twitter/X 隱藏轉發的帖子  + Twitter/X 隱藏轉發的帖子  @@ -2752,14 +2741,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2769,9 +2758,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - Twitter 媒體下載 (2025.12.02 修復)  + Twitter 媒體下載 (2025.12.02 修復)  @@ -2792,14 +2781,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2809,9 +2798,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - Twitter(X)黑名單和屏蔽列表下載  + Twitter(X)黑名單和屏蔽列表下載  @@ -2826,14 +2815,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2841,9 +2830,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - Twitter 顯示正常的日期和時間  + Twitter 顯示正常的日期和時間  @@ -2865,22 +2854,22 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝

- + - Twitter(X)-Plus  + Twitter(X)-Plus  @@ -2901,14 +2890,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2918,11 +2907,11 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自 - +

YouTube (5)

- + - YouTube 小助手  + YouTube 小助手  @@ -2943,14 +2932,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2960,9 +2949,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - YouTube 稍後觀看快捷鍵  + YouTube 稍後觀看快捷鍵  @@ -2977,14 +2966,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -2992,9 +2981,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - 更好的 YouTube 音量控制  + 更好的 YouTube 音量控制  @@ -3009,14 +2998,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -3024,9 +3013,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - YouTube 動態視頻網格  + YouTube 動態視頻網格  @@ -3041,14 +3030,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -3058,9 +3047,9 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自

- + - YouTube Pro: 音頻增強器  + YouTube Pro: 音頻增強器  @@ -3081,14 +3070,14 @@ ChatGPT 讓程式碼字體變小 並且自動折行 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -3096,11 +3085,11 @@ ChatGPT 讓程式碼字體變小 並且自動折行 修改自 - +

TikTok (1)

- + - TikTok 用戶信息  + TikTok 用戶信息  @@ -3115,14 +3104,14 @@ TikTok 在個人資料上顯示更多擴展信息 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -3130,11 +3119,11 @@ TikTok 在個人資料上顯示更多擴展信息 修改自 - +

Bilibili (2)

- + - 嗶哩嗶哩影片下載器  + 嗶哩嗶哩影片下載器  @@ -3149,14 +3138,14 @@ TikTok 在個人資料上顯示更多擴展信息 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -3164,9 +3153,9 @@ TikTok 在個人資料上顯示更多擴展信息 修改自

- + - 嗶哩嗶哩直播間屏蔽工具  + 嗶哩嗶哩直播間屏蔽工具  @@ -3181,14 +3170,14 @@ TikTok 在個人資料上顯示更多擴展信息 Greasemonkey / - + - + 自述文件 / 討論 / - + 原始碼 / 安裝 / @@ -3196,7 +3185,7 @@ TikTok 在個人資料上顯示更多擴展信息 修改自 - + @@ -3211,7 +3200,7 @@ TikTok 在個人資料上顯示更多擴展信息 > [!IMPORTANT] > > - _其他基於 **Chromium** 內核的瀏覽器(如國內套皮瀏覽器)一般都可以使用 Chrome 擴充。_ -> - _请确保使用 **Tampermonkey 正式版** 擴充,其他的用户腳本管理器可能导致**無法正常使用**脚本。_ +> - _請確保使用 **Tampermonkey 正式版** 擴充,其他的用户腳本管理器可能导致**無法正常使用**脚本。_ > - _如果要重裝腳本,請記得在 Tampermonkey 擴充的**回收站中徹底刪除**腳本後再去重新安裝腳本。_ > _**不會離線安裝 .crx 擴充?[Chrome、Edge 重新開啟隱藏的 [拖入安裝 .crx 擴充] 功能!](https://zhuanlan.zhihu.com/p/276027099)**_ @@ -3232,12 +3221,12 @@ TikTok 在個人資料上顯示更多擴展信息 > [!TIP] > > - Hmjz100 :+1: -> - 倉庫內所有`README.md`文件徽章複製了[Hmjz100](https://github.com/hmjz100)的倉庫[Online-disk-direct-link-download-assistant](https://github.com/hmjz100/Online-disk-direct-link-download-assistant)内的[README.md](https://github.com/hmjz100/Online-disk-direct-link-download-assistant/blob/main/README.md)文件的徽章風格 +> - 倉庫內所有`README.md`文件徽章複製了[Hmjz100](https://github.com/hmjz100)的倉庫[Online-disk-direct-link-download-assistant](https://github.com/hmjz100/Online-disk-direct-link-download-assistant)內部的[README.md](https://github.com/hmjz100/Online-disk-direct-link-download-assistant/blob/main/README.md)文件的徽章風格 > [!TIP] > > - FengFeng :+1: -> - 倉庫內所有`README.md`文件頭部簡介與歷史安裝表格複製了[FengFeng](https://github.com/BonjourFeng)的倉庫[Github-Search-Purification](https://github.com/BonjourFeng/Github-Search-Purification)内[README.md](https://github.com/BonjourFeng/Github-Search-Purification/blob/main/README.md)文件內容 +> - 仓库內所有`README.md`文件頭部簡介與歷史安裝表格複製了[FengFeng](https://github.com/BonjourFeng)的倉庫[Github-Search-Purification](https://github.com/BonjourFeng/Github-Search-Purification)内[README.md](https://github.com/BonjourFeng/Github-Search-Purification/blob/main/README.md)文件內容 > - 本倉庫的子倉庫`UserScriptsHistory`自動更新安裝歷史表格圖片程式碼也複製使用了[FengFeng](https://github.com/BonjourFeng)的倉庫[Script-History](https://github.com/BonjourFeng/Script-History)內的程式碼[main.py](https://github.com/BonjourFeng/Script-History/blob/main/source/main.py) > [!TIP] @@ -3250,14 +3239,14 @@ TikTok 在個人資料上顯示更多擴展信息 > [!TIP] > > - [#12](https://github.com/ChinaGodMan/UserScripts/issues/12) :trollface: Adam Lui 劉展鵬 :+1: -> - _本仓库的自动翻译与 Action 功能特别感谢美国佬[Adam Lui 劉展鵬](https://github.com/adamlui)出色的想法與代碼!_ :trollface: +> - _本倉庫的自動翻譯與 Action 功能特別感謝美國佬[Adam Lui 劉展鵬](https://github.com/adamlui)出色的想法與代碼!_ :trollface: > - _本倉庫命名風格受美國佬[Adam Lui 劉展鵬](https://github.com/adamlui)啟發_ :trollface: > - _本倉庫內自述文件來自[Adam Lui 劉展鵬](https://github.com/adamlui)的自述風格_ :trollface: > - _腳本內的相互導流跳轉來自[Adam Lui 劉展鵬](https://github.com/adamlui)的自述風格_ :trollface: > - _本倉庫內所有`README.md`文件複製並使用了這個美國佬的倉庫`README.md`文件排版,分隔符,程式碼,思路_ :trollface: > - _複製了美國佬[Adam Lui 劉展鵬](https://github.com/adamlui) Action 內程式碼_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: -> - _複製了 美国佬[Adam Lui 劉展鵬](https://github.com/adamlui)Action 內程式碼_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: -> - _複製了美國佬[Adam Lui 劉展鵬](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)分隔符,等排版风格 :trollface: +> - _複製了 美國佬[Adam Lui 劉展鵬](https://github.com/adamlui)Action 內程式碼_ [sync-autoclear-chatgpt-history-changes.yml](https://github.com/adamlui/chatgpt-apps/blob/main/.github/workflows/sync-autoclear-chatgpt-history-changes.yml) :trollface: +> - _複製了美國佬[Adam Lui 劉展鵬](https://github.com/adamlui)_ [chatgpt-auto-continue/docs/README.md](https://github.com/adamlui/ai-apps/blob/main/chatgpt-auto-continue/docs/README.md)分隔符,等排版風格 :trollface: > - _複製了 美國佬[Adam Lui 劉展鵬](https://github.com/adamlui)Python 內程式碼_ [translate-en-messages.py](https://github.com/adamlui/python-utils/blob/main/translate-messages/translate-en-messages.py) :trollface:
@@ -3271,6 +3260,7 @@ TikTok 在個人資料上顯示更多擴展信息 人民的勤务员 人民的機器人 +Metric molanp Yoobohl fossabot @@ -3286,8 +3276,8 @@ TikTok 在個人資料上顯示更多擴展信息 ## 🏛️ 開源授權協議 -本項目採用 MIT 許可證 授權。 -MIT 許可證是一種寬鬆的開源許可協議,詳細內容請參閱 許可證全文。 +本項目採用 MIT 許可證 授權。 +MIT 許可證是一種寬鬆的開源許可協議,詳細內容請參閱 許可證全文
@@ -3297,7 +3287,7 @@ MIT 許可證是一種寬鬆的開源許可協議,詳細內容請參閱 行為準則。请每位贡献者遵循这些指导原则。 +為了確保一個友好、尊重與包容的開發環境,我們制定了以下行為準則。請每位貢獻者遵循這些指導原則。
@@ -3307,10 +3297,10 @@ MIT 許可證是一種寬鬆的開源許可協議,詳細內容請參閱 並在公開前等待回复。 -詳細內容請參閱 安全政策 +詳細內容請參閱 安全政策
@@ -3320,7 +3310,7 @@ MIT 許可證是一種寬鬆的開源許可協議,詳細內容請參閱 貢獻指南。為了幫助您順利貢獻程式碼或文檔,請在提交程式碼或問題前,仔细阅读内容。 +感謝您對本計畫的興趣!我們制定了以下貢獻指南。為了幫助您順利貢獻程式碼或文檔,請在提交程式碼或問題前,仔細閱讀內容。 - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -94,7 +94,7 @@ - + ## 使用帮助 @@ -108,14 +108,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-clone-button/README_en.md b/github-clone-button/README_en.md index 183b5fd60..7cfc61158 100644 --- a/github-clone-button/README_en.md +++ b/github-clone-button/README_en.md @@ -42,7 +42,7 @@ Gmail
- +
Recommended:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The above list of script managers and browsers is not exhaustive
The script runs fine in the following environment
Passed
- +
@@ -94,7 +94,7 @@ used in GitHub Warehouse page **Code Add a copy button next to the button**,Yo - + ## Help @@ -108,14 +108,14 @@ Recommended browsers and script managers: **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View graphic teaching!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-script%20list) - +
diff --git a/github-clone-button/README_ko.md b/github-clone-button/README_ko.md index b0031db6f..6d02b099e 100644 --- a/github-clone-button/README_ko.md +++ b/github-clone-button/README_ko.md @@ -42,7 +42,7 @@ Gmail
- +
추천:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위의 스크립트 관리자 및 브라우저 목록은 완전한 것이 아닙니다.
스크립트는 다음 환경에서 정상적으로 실행됩니다.
Passed
- +
@@ -94,7 +94,7 @@ - + ## 돕다 @@ -108,14 +108,14 @@ **사용자 스크립트 설치 방법에 대해 더 알고 싶다면,[나를 클릭하세요](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그래픽 교육 보기!** - + ### [모든 게시 스크립트 보기](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%20%EB%AA%A9%EB%A1%9D) - +
diff --git a/github-clone-button/README_vi.md b/github-clone-button/README_vi.md index e962005c3..c4ca88b70 100644 --- a/github-clone-button/README_vi.md +++ b/github-clone-button/README_vi.md @@ -42,7 +42,7 @@ Gmail
- +
Khuyến khích:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Danh sách trình quản lý tập lệnh và trình duyệt ở trên không đầy đủ
Tập lệnh chạy tốt trong môi trường sau
Passed
- +
@@ -94,7 +94,7 @@ - + ## Giúp đỡ @@ -108,14 +108,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần biết thêm về cách cài đặt userscript,[bấm vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem giảng dạy đồ họa!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-danh%20s%C3%A1ch%20k%E1%BB%8Bch%20b%E1%BA%A3n) - +
diff --git a/github-clone-button/README_zh-TW.md b/github-clone-button/README_zh-TW.md index 0b1eec81b..dfeee4a5d 100644 --- a/github-clone-button/README_zh-TW.md +++ b/github-clone-button/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail
- +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運作正常
Passed
- +
@@ -94,7 +94,7 @@ - + ## 使用幫助 @@ -108,14 +108,14 @@ **如果你需要了解更多關於如何安裝使用者腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-co-authors/README.md b/github-co-authors/README.md index 50b874f1d..0dd9934a4 100644 --- a/github-co-authors/README.md +++ b/github-co-authors/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -119,7 +119,7 @@ - + ## 使用帮助 @@ -133,14 +133,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-co-authors/README_en.md b/github-co-authors/README_en.md index cf6b4ccb3..f3f64ce7a 100644 --- a/github-co-authors/README_en.md +++ b/github-co-authors/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -119,7 +119,7 @@ Modified the original script,Make it supportive`TOKEN`Access is used to avoid`AP - + ## Help @@ -133,14 +133,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/github-co-authors/README_ko.md b/github-co-authors/README_ko.md index 92e6f7d49..aaf3a0a35 100644 --- a/github-co-authors/README_ko.md +++ b/github-co-authors/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -119,7 +119,7 @@ - + ## 돕다 @@ -133,14 +133,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/github-co-authors/README_vi.md b/github-co-authors/README_vi.md index 7f3ac8424..7593152ca 100644 --- a/github-co-authors/README_vi.md +++ b/github-co-authors/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -119,7 +119,7 @@ Kịch bản nàycủaChức năng là cho GitHub của Pull Request(PR)Thê - + ## Giúp đỡ @@ -133,14 +133,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/github-co-authors/README_zh-TW.md b/github-co-authors/README_zh-TW.md index 8b8955f18..e1b849492 100644 --- a/github-co-authors/README_zh-TW.md +++ b/github-co-authors/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -119,7 +119,7 @@ - + ## 使用幫助 @@ -133,14 +133,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-comment-translate/README.md b/github-comment-translate/README.md index 821da031a..549bd5f53 100644 --- a/github-comment-translate/README.md +++ b/github-comment-translate/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -104,7 +104,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -126,7 +126,7 @@ - + ## 使用帮助 @@ -140,13 +140,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -158,7 +158,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -224,7 +224,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -262,7 +262,7 @@ - +
diff --git a/github-comment-translate/README_en.md b/github-comment-translate/README_en.md index 6eaee01b8..18faf7015 100644 --- a/github-comment-translate/README_en.md +++ b/github-comment-translate/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -104,7 +104,7 @@ This script listens to keyboard shortcuts `Ctrl + Q`,Implement the function of - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -126,7 +126,7 @@ This script listens to keyboard shortcuts `Ctrl + Q`,Implement the function of - + ## Help @@ -140,13 +140,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -158,7 +158,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -175,7 +175,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -197,7 +197,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -224,7 +224,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -241,7 +241,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -251,7 +251,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -262,7 +262,7 @@ Recommended browser and script manager: - +
diff --git a/github-comment-translate/README_ko.md b/github-comment-translate/README_ko.md index a5c59086f..8aec0d7d8 100644 --- a/github-comment-translate/README_ko.md +++ b/github-comment-translate/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -104,7 +104,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -126,7 +126,7 @@ - + ## 돕다 @@ -140,13 +140,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -158,7 +158,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -175,7 +175,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -197,7 +197,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -206,7 +206,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -224,7 +224,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -241,7 +241,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -251,7 +251,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -262,7 +262,7 @@ - +
diff --git a/github-comment-translate/README_vi.md b/github-comment-translate/README_vi.md index 9698fe9c4..c031de9b8 100644 --- a/github-comment-translate/README_vi.md +++ b/github-comment-translate/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -104,7 +104,7 @@ Tập lệnh này lắng nghe các phím tắt bàn phím `Ctrl + Q`,Thực hi - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -126,7 +126,7 @@ Tập lệnh này lắng nghe các phím tắt bàn phím `Ctrl + Q`,Thực hi - + ## Giúp đỡ @@ -140,13 +140,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -158,7 +158,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -175,7 +175,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -197,7 +197,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -206,7 +206,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -224,7 +224,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -241,7 +241,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -251,7 +251,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -262,7 +262,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-comment-translate/README_zh-TW.md b/github-comment-translate/README_zh-TW.md index f0eec83fc..afec1c9e9 100644 --- a/github-comment-translate/README_zh-TW.md +++ b/github-comment-translate/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -104,7 +104,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -126,7 +126,7 @@ - + ## 使用幫助 @@ -140,13 +140,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -158,7 +158,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -224,7 +224,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -262,7 +262,7 @@ - +
diff --git a/github-commit-viewer/README.md b/github-commit-viewer/README.md index a9b9a5219..503734807 100644 --- a/github-commit-viewer/README.md +++ b/github-commit-viewer/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,17 +69,17 @@ - + # GitHub CommitMessage Html View - + ## 描述 `GitHub CommitMessage Html View` 是一个用户脚本,旨在将 GitHub 上的提交信息转换为 HTML 视图,从而提供更清晰的提交详情。该脚本自动将提交信息列表、提交头部和最新提交信息转换为 HTML 格式,以增强视觉效果和用户体验,配合git使用 - + ## 功能 @@ -87,7 +87,7 @@ - **头部信息展示**: 显示提交头部和最新提交的详细信息。 - **增强视觉效果**: 改善提交信息的可视性和用户体验。 - + ## PowerShell配合上传到远程仓库 @@ -144,7 +144,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找GitHub相关脚本 > @@ -166,14 +166,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + ## 支持 - [报告问题](https://github.com/ChinaGodMan/UserScripts/issues) - [项目主页](https://github.com/ChinaGodMan/UserScripts) - + ## 许可证 @@ -185,7 +185,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile ![2.png](https://s2.loli.net/2024/08/30/56sANeoMWb7QRY2.png) - + ## 使用帮助 @@ -199,14 +199,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -219,7 +219,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找网页相关脚本 > @@ -237,7 +237,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找GitHub相关脚本 > @@ -260,7 +260,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找Google相关脚本 > @@ -270,7 +270,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -289,7 +289,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找成人脚本 > @@ -307,7 +307,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找自动翻译 > @@ -318,7 +318,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找社交媒体脚本 > @@ -329,7 +329,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - +
diff --git a/github-commit-viewer/README_en.md b/github-commit-viewer/README_en.md index 1018f00c1..f985b187c 100644 --- a/github-commit-viewer/README_en.md +++ b/github-commit-viewer/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,17 +69,17 @@ - + # GitHub CommitMessage Html View - + ## Description `GitHub CommitMessage Html View` is a user script designed to convert commit messages on GitHub into HTML views, providing clearer commit details. This script automatically transforms commit message lists, commit headers, and the latest commit information into HTML format to enhance visual appeal and user experience, and can be used in conjunction with Git. - + ## Features @@ -87,7 +87,7 @@ - **Header Information Display**: Shows detailed information about commit headers and the latest commit. - **Enhanced Visuals**: Improves the visibility and user experience of commit information. - + ## Using PowerShell to Upload to a Remote Repository @@ -143,14 +143,14 @@ if ($LASTEXITCODE -ne 0) { Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFilePath -Force - + ## Support - [Report Issues](https://github.com/ChinaGodMan/UserScripts/issues) - [Project Homepage](https://github.com/ChinaGodMan/UserScripts) - + ## License @@ -162,7 +162,7 @@ This script is licensed under the [MIT License](https://opensource.org/licenses/ ![2.png](https://s2.loli.net/2024/08/30/56sANeoMWb7QRY2.png) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -184,7 +184,7 @@ This script is licensed under the [MIT License](https://opensource.org/licenses/ - + ## Help @@ -198,14 +198,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -218,7 +218,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -236,7 +236,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -259,7 +259,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -269,7 +269,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -288,7 +288,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -306,7 +306,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -317,7 +317,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -328,7 +328,7 @@ Recommended browser and script manager: - +
diff --git a/github-commit-viewer/README_ko.md b/github-commit-viewer/README_ko.md index afea94080..757cf3b71 100644 --- a/github-commit-viewer/README_ko.md +++ b/github-commit-viewer/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,17 +69,17 @@ - + # GitHub CommitMessage Html View - + ## 설명하다 `GitHub CommitMessage Html View` 사용자 스크립트입니다,에게 GitHub 제출 정보를 변환하십시오 HTML 보다,이것은 명확한 제출 세부 사항을 제공합니다。이 스크립트는 정보 목록을 자동으로 제출합니다、제출 헤더 및 최신 제출 정보를 변환하십시오 HTML 체재,시각 효과와 사용자 경험을 향상시킵니다,맞잡다git사용 - + ## 기능 @@ -87,7 +87,7 @@ - **헤드 정보 표시**: 커밋 헤더 및 최신 커밋의 세부 정보를 보여줍니다。 - **시각 효과를 향상시킵니다**: 제출 된 정보의 가시성 및 사용자 경험을 향상시킵니다。 - + ## PowerShell원격 저장소에 업로드하도록 조정하십시오 @@ -144,7 +144,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -166,14 +166,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + ## 지원하다 - [문제를보고하십시오](https://github.com/ChinaGodMan/UserScripts/issues) - [프로젝트 홈페이지](https://github.com/ChinaGodMan/UserScripts) - + ## 특허 @@ -185,7 +185,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile ![2.png](https://s2.loli.net/2024/08/30/56sANeoMWb7QRY2.png) - + ## 돕다 @@ -199,14 +199,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -219,7 +219,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -237,7 +237,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -260,7 +260,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -270,7 +270,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -289,7 +289,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -307,7 +307,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -318,7 +318,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -329,7 +329,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - +
diff --git a/github-commit-viewer/README_vi.md b/github-commit-viewer/README_vi.md index ac9129d74..fecfebb45 100644 --- a/github-commit-viewer/README_vi.md +++ b/github-commit-viewer/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,17 +69,17 @@ - + # GitHub CommitMessage Html View - + ## mô tả `GitHub CommitMessage Html View` Đó là một tập lệnh người dùng,ĐẾN GitHub Chuyển đổi thông tin gửi trên HTML xem,Điều này cung cấp chi tiết đệ trình rõ ràng hơn。Tập lệnh này sẽ tự động gửi danh sách thông tin、Chuyển đổi tiêu đề gửi và thông tin gửi mới nhất thành HTML Định dạng,Để tăng cường hiệu ứng hình ảnh và trải nghiệm người dùng,Hợp tácgitsử dụng - + ## Chức năng @@ -87,7 +87,7 @@ - **Hiển thị thông tin đầu**: Hiển thị chi tiết về tiêu đề cam kết và cam kết mới nhất。 - **Tăng cường hiệu ứng hình ảnh**: Cải thiện khả năng hiển thị và trải nghiệm người dùng của thông tin đã gửi。 - + ## PowerShellPhối hợp để tải lên kho lưu trữ từ xa @@ -144,7 +144,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -166,14 +166,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + ## ủng hộ - [Báo cáo một vấn đề](https://github.com/ChinaGodMan/UserScripts/issues) - [Trang chủ dự án](https://github.com/ChinaGodMan/UserScripts) - + ## giấy phép @@ -185,7 +185,7 @@ Kịch bản này sử dụng [MIT giấy phép](https://opensource.org/licenses ![2.png](https://s2.loli.net/2024/08/30/56sANeoMWb7QRY2.png) - + ## Giúp đỡ @@ -199,14 +199,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -219,7 +219,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -237,7 +237,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -260,7 +260,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -270,7 +270,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -289,7 +289,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -307,7 +307,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -318,7 +318,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -329,7 +329,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-commit-viewer/README_zh-TW.md b/github-commit-viewer/README_zh-TW.md index d36587193..eb2ed1aec 100644 --- a/github-commit-viewer/README_zh-TW.md +++ b/github-commit-viewer/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,17 +69,17 @@ - + # GitHub CommitMessage Html View - + ## 描述 `GitHub CommitMessage Html View` 是一個用戶腳本,旨在將 GitHub 上的提交信息轉換為 HTML 視圖,從而提供更清晰的提交詳情。該腳本自動將提交信息列表、提交頭部和最新提交信息轉換為 HTML 格式,以增強視覺效果和用戶體驗,配合git使用 - + ## 功能 @@ -87,7 +87,7 @@ - **頭部信息展示**: 顯示提交頭部和最新提交的詳細信息。 - **增強視覺效果**: 改善提交信息的可視性和用戶體驗。 - + ## PowerShell配合上傳到遠程倉庫 @@ -144,7 +144,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找GitHub相關腳本 > @@ -166,14 +166,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + ## 支持 - [報告問題](https://github.com/ChinaGodMan/UserScripts/issues) - [項目主頁](https://github.com/ChinaGodMan/UserScripts) - + ## 許可證 @@ -185,7 +185,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile ![2.png](https://s2.loli.net/2024/08/30/56sANeoMWb7QRY2.png) - + ## 使用幫助 @@ -199,14 +199,14 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -219,7 +219,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找網頁相關腳本 > @@ -237,7 +237,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找GitHub相關腳本 > @@ -260,7 +260,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找Google相關腳本 > @@ -270,7 +270,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -289,7 +289,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找成人腳本 > @@ -307,7 +307,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找自動翻譯 > @@ -318,7 +318,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - + > ### 🔍你可能在找社交媒體腳本 > @@ -329,7 +329,7 @@ Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFile - +
diff --git a/github-device-authorization/README.md b/github-device-authorization/README.md index 351be3100..307b59bfd 100644 --- a/github-device-authorization/README.md +++ b/github-device-authorization/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -77,21 +77,21 @@ # GitHub 自动确认设备授权 - + ## 概述 该用户脚本旨在简化在 GitHub 授权页面的操作,通过自动填写授权码和确认操作,减少手动干预的需要。该脚本特别适用于在无法直接操作浏览器的场景中使用,例如自动化测试或远程操作。 (自用脚本,方便自己在便携时使用) - + ## 功能 - 自动填写授权码:从剪贴板读取授权码,并自动填写到授权页面的对应输入框中。 - 自动提交授权:在确认授权页面自动点击授权按钮。 - + ## 安装与使用 @@ -100,28 +100,28 @@ - 访问 GitHub 设备授权页面时,脚本会自动运行。 - 脚本会从剪贴板中读取授权码,并自动填写并提交表单。 - + ## 脚本功能 - **自动填写授权码**:脚本会等待页面加载完成,然后从剪贴板读取授权码,拆分并填写到相应的输入框中。 - **自动提交确认**:在确认页面,脚本会自动点击确认按钮,以完成授权操作。 - + ## 注意事项 - 确保剪贴板中保存的是正确格式的授权码(形如 `XXXX-XXXX`)。 - 脚本可能需要一些时间来识别页面元素并填写表单,因此请确保在使用时给予脚本足够的时间。 - + ## 感谢 [LemonPupl](https://greasyfork.org/zh-CN/users/1274376)发布的脚本[GitHub Copilot automatically obtains GHU](https://greasyfork.org/scripts/489793) - + > ### 🔍你可能在找GitHub相关脚本 > @@ -143,20 +143,20 @@ - + ## 许可证 此脚本采用 MIT 许可证,详情请见 [LICENSE](https://github.com/ChinaGodMan/UserScripts/blob/main/LICENSE)。 - + ## 支持与反馈 - 如果遇到问题或有任何建议,请访问 [GitHub Issues 页面](https://github.com/ChinaGodMan/UserScripts/issues) 提交反馈。 - + ## 使用帮助 @@ -170,14 +170,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -208,7 +208,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -231,7 +231,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -260,7 +260,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -278,7 +278,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -289,7 +289,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -300,7 +300,7 @@ - +
diff --git a/github-device-authorization/README_en.md b/github-device-authorization/README_en.md index 3fe5a0fe0..ad2f34e75 100644 --- a/github-device-authorization/README_en.md +++ b/github-device-authorization/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -77,21 +77,21 @@ # GitHub Automatic Device Authorization - + ## Overview This user script aims to simplify the process on the GitHub authorization page by automatically filling in the authorization code and confirming the action, reducing the need for manual intervention. This script is particularly useful in scenarios where direct browser interaction is not possible, such as automated testing or remote operations. (This is a personal script for convenience during portable use.) - + ## Features - **Automatic Code Filling**: Reads the authorization code from the clipboard and automatically fills it into the corresponding input fields on the authorization page. - **Automatic Submission**: Automatically clicks the confirm button on the authorization page. - + ## Installation and Usage @@ -100,28 +100,28 @@ This user script aims to simplify the process on the GitHub authorization page b - The script will run automatically when you visit the GitHub device authorization page. - The script will read the authorization code from the clipboard, automatically fill out the form, and submit it. - + ## Script Functionality - **Automatic Code Filling**: The script waits for the page to load, then reads the authorization code from the clipboard, splits it, and fills it into the appropriate input fields. - **Automatic Submission**: On the confirmation page, the script will automatically click the confirm button to complete the authorization process. - + ## Notes - Ensure that the clipboard contains a correctly formatted authorization code (e.g., `XXXX-XXXX`). - The script may need some time to recognize page elements and fill out the form, so please give it enough time to execute. - + ## Thanks Thanks to [LemonPupl](https://greasyfork.org/zh-CN/users/1274376) for the script [GitHub Copilot automatically obtains GHU](https://greasyfork.org/scripts/489793). - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -144,7 +144,7 @@ Thanks to [LemonPupl](https://greasyfork.org/zh-CN/users/1274376) for the script - + ## Help @@ -158,14 +158,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -178,7 +178,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -196,7 +196,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -219,7 +219,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -229,7 +229,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -248,7 +248,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -266,7 +266,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -277,7 +277,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -288,7 +288,7 @@ Recommended browser and script manager: - +
diff --git a/github-device-authorization/README_ko.md b/github-device-authorization/README_ko.md index db0b980f1..0ebad2441 100644 --- a/github-device-authorization/README_ko.md +++ b/github-device-authorization/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -77,21 +77,21 @@ # GitHub 장치 승인을 자동으로 확인합니다 - + ## 개요 이 사용자 스크립트는 단순화하도록 설계되었습니다 GitHub 승인 페이지 운영,권한 부여 코드 및 확인 작업을 자동으로 작성하십시오,수동 개입의 필요성을 줄입니다。이 스크립트는 특히 브라우저를 직접 작동 할 수없는 시나리오에서 사용하기에 특히 적합합니다.,예를 들어 자동 테스트 또는 원격 작업。 (자체 사용 스크립트,휴대 할 때 사용하기 편리합니다) - + ## 기능 - 권한 부여 코드를 자동으로 작성하십시오:클립 보드에서 인증 코드를 읽으십시오,인증 페이지의 해당 입력 상자를 자동으로 작성합니다.。 - 자동으로 승인을 제출합니다:확인 페이지의 권한 부여 버튼을 자동으로 클릭하십시오.。 - + ## 설치 및 사용 @@ -100,28 +100,28 @@ - 입장 GitHub 장치 인증 페이지,스크립트가 자동으로 실행됩니다。 - 스크립트는 클립 보드에서 인증 코드를 읽습니다.,자동으로 작성하여 양식을 제출하십시오。 - + ## 스크립팅 기능 - **권한 부여 코드를 자동으로 작성하십시오**:스크립트는 페이지가로드 될 때까지 기다립니다,그런 다음 클립 보드에서 인증 코드를 읽으십시오,해당 입력 상자를 분할하고 채우십시오。 - **자동 제출 확인**:확인 페이지에서,스크립트가 확인 버튼을 자동으로 클릭합니다,승인 작업을 완료합니다。 - + ## 주목해야 할 것 - 클립 보드에 올바른 형식의 권한 부여 코드가 저장되어 있는지 확인하십시오.(좋다 `XXXX-XXXX`)。 - 스크립트는 페이지 요소를 인식하고 양식을 작성하는 데 시간이 걸릴 수 있습니다.,따라서 사용할 때 스크립트에 충분한 시간을 주어야합니다.。 - + ## 고마워하는 [LemonPupl](https://greasyfork.org/zh-CN/users/1274376)게시 된 스크립트[GitHub Copilot automatically obtains GHU](https://greasyfork.org/scripts/489793) - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -143,20 +143,20 @@ - + ## 특허 이 스크립트가 사용됩니다 MIT 특허,자세한 내용은 참조하십시오 [LICENSE](https://github.com/ChinaGodMan/UserScripts/blob/main/LICENSE)。 - + ## 지원 및 피드백 - 문제가 있거나 제안이있는 경우,방문하십시오 [GitHub Issues 페이지](https://github.com/ChinaGodMan/UserScripts/issues) 피드백을 제출하십시오。 - + ## 돕다 @@ -170,14 +170,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -190,7 +190,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -208,7 +208,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -231,7 +231,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -241,7 +241,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -260,7 +260,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -278,7 +278,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -289,7 +289,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -300,7 +300,7 @@ - +
diff --git a/github-device-authorization/README_vi.md b/github-device-authorization/README_vi.md index dfc81631c..6bc375838 100644 --- a/github-device-authorization/README_vi.md +++ b/github-device-authorization/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -77,21 +77,21 @@ # GitHub Tự động xác nhận ủy quyền thiết bị - + ## Tổng quan Tập lệnh người dùng này được thiết kế để đơn giản hóa GitHub Hoạt động của trang ủy quyền,Tự động điền vào mã ủy quyền và hoạt động xác nhận,Giảm nhu cầu can thiệp thủ công。Kịch bản này đặc biệt phù hợp để sử dụng trong các kịch bản trong đó trình duyệt không thể được vận hành trực tiếp,Ví dụ: kiểm tra tự động hoặc hoạt động từ xa。 (Kịch bản tự sử dụng,Thuận tiện để sử dụng khi di động) - + ## Chức năng - Tự động điền vào mã ủy quyền:Đọc mã ủy quyền từ bảng tạm,Và tự động điền vào hộp đầu vào tương ứng của trang ủy quyền。 - Tự động gửi ủy quyền:Tự động nhấp vào nút ủy quyền trên trang xác nhận。 - + ## Cài đặt và sử dụng @@ -100,28 +100,28 @@ Tập lệnh người dùng này được thiết kế để đơn giản hóa G - truy cập GitHub Khi trang ủy quyền thiết bị,Tập lệnh sẽ tự động chạy。 - Tập lệnh sẽ đọc mã ủy quyền từ bảng tạm,Và tự động điền và gửi biểu mẫu。 - + ## Chức năng kịch bản - **Tự động điền vào mã ủy quyền**:Tập lệnh sẽ đợi trang tải,Sau đó đọc mã ủy quyền từ bảng tạm,Chia và điền vào hộp đầu vào tương ứng。 - **Xác nhận gửi tự động**:Trên trang xác nhận,Tập lệnh sẽ tự động nhấp vào nút Xác nhận,Để hoàn thành hoạt động ủy quyền。 - + ## Những điều cần lưu ý - Đảm bảo mã ủy quyền ở định dạng chính xác được lưu trong bảng tạm(Giống `XXXX-XXXX`)。 - Tập lệnh có thể mất một thời gian để nhận ra các yếu tố trang và điền vào biểu mẫu,Vì vậy, hãy đảm bảo cung cấp cho kịch bản đủ thời gian khi sử dụng nó。 - + ## tri ân [LemonPupl](https://greasyfork.org/zh-CN/users/1274376)Các kịch bản được xuất bản[GitHub Copilot automatically obtains GHU](https://greasyfork.org/scripts/489793) - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -143,20 +143,20 @@ Tập lệnh người dùng này được thiết kế để đơn giản hóa G - + ## giấy phép Kịch bản này sử dụng MIT giấy phép,Vui lòng xem chi tiết [LICENSE](https://github.com/ChinaGodMan/UserScripts/blob/main/LICENSE)。 - + ## Hỗ trợ và Phản hồi - Nếu bạn có bất kỳ vấn đề hoặc có bất kỳ đề xuất nào,Vui lòng truy cập [GitHub Issues trang](https://github.com/ChinaGodMan/UserScripts/issues) Gửi phản hồi。 - + ## Giúp đỡ @@ -170,14 +170,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -190,7 +190,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -208,7 +208,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -231,7 +231,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -241,7 +241,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -260,7 +260,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -278,7 +278,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -289,7 +289,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -300,7 +300,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-device-authorization/README_zh-TW.md b/github-device-authorization/README_zh-TW.md index f16064764..4cc803ae5 100644 --- a/github-device-authorization/README_zh-TW.md +++ b/github-device-authorization/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -77,21 +77,21 @@ # GitHub 自動確認設備授權 - + ## 概述 該用戶腳本旨在簡化在 GitHub 授權頁面的操作,通過自動填寫授權碼和確認操作,減少手動干預的需要。該腳本特別適用於在無法直接操作瀏覽器的場景中使用,例如自動化測試或遠程操作。 (自用腳本,方便自己在便攜時使用) - + ## 功能 - 自動填寫授權碼:從剪貼板讀取授權碼,並自動填寫到授權頁面的對應輸入框中。 - 自動提交授權:在確認授權頁面自動點擊授權按鈕。 - + ## 安裝與使用 @@ -100,28 +100,28 @@ - 訪問 GitHub 設備授權頁面時,腳本會自動運行。 - 腳本會從剪貼板中讀取授權碼,並自動填寫並提交表單。 - + ## 腳本功能 - **自動填寫授權碼**:腳本會等待頁面加載完成,然後從剪貼板讀取授權碼,拆分並填寫到相應的輸入框中。 - **自動提交確認**:在確認頁面,腳本會自動點擊確認按鈕,以完成授權操作。 - + ## 注意事項 - 確保剪貼板中保存的是正確格式的授權碼(形如 `XXXX-XXXX`)。 - 腳本可能需要一些時間來識別頁面元素並填寫表單,因此請確保在使用時給予腳本足夠的時間。 - + ## 感謝 [LemonPupl](https://greasyfork.org/zh-CN/users/1274376)發布的腳本[GitHub Copilot automatically obtains GHU](https://greasyfork.org/scripts/489793) - + > ### 🔍你可能在找GitHub相關腳本 > @@ -143,20 +143,20 @@ - + ## 許可證 此腳本採用 MIT 許可證,詳情請見 [LICENSE](https://github.com/ChinaGodMan/UserScripts/blob/main/LICENSE)。 - + ## 支持與反饋 - 如果遇到問題或有任何建議,請訪問 [GitHub Issues 頁面](https://github.com/ChinaGodMan/UserScripts/issues) 提交反饋。 - + ## 使用幫助 @@ -170,14 +170,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -208,7 +208,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -231,7 +231,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -260,7 +260,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -278,7 +278,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -289,7 +289,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -300,7 +300,7 @@ - +
diff --git a/github-email-finder/README.md b/github-email-finder/README.md index d84486630..bcdbc57d3 100644 --- a/github-email-finder/README.md +++ b/github-email-finder/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -107,7 +107,7 @@ - + ## 使用帮助 @@ -121,14 +121,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-email-finder/README_en.md b/github-email-finder/README_en.md index db5195cdf..e5af1f6eb 100644 --- a/github-email-finder/README_en.md +++ b/github-email-finder/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -107,7 +107,7 @@ This script is used in GitHub User homepage automatically extracts user public s - + ## Help @@ -121,14 +121,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/github-email-finder/README_ko.md b/github-email-finder/README_ko.md index e4a52c608..f51d21452 100644 --- a/github-email-finder/README_ko.md +++ b/github-email-finder/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -107,7 +107,7 @@ - + ## 돕다 @@ -121,14 +121,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/github-email-finder/README_vi.md b/github-email-finder/README_vi.md index a6c6b1e94..c5b24476d 100644 --- a/github-email-finder/README_vi.md +++ b/github-email-finder/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -107,7 +107,7 @@ Kịch bản này được sử dụng trong GitHub Trang chủ của người d - + ## Giúp đỡ @@ -121,14 +121,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/github-email-finder/README_zh-TW.md b/github-email-finder/README_zh-TW.md index 17754ad23..aa9067332 100644 --- a/github-email-finder/README_zh-TW.md +++ b/github-email-finder/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -107,7 +107,7 @@ - + ## 使用幫助 @@ -121,14 +121,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-file-list-beautifier-plus/README.md b/github-file-list-beautifier-plus/README.md index 4c0aa0289..03013ae75 100644 --- a/github-file-list-beautifier-plus/README.md +++ b/github-file-list-beautifier-plus/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -81,7 +81,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。 - + ## 功能 @@ -90,7 +90,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - **图片文件预览**:对于图片文件,自动显示缩略图。 - **颜色标记**:为不同类型的文件添加颜色,以便更快速地识别文件类型。 - + ## 请注意: @@ -99,7 +99,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - `github-vscode-icons-updated2.0.3` - `Material Icons for GitHub 1.8.19` - + ## 安装 @@ -115,14 +115,14 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 3. **脚本配置**: - 脚本首次运行时会从指定 URL 加载颜色配置。如果无法加载配置,将使用默认设置。 - + ## 使用 - 脚本会在 GitHub 页面加载时自动运行,处理文件列表中的文件图标。 - 可以根据需要在 `localStorage` 或脚本设置中调整图标和颜色配置。 - + ## 自定义配置说明 @@ -159,10 +159,10 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....." },` - + - + > ### 🔍你可能在找GitHub相关脚本 > @@ -184,25 +184,25 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + ## 兼容性 - **浏览器**:支持 Chrome、Firefox、Edge、Opera 和 Safari。 - + ## 支持与反馈 - 如果遇到问题或有任何建议,请访问 [GitHub Issues 页面](https://github.com/ChinaGodMan/UserScripts/issues) 提交反馈。 - + ## 授权 - 该脚本基于 [MIT 许可证](https://opensource.org/licenses/MIT) 开源。 - + ## 贡献 @@ -214,7 +214,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 ![Snipaste_2024-09-12_12-03-25.png](https://s2.loli.net/2024/09/12/HCZDNa8EngxQJ4y.png) - + ## 使用帮助 @@ -228,14 +228,14 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -248,7 +248,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找网页相关脚本 > @@ -266,7 +266,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -289,7 +289,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找Google相关脚本 > @@ -299,7 +299,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -318,7 +318,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找成人脚本 > @@ -336,7 +336,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找自动翻译 > @@ -347,7 +347,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - + > ### 🔍你可能在找社交媒体脚本 > @@ -358,7 +358,7 @@ GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库 - +
diff --git a/github-file-list-beautifier-plus/README_en.md b/github-file-list-beautifier-plus/README_en.md index 6359e8c9e..d6b3e1e67 100644 --- a/github-file-list-beautifier-plus/README_en.md +++ b/github-file-list-beautifier-plus/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -81,7 +81,7 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display effect of files in warehouse。It can add colors to files and folders,and replace the file type icons with small images,Makes the code base easier to browse and manage。 - + ## Function @@ -90,7 +90,7 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display ef - **Image file preview**:For image files,Automatically display thumbnails。 - **Color marking**:Add colors to different types of files,to identify file types more quickly。 - + ## please note: @@ -99,7 +99,7 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display ef - `github-vscode-icons-updated2.0.3` - `Material Icons for GitHub 1.8.19` - + ## Install @@ -115,14 +115,14 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display ef 3. **Script placement**: - The first time the script is run it will start from the specified URL Load color configuration。If the configuration cannot be loaded,Default settings will be used。 - + ## use - The script will be in GitHub Run automatically when page loads,Handling file icons in file lists。 - Can be used as needed `localStorage` Or adjust the icon and color configuration in the script settings。 - + ## Custom configuration instructions @@ -159,10 +159,10 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display ef "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....." },` - + - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -184,25 +184,25 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display ef - + ## compatibility - **Browser**:support Chrome、Firefox、Edge、Opera and Safari。 - + ## Support and feedback - If you encounter problems or have any suggestions,Please visit [GitHub Issues page](https://github.com/ChinaGodMan/UserScripts/issues) Submit feedback。 - + ## Authorize - This script is based on [MIT license](https://opensource.org/licenses/MIT) Open source。 - + ## contribute @@ -214,7 +214,7 @@ GitHub File List Beautifier is a user script,used to enhance GitHub Display ef ![Snipaste_2024-09-12_12-03-25.png](https://s2.loli.net/2024/09/12/HCZDNa8EngxQJ4y.png) - + ## Help @@ -228,14 +228,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -248,7 +248,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -266,7 +266,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -289,7 +289,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -299,7 +299,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -318,7 +318,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -336,7 +336,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -347,7 +347,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -358,7 +358,7 @@ Recommended browser and script manager: - +
diff --git a/github-file-list-beautifier-plus/README_ko.md b/github-file-list-beautifier-plus/README_ko.md index 8fbdb5cef..95c340bbf 100644 --- a/github-file-list-beautifier-plus/README_ko.md +++ b/github-file-list-beautifier-plus/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -81,7 +81,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 위해 GitHub 창고의 파일 표시 효과。파일과 폴더에 색상을 추가 할 수 있습니다,파일 유형 아이콘을 작은 이미지로 바꾸십시오.,코드 기반을 쉽게 탐색하고 관리 할 수 ​​있도록합니다。 - + ## 기능 @@ -90,7 +90,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - **이미지 파일 미리보기**:사진 파일의 경우,썸네일을 자동으로 표시합니다。 - **컬러 마커**:다른 유형의 파일에 색상을 추가하십시오,파일 유형을 더 빨리 식별합니다。 - + ## 참고하십시오: @@ -99,7 +99,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - `github-vscode-icons-updated2.0.3` - `Material Icons for GitHub 1.8.19` - + ## 설치하다 @@ -115,14 +115,14 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 3. **스크립트 구성**: - 스크립트는 처음 실행될 때 지정됩니다. URL 색상 구성로드。구성을로드 할 수없는 경우,기본 설정이 사용됩니다。 - + ## 사용 - 스크립트가 있습니다 GitHub 페이지가로드되면 자동으로 실행됩니다,파일 목록의 프로세스 파일 아이콘。 - 필요에 따라 사용할 수 있습니다 `localStorage` 또는 스크립트 설정에서 아이콘 및 색상 구성을 조정하십시오。 - + ## 사용자 정의 구성 지침 @@ -159,10 +159,10 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....." },` - + - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -184,25 +184,25 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + ## 호환성 - **브라우저**:지원하다 Chrome、Firefox、Edge、Opera 그리고 Safari。 - + ## 지원 및 피드백 - 문제가 있거나 제안이있는 경우,방문하십시오 [GitHub Issues 페이지](https://github.com/ChinaGodMan/UserScripts/issues) 피드백을 제출하십시오。 - + ## 권한 부여 - 스크립트는 기반입니다 [MIT 특허](https://opensource.org/licenses/MIT) 오픈 소스。 - + ## 기여하다 @@ -214,7 +214,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 ![Snipaste_2024-09-12_12-03-25.png](https://s2.loli.net/2024/09/12/HCZDNa8EngxQJ4y.png) - + ## 돕다 @@ -228,14 +228,14 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -248,7 +248,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -289,7 +289,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -299,7 +299,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -318,7 +318,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -336,7 +336,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -347,7 +347,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -358,7 +358,7 @@ GitHub 파일 목록 Beautifier는 사용자 스크립트입니다,향상을 - +
diff --git a/github-file-list-beautifier-plus/README_vi.md b/github-file-list-beautifier-plus/README_vi.md index c57bca615..0596b63e1 100644 --- a/github-file-list-beautifier-plus/README_vi.md +++ b/github-file-list-beautifier-plus/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -81,7 +81,7 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Để tăng cường GitHub Hiệu ứng hiển thị tệp trong kho。Nó có thể thêm màu sắc vào các tệp và thư mục,và thay thế biểu tượng loại tệp bằng một hình ảnh nhỏ,Làm cho cơ sở mã dễ dàng hơn để duyệt và quản lý。 - + ## Chức năng @@ -90,7 +90,7 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Đ - **Xem trước tệp hình ảnh**:Cho các tập tin hình ảnh,Tự động hiển thị hình thu nhỏ。 - **Điểm đánh dấu màu**:Thêm màu sắc vào các loại tệp khác nhau,Để xác định các loại tệp nhanh hơn。 - + ## Xin lưu ý: @@ -99,7 +99,7 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Đ - `github-vscode-icons-updated2.0.3` - `Material Icons for GitHub 1.8.19` - + ## Cài đặt @@ -115,14 +115,14 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Đ 3. **Cấu hình tập lệnh**: - Tập lệnh sẽ được chỉ định khi nó được chạy đầu tiên URL Tải cấu hình màu。Nếu cấu hình không thể được tải,Các cài đặt mặc định sẽ được sử dụng。 - + ## sử dụng - Kịch bản sẽ ở GitHub Tự động chạy khi trang được tải,Xử lý biểu tượng tệp trong danh sách tệp。 - Có thể được sử dụng khi cần thiết `localStorage` Hoặc điều chỉnh biểu tượng và cấu hình màu trong cài đặt tập lệnh。 - + ## Hướng dẫn cấu hình tùy chỉnh @@ -159,10 +159,10 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Đ "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....." },` - + - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -184,25 +184,25 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Đ - + ## khả năng tương thích - **Trình duyệt**:ủng hộ Chrome、Firefox、Edge、Opera Và Safari。 - + ## Hỗ trợ và Phản hồi - Nếu bạn có bất kỳ vấn đề hoặc có bất kỳ đề xuất nào,Vui lòng truy cập [GitHub Issues trang](https://github.com/ChinaGodMan/UserScripts/issues) Gửi phản hồi。 - + ## Ủy quyền - Kịch bản dựa trên [MIT giấy phép](https://opensource.org/licenses/MIT) Nguồn mở。 - + ## đóng góp @@ -214,7 +214,7 @@ GitHub Danh sách tệp làm đẹp là một tập lệnh người dùng,Đ ![Snipaste_2024-09-12_12-03-25.png](https://s2.loli.net/2024/09/12/HCZDNa8EngxQJ4y.png) - + ## Giúp đỡ @@ -228,14 +228,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -248,7 +248,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -289,7 +289,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -299,7 +299,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -318,7 +318,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -336,7 +336,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -347,7 +347,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -358,7 +358,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-file-list-beautifier-plus/README_zh-TW.md b/github-file-list-beautifier-plus/README_zh-TW.md index fc2768146..bc8b119bf 100644 --- a/github-file-list-beautifier-plus/README_zh-TW.md +++ b/github-file-list-beautifier-plus/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -81,7 +81,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫中的文件顯示效果。它可以為文件和文件夾添加顏色,並將文件類型圖標替換為小圖像,使得代碼庫更加易於瀏覽和管理。 - + ## 功能 @@ -90,7 +90,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - **圖片文件預覽**:對於圖片文件,自動顯示縮略圖。 - **顏色標記**:為不同類型的文件添加顏色,以便更快速地識別文件類型。 - + ## 請注意: @@ -99,7 +99,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - `github-vscode-icons-updated2.0.3` - `Material Icons for GitHub 1.8.19` - + ## 安裝 @@ -115,14 +115,14 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 3. **腳本配置**: - 腳本首次運行時會從指定 URL 加載顏色配置。如果無法加載配置,將使用默認設置。 - + ## 使用 - 腳本會在 GitHub 頁面加載時自動運行,處理文件列表中的文件圖標。 - 可以根據需要在 `localStorage` 或腳本設置中調整圖標和顏色配置。 - + ## 自定義配置說明 @@ -159,10 +159,10 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....." },` - + - + > ### 🔍你可能在找GitHub相關腳本 > @@ -184,25 +184,25 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + ## 相容性 - **瀏覽器**:支援 Chrome、Firefox、Edge、Opera 和 Safari。 - + ## 支持與反饋 - 如果遇到問題或有任何建議,請訪問 [GitHub Issues 頁面](https://github.com/ChinaGodMan/UserScripts/issues) 提交反饋。 - + ## 授權 - 該腳本基於 [MIT 許可證](https://opensource.org/licenses/MIT) 開源。 - + ## 貢獻 @@ -214,7 +214,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 ![Snipaste_2024-09-12_12-03-25.png](https://s2.loli.net/2024/09/12/HCZDNa8EngxQJ4y.png) - + ## 使用幫助 @@ -228,14 +228,14 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -248,7 +248,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找網頁相關腳本 > @@ -266,7 +266,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -289,7 +289,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找Google相關腳本 > @@ -299,7 +299,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -318,7 +318,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找成人腳本 > @@ -336,7 +336,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找自動翻譯 > @@ -347,7 +347,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - + > ### 🔍你可能在找社交媒體腳本 > @@ -358,7 +358,7 @@ GitHub 文件列表美化器是一個用戶腳本,用於增強 GitHub 倉庫 - +
diff --git a/github-file-size-viewer/README.md b/github-file-size-viewer/README.md index e6294d753..64d214dfd 100644 --- a/github-file-size-viewer/README.md +++ b/github-file-size-viewer/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -109,7 +109,7 @@ - + ## 使用帮助 @@ -123,14 +123,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-file-size-viewer/README_en.md b/github-file-size-viewer/README_en.md index 8aef4af61..804ce7ac0 100644 --- a/github-file-size-viewer/README_en.md +++ b/github-file-size-viewer/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -109,7 +109,7 @@ Support recursive calculation of folder size,Provides a humanized size format - + ## Help @@ -123,14 +123,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/github-file-size-viewer/README_ko.md b/github-file-size-viewer/README_ko.md index 234dc3aec..ee4568407 100644 --- a/github-file-size-viewer/README_ko.md +++ b/github-file-size-viewer/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -109,7 +109,7 @@ - + ## 돕다 @@ -123,14 +123,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/github-file-size-viewer/README_vi.md b/github-file-size-viewer/README_vi.md index 6829f0bbb..e86e3beee 100644 --- a/github-file-size-viewer/README_vi.md +++ b/github-file-size-viewer/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -109,7 +109,7 @@ Hỗ trợ tính toán đệ quy kích thước thư mục,Cung cấp định - + ## Giúp đỡ @@ -123,14 +123,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/github-file-size-viewer/README_zh-TW.md b/github-file-size-viewer/README_zh-TW.md index 048d978c8..41faed58d 100644 --- a/github-file-size-viewer/README_zh-TW.md +++ b/github-file-size-viewer/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -109,7 +109,7 @@ - + ## 使用幫助 @@ -123,14 +123,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-folder-downloader/README.md b/github-folder-downloader/README.md index d1cd83dc8..87eaa3188 100644 --- a/github-folder-downloader/README.md +++ b/github-folder-downloader/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -75,24 +75,24 @@ - + # GitHub Folder Downloader - + ### 描述 GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使用户可以更轻松地从仓库中下载特定的文件夹。该按钮集成了两个外部工具:download-directory 和 DownGit,允许用户一键下载文件夹。 - + ### 功能 - 为 GitHub 文件夹添加下载按钮。 - 提供使用 [download-directory](https://download-directory.github.io) 和 [DownGit](https://downgit.github.io) 下载文件夹的选项。 - + ### 使用方法 @@ -101,7 +101,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 3. 点击“下载文件夹”按钮,以查看下载文件夹的选项。 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -123,7 +123,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + ### 修改说明 @@ -133,7 +133,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 ![1.png](https://s2.loli.net/2024/08/28/XiKjIu85TVBwzMa.png) - + ## 使用帮助 @@ -147,14 +147,14 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -167,7 +167,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找网页相关脚本 > @@ -185,7 +185,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -208,7 +208,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找Google相关脚本 > @@ -218,7 +218,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -237,7 +237,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找成人脚本 > @@ -255,7 +255,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找自动翻译 > @@ -266,7 +266,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - + > ### 🔍你可能在找社交媒体脚本 > @@ -277,7 +277,7 @@ GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使 - +
diff --git a/github-folder-downloader/README_en.md b/github-folder-downloader/README_en.md index 981b5dbac..9d12e71f7 100644 --- a/github-folder-downloader/README_en.md +++ b/github-folder-downloader/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -75,30 +75,30 @@ - + # GitHub Folder Downloader - + ### Description GitHub Folder Downloader adds a download button for GitHub folders, making it easier to download specific folders from repositories. The button integrates with two external tools: download-directory and DownGit, allowing users to download folders with a single click. - + ### Features - Adds a download button to GitHub folders. - Provides options to download using [download-directory](https://download-directory.github.io) and [DownGit](https://downgit.github.io). - + ### Modifications Modified from the script [GitHub artspiecesfolderDownload](https://greasyfork.org/scripts/434592) by user [Eric Kwok](https://greasyfork.org/users/220259). - + ### Usage @@ -110,7 +110,7 @@ Modified from the script [GitHub artspiecesfolderDownload](https://greasyfork.or ![1.png](https://s2.loli.net/2024/08/28/XiKjIu85TVBwzMa.png) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -132,7 +132,7 @@ Modified from the script [GitHub artspiecesfolderDownload](https://greasyfork.or - + ## Help @@ -146,14 +146,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -166,7 +166,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -184,7 +184,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -207,7 +207,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -217,7 +217,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -236,7 +236,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -254,7 +254,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -265,7 +265,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -276,7 +276,7 @@ Recommended browser and script manager: - +
diff --git a/github-folder-downloader/README_ko.md b/github-folder-downloader/README_ko.md index 9690f6c16..e11913d99 100644 --- a/github-folder-downloader/README_ko.md +++ b/github-folder-downloader/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -75,24 +75,24 @@ - + # GitHub Folder Downloader - + ### 설명하다 GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 추가되었습니다,사용자가 저장소에서 특정 폴더를보다 쉽게 ​​다운로드 할 수 있도록합니다.。버튼은 두 가지 외부 도구를 통합합니다:download-directory 그리고 DownGit,사용자가 한 번의 클릭으로 폴더를 다운로드 할 수 있습니다。 - + ### 기능 - ~을 위한 GitHub 다운로드 버튼에 폴더를 추가하십시오。 - 사용을 제공하십시오 [download-directory](https://download-directory.github.io) 그리고 [DownGit](https://downgit.github.io) 폴더를 다운로드하는 옵션。 - + ### 사용 방법 @@ -101,7 +101,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 3. 딸깍 하는 소리“폴더를 다운로드하십시오”단추,폴더 다운로드 옵션을 보려면。 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -123,7 +123,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + ### 수정 지침 @@ -133,7 +133,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 ![1.png](https://s2.loli.net/2024/08/28/XiKjIu85TVBwzMa.png) - + ## 돕다 @@ -147,14 +147,14 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -167,7 +167,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -185,7 +185,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -208,7 +208,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -218,7 +218,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -237,7 +237,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -255,7 +255,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -277,7 +277,7 @@ GitHub 폴더 다운로더는입니다 GitHub 다운로드 버튼이 폴더에 - +
diff --git a/github-folder-downloader/README_vi.md b/github-folder-downloader/README_vi.md index 4f7d7a57f..9b5b553ce 100644 --- a/github-folder-downloader/README_vi.md +++ b/github-folder-downloader/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -75,24 +75,24 @@ - + # GitHub Folder Downloader - + ### mô tả GitHub Trình tải xuống thư mục là GitHub Một nút tải xuống đã được thêm vào thư mục,Giúp người dùng dễ dàng tải xuống các thư mục cụ thể từ kho lưu trữ。Nút tích hợp hai công cụ bên ngoài:download-directory Và DownGit,Cho phép người dùng tải xuống các thư mục chỉ bằng một cú nhấp chuột。 - + ### Chức năng - vì GitHub Thêm một thư mục để tải xuống nút。 - Cung cấp sử dụng [download-directory](https://download-directory.github.io) Và [DownGit](https://downgit.github.io) Các tùy chọn để tải xuống các thư mục。 - + ### Cách sử dụng @@ -101,7 +101,7 @@ GitHub Trình tải xuống thư mục là GitHub Một nút tải xuống đã 3. Nhấp“Tải xuống thư mục”Cái nút,Để xem các tùy chọn để tải xuống các thư mục。 - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -123,7 +123,7 @@ GitHub Trình tải xuống thư mục là GitHub Một nút tải xuống đã - + ### Hướng dẫn sửa đổi @@ -133,7 +133,7 @@ Sửa đổi từ người dùng[Eric Kwok](https://greasyfork.org/zh-CN/users/2 ![1.png](https://s2.loli.net/2024/08/28/XiKjIu85TVBwzMa.png) - + ## Giúp đỡ @@ -147,14 +147,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -167,7 +167,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -185,7 +185,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -208,7 +208,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -218,7 +218,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -237,7 +237,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -255,7 +255,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -277,7 +277,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-folder-downloader/README_zh-TW.md b/github-folder-downloader/README_zh-TW.md index b5e4d5ca2..a1c677ce4 100644 --- a/github-folder-downloader/README_zh-TW.md +++ b/github-folder-downloader/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -75,24 +75,24 @@ - + # GitHub Folder Downloader - + ### 描述 GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使用戶可以更輕鬆地從倉庫中下載特定的文件夾。該按鈕集成了兩個外部工具:download-directory 和 DownGit,允許用戶一鍵下載文件夾。 - + ### 功能 - 為 GitHub 文件夾添加下載按鈕。 - 提供使用 [download-directory](https://download-directory.github.io) 和 [DownGit](https://downgit.github.io) 下載文件夾的選項。 - + ### 使用方法 @@ -101,7 +101,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 3. 點擊“下載文件夾”按鈕,以查看下載文件夾的選項。 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -123,7 +123,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + ### 修改說明 @@ -133,7 +133,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 ![1.png](https://s2.loli.net/2024/08/28/XiKjIu85TVBwzMa.png) - + ## 使用幫助 @@ -147,14 +147,14 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -167,7 +167,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找網頁相關腳本 > @@ -185,7 +185,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -208,7 +208,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找Google相關腳本 > @@ -218,7 +218,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -237,7 +237,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找成人腳本 > @@ -255,7 +255,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找自動翻譯 > @@ -266,7 +266,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - + > ### 🔍你可能在找社交媒體腳本 > @@ -277,7 +277,7 @@ GitHub 文件夾下載器為 GitHub 文件夾添加了一個下載按鈕,使 - +
diff --git a/github-gist-copier/README.md b/github-gist-copier/README.md index 3ed7428d9..ece7b20bf 100644 --- a/github-gist-copier/README.md +++ b/github-gist-copier/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -119,7 +119,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -141,7 +141,7 @@ - + ## 使用帮助 @@ -155,13 +155,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -173,7 +173,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -212,7 +212,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -221,7 +221,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -239,7 +239,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -256,7 +256,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -266,7 +266,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -277,7 +277,7 @@ - +
diff --git a/github-gist-copier/README_en.md b/github-gist-copier/README_en.md index 842fb50e7..ad597c7d7 100644 --- a/github-gist-copier/README_en.md +++ b/github-gist-copier/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -119,7 +119,7 @@ - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -141,7 +141,7 @@ - + ## Help @@ -155,13 +155,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -173,7 +173,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -190,7 +190,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -212,7 +212,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -221,7 +221,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -239,7 +239,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -256,7 +256,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -266,7 +266,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -277,7 +277,7 @@ Recommended browser and script manager: - +
diff --git a/github-gist-copier/README_ko.md b/github-gist-copier/README_ko.md index b3183c35e..334e6d7be 100644 --- a/github-gist-copier/README_ko.md +++ b/github-gist-copier/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -119,7 +119,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -141,7 +141,7 @@ - + ## 돕다 @@ -155,13 +155,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -173,7 +173,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -190,7 +190,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -212,7 +212,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -221,7 +221,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -239,7 +239,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -256,7 +256,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -277,7 +277,7 @@ - +
diff --git a/github-gist-copier/README_vi.md b/github-gist-copier/README_vi.md index 4cbe5e60e..b695a9ace 100644 --- a/github-gist-copier/README_vi.md +++ b/github-gist-copier/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -119,7 +119,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -141,7 +141,7 @@ - + ## Giúp đỡ @@ -155,13 +155,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -173,7 +173,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -190,7 +190,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -212,7 +212,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -221,7 +221,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -239,7 +239,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -256,7 +256,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -277,7 +277,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-gist-copier/README_zh-TW.md b/github-gist-copier/README_zh-TW.md index 65b816420..1dc80e1c0 100644 --- a/github-gist-copier/README_zh-TW.md +++ b/github-gist-copier/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -119,7 +119,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -141,7 +141,7 @@ - + ## 使用幫助 @@ -155,13 +155,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -173,7 +173,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -212,7 +212,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -221,7 +221,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -239,7 +239,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -256,7 +256,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -266,7 +266,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -277,7 +277,7 @@ - +
diff --git a/github-jsdelivr-link/README.md b/github-jsdelivr-link/README.md index 777b8297d..c490f7556 100644 --- a/github-jsdelivr-link/README.md +++ b/github-jsdelivr-link/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -79,7 +79,7 @@ _人民的勤务员修复失效代码_ ![l](https://greasyfork.s3.us-east-2.amazonaws.com/jftr1ms2n0mugq1wmwd90k8tzpps) - + > ### 🔍你可能在找GitHub相关脚本 > @@ -101,7 +101,7 @@ _人民的勤务员修复失效代码_ - + ## 使用帮助 @@ -115,13 +115,13 @@ _人民的勤务员修复失效代码_ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -133,7 +133,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找网页相关脚本 > @@ -150,7 +150,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -172,7 +172,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找Google相关脚本 > @@ -181,7 +181,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -199,7 +199,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找成人脚本 > @@ -216,7 +216,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找自动翻译 > @@ -226,7 +226,7 @@ _人民的勤务员修复失效代码_ - + > ### 🔍你可能在找社交媒体脚本 > @@ -237,7 +237,7 @@ _人民的勤务员修复失效代码_ - +
diff --git a/github-jsdelivr-link/README_en.md b/github-jsdelivr-link/README_en.md index 7db275d7c..fabf58203 100644 --- a/github-jsdelivr-link/README_en.md +++ b/github-jsdelivr-link/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -79,7 +79,7 @@ _People’s serviceman fixes invalid code_ ![l](https://greasyfork.s3.us-east-2.amazonaws.com/jftr1ms2n0mugq1wmwd90k8tzpps) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -101,7 +101,7 @@ _People’s serviceman fixes invalid code_ - + ## Help @@ -115,13 +115,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -133,7 +133,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -150,7 +150,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -172,7 +172,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -181,7 +181,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -199,7 +199,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -216,7 +216,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -226,7 +226,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -237,7 +237,7 @@ Recommended browser and script manager: - +
diff --git a/github-jsdelivr-link/README_ko.md b/github-jsdelivr-link/README_ko.md index a73f34784..db62f452e 100644 --- a/github-jsdelivr-link/README_ko.md +++ b/github-jsdelivr-link/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -79,7 +79,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ ![l](https://greasyfork.s3.us-east-2.amazonaws.com/jftr1ms2n0mugq1wmwd90k8tzpps) - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -101,7 +101,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + ## 돕다 @@ -115,13 +115,13 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -133,7 +133,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -150,7 +150,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -172,7 +172,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -181,7 +181,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -199,7 +199,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -216,7 +216,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -226,7 +226,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -237,7 +237,7 @@ _사람들의 군인은 잘못된 코드를 수정합니다_ - +
diff --git a/github-jsdelivr-link/README_vi.md b/github-jsdelivr-link/README_vi.md index d7c2601c6..3e2f37bae 100644 --- a/github-jsdelivr-link/README_vi.md +++ b/github-jsdelivr-link/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -79,7 +79,7 @@ _Người phục vụ mọi người sửa mã không hợp lệ_ ![l](https://greasyfork.s3.us-east-2.amazonaws.com/jftr1ms2n0mugq1wmwd90k8tzpps) - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -101,7 +101,7 @@ _Người phục vụ mọi người sửa mã không hợp lệ_ - + ## Giúp đỡ @@ -115,13 +115,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -133,7 +133,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -150,7 +150,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -172,7 +172,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -181,7 +181,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -199,7 +199,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -216,7 +216,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -226,7 +226,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -237,7 +237,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-jsdelivr-link/README_zh-TW.md b/github-jsdelivr-link/README_zh-TW.md index f238b23ae..c8f9d6057 100644 --- a/github-jsdelivr-link/README_zh-TW.md +++ b/github-jsdelivr-link/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -79,7 +79,7 @@ _人民的勤務員修復失效代碼_ ![l](https://greasyfork.s3.us-east-2.amazonaws.com/jftr1ms2n0mugq1wmwd90k8tzpps) - + > ### 🔍你可能在找GitHub相關腳本 > @@ -101,7 +101,7 @@ _人民的勤務員修復失效代碼_ - + ## 使用幫助 @@ -115,13 +115,13 @@ _人民的勤務員修復失效代碼_ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -133,7 +133,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找網頁相關腳本 > @@ -150,7 +150,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -172,7 +172,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找Google相關腳本 > @@ -181,7 +181,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -199,7 +199,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找成人腳本 > @@ -216,7 +216,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找自動翻譯 > @@ -226,7 +226,7 @@ _人民的勤務員修復失效代碼_ - + > ### 🔍你可能在找社交媒體腳本 > @@ -237,7 +237,7 @@ _人民的勤務員修復失效代碼_ - +
diff --git a/github-linguist-expand/README.md b/github-linguist-expand/README.md index 7dc6176f6..b59fc177b 100644 --- a/github-linguist-expand/README.md +++ b/github-linguist-expand/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -130,7 +130,7 @@ ![1.png](https://s2.loli.net/2024/09/24/NlaYfsZdcW7hTr5.png) - + > ### 🔍你可能在找GitHub相关脚本 > @@ -153,7 +153,7 @@ - + ## 使用帮助 @@ -167,14 +167,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -187,7 +187,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -238,7 +238,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -257,7 +257,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -275,7 +275,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -286,7 +286,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -297,7 +297,7 @@ - +
diff --git a/github-linguist-expand/README_en.md b/github-linguist-expand/README_en.md index c5446ddc6..de218e25e 100644 --- a/github-linguist-expand/README_en.md +++ b/github-linguist-expand/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -130,7 +130,7 @@ In the repository page,You can see the following display: ![1.png](https://s2.loli.net/2024/09/24/NlaYfsZdcW7hTr5.png) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -153,7 +153,7 @@ In the repository page,You can see the following display: - + ## Help @@ -167,14 +167,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -187,7 +187,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -205,7 +205,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -238,7 +238,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -257,7 +257,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -275,7 +275,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -286,7 +286,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -297,7 +297,7 @@ Recommended browser and script manager: - +
diff --git a/github-linguist-expand/README_ko.md b/github-linguist-expand/README_ko.md index 4e568469a..da6c7d398 100644 --- a/github-linguist-expand/README_ko.md +++ b/github-linguist-expand/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -130,7 +130,7 @@ ![1.png](https://s2.loli.net/2024/09/24/NlaYfsZdcW7hTr5.png) - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -153,7 +153,7 @@ - + ## 돕다 @@ -167,14 +167,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -187,7 +187,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -205,7 +205,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -228,7 +228,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -238,7 +238,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -257,7 +257,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -275,7 +275,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -286,7 +286,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -297,7 +297,7 @@ - +
diff --git a/github-linguist-expand/README_vi.md b/github-linguist-expand/README_vi.md index d0be1f9bd..fefbaa371 100644 --- a/github-linguist-expand/README_vi.md +++ b/github-linguist-expand/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -130,7 +130,7 @@ Trong trang cơ sở mã,Bạn có thể thấy màn hình sau: ![1.png](https://s2.loli.net/2024/09/24/NlaYfsZdcW7hTr5.png) - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -153,7 +153,7 @@ Trong trang cơ sở mã,Bạn có thể thấy màn hình sau: - + ## Giúp đỡ @@ -167,14 +167,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -187,7 +187,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -205,7 +205,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -228,7 +228,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -238,7 +238,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -257,7 +257,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -275,7 +275,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -286,7 +286,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -297,7 +297,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-linguist-expand/README_zh-TW.md b/github-linguist-expand/README_zh-TW.md index f55f1c3fe..1cacdfcb7 100644 --- a/github-linguist-expand/README_zh-TW.md +++ b/github-linguist-expand/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -130,7 +130,7 @@ ![1.png](https://s2.loli.net/2024/09/24/NlaYfsZdcW7hTr5.png) - + > ### 🔍你可能在找GitHub相關腳本 > @@ -153,7 +153,7 @@ - + ## 使用幫助 @@ -167,14 +167,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -187,7 +187,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -238,7 +238,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -257,7 +257,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -275,7 +275,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -286,7 +286,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -297,7 +297,7 @@ - +
diff --git a/github-no-copilot/README.md b/github-no-copilot/README.md index e5a1a6cfe..6f48478bd 100644 --- a/github-no-copilot/README.md +++ b/github-no-copilot/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -117,7 +117,7 @@ MIT - + > ### 🔍你可能在找GitHub相关脚本 > @@ -139,7 +139,7 @@ MIT - + ## 使用帮助 @@ -153,13 +153,13 @@ MIT **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -171,7 +171,7 @@ MIT - + > ### 🔍你可能在找网页相关脚本 > @@ -188,7 +188,7 @@ MIT - + > ### 🔍你可能在找GitHub相关脚本 > @@ -210,7 +210,7 @@ MIT - + > ### 🔍你可能在找Google相关脚本 > @@ -219,7 +219,7 @@ MIT - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -237,7 +237,7 @@ MIT - + > ### 🔍你可能在找成人脚本 > @@ -254,7 +254,7 @@ MIT - + > ### 🔍你可能在找自动翻译 > @@ -264,7 +264,7 @@ MIT - + > ### 🔍你可能在找社交媒体脚本 > @@ -275,7 +275,7 @@ MIT - +
diff --git a/github-no-copilot/README_en.md b/github-no-copilot/README_en.md index 0e98b1c0f..dc7e824d8 100644 --- a/github-no-copilot/README_en.md +++ b/github-no-copilot/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -117,7 +117,7 @@ After use: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -139,7 +139,7 @@ After use: - + ## Help @@ -153,13 +153,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -171,7 +171,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -188,7 +188,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -210,7 +210,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -219,7 +219,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -237,7 +237,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -254,7 +254,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -264,7 +264,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -275,7 +275,7 @@ Recommended browser and script manager: - +
diff --git a/github-no-copilot/README_ko.md b/github-no-copilot/README_ko.md index e617cd3f1..327ac4ff8 100644 --- a/github-no-copilot/README_ko.md +++ b/github-no-copilot/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -117,7 +117,7 @@ MIT - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -139,7 +139,7 @@ MIT - + ## 돕다 @@ -153,13 +153,13 @@ MIT **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -171,7 +171,7 @@ MIT - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -188,7 +188,7 @@ MIT - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -210,7 +210,7 @@ MIT - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -219,7 +219,7 @@ MIT - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -237,7 +237,7 @@ MIT - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -254,7 +254,7 @@ MIT - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -264,7 +264,7 @@ MIT - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -275,7 +275,7 @@ MIT - +
diff --git a/github-no-copilot/README_vi.md b/github-no-copilot/README_vi.md index f68ad23a2..eebfa1b7d 100644 --- a/github-no-copilot/README_vi.md +++ b/github-no-copilot/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -117,7 +117,7 @@ Sau khi sử dụng: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -139,7 +139,7 @@ Sau khi sử dụng: - + ## Giúp đỡ @@ -153,13 +153,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -171,7 +171,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -188,7 +188,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -210,7 +210,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -219,7 +219,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -237,7 +237,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -254,7 +254,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -264,7 +264,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -275,7 +275,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-no-copilot/README_zh-TW.md b/github-no-copilot/README_zh-TW.md index 68c28774b..b212c6825 100644 --- a/github-no-copilot/README_zh-TW.md +++ b/github-no-copilot/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -117,7 +117,7 @@ MIT - + > ### 🔍你可能在找GitHub相關腳本 > @@ -139,7 +139,7 @@ MIT - + ## 使用幫助 @@ -153,13 +153,13 @@ MIT **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -171,7 +171,7 @@ MIT - + > ### 🔍你可能在找網頁相關腳本 > @@ -188,7 +188,7 @@ MIT - + > ### 🔍你可能在找GitHub相關腳本 > @@ -210,7 +210,7 @@ MIT - + > ### 🔍你可能在找Google相關腳本 > @@ -219,7 +219,7 @@ MIT - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -237,7 +237,7 @@ MIT - + > ### 🔍你可能在找成人腳本 > @@ -254,7 +254,7 @@ MIT - + > ### 🔍你可能在找自動翻譯 > @@ -264,7 +264,7 @@ MIT - + > ### 🔍你可能在找社交媒體腳本 > @@ -275,7 +275,7 @@ MIT - +
diff --git a/github-notification-inbox-toggle/README.md b/github-notification-inbox-toggle/README.md index 636723d5a..b69830a07 100644 --- a/github-notification-inbox-toggle/README.md +++ b/github-notification-inbox-toggle/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -102,7 +102,7 @@ GitHub 增强通知页面的使用体验,提供按钮快速筛选与管理通 - + ## 使用帮助 @@ -116,14 +116,14 @@ GitHub 增强通知页面的使用体验,提供按钮快速筛选与管理通 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-notification-inbox-toggle/README_en.md b/github-notification-inbox-toggle/README_en.md index e60c26d9d..74d6386bd 100644 --- a/github-notification-inbox-toggle/README_en.md +++ b/github-notification-inbox-toggle/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -102,7 +102,7 @@ GitHub Enhance the user experience of notification page,Provide buttons to qui - + ## Help @@ -116,14 +116,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/github-notification-inbox-toggle/README_ko.md b/github-notification-inbox-toggle/README_ko.md index ca7670c71..1dc0d8960 100644 --- a/github-notification-inbox-toggle/README_ko.md +++ b/github-notification-inbox-toggle/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -102,7 +102,7 @@ GitHub 알림 페이지의 사용자 경험을 향상시킵니다,알림 컨 - + ## 돕다 @@ -116,14 +116,14 @@ GitHub 알림 페이지의 사용자 경험을 향상시킵니다,알림 컨 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/github-notification-inbox-toggle/README_vi.md b/github-notification-inbox-toggle/README_vi.md index a970cfb5f..df316841e 100644 --- a/github-notification-inbox-toggle/README_vi.md +++ b/github-notification-inbox-toggle/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -102,7 +102,7 @@ GitHub Nâng cao trải nghiệm người dùng của trang thông báo,Cung c - + ## Giúp đỡ @@ -116,14 +116,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/github-notification-inbox-toggle/README_zh-TW.md b/github-notification-inbox-toggle/README_zh-TW.md index 8d10fb629..8f088db29 100644 --- a/github-notification-inbox-toggle/README_zh-TW.md +++ b/github-notification-inbox-toggle/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -102,7 +102,7 @@ GitHub 增強通知頁面的使用體驗,提供按鈕快速篩選與管理通 - + ## 使用幫助 @@ -116,14 +116,14 @@ GitHub 增強通知頁面的使用體驗,提供按鈕快速篩選與管理通 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/github-raw-file-plus/README.md b/github-raw-file-plus/README.md index 435e5a0ac..322f3db16 100644 --- a/github-raw-file-plus/README.md +++ b/github-raw-file-plus/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -72,17 +72,17 @@ - + # Github 复制原始文件 URL 与下载文件 - + ## 描述 此用户脚本在 GitHub 文件行末尾添加按钮,以便用户复制原始文件 URL 和下载文件。按钮包括“复制原始文件 URL”按钮和“下载文件”按钮。 - + ## 功能 @@ -92,7 +92,7 @@ - 下载按钮触发文件下载。 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -114,25 +114,25 @@ - + ## 兼容性 - 适用于 GitHub 网站。 - + ## 许可证 MIT 许可证 - + ## 支持 如有问题,请访问 [支持页面](https://github.com/ChinaGodMan/UserScripts/issues)。 - + ## 感谢 @@ -141,7 +141,7 @@ MIT 许可证 ![Snipaste_2024-08-28_05-14-50.png](https://s2.loli.net/2024/08/28/QolM627BS8Avd9b.png) - + ## 使用帮助 @@ -155,14 +155,14 @@ MIT 许可证 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -175,7 +175,7 @@ MIT 许可证 - + > ### 🔍你可能在找网页相关脚本 > @@ -193,7 +193,7 @@ MIT 许可证 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -216,7 +216,7 @@ MIT 许可证 - + > ### 🔍你可能在找Google相关脚本 > @@ -226,7 +226,7 @@ MIT 许可证 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -245,7 +245,7 @@ MIT 许可证 - + > ### 🔍你可能在找成人脚本 > @@ -263,7 +263,7 @@ MIT 许可证 - + > ### 🔍你可能在找自动翻译 > @@ -274,7 +274,7 @@ MIT 许可证 - + > ### 🔍你可能在找社交媒体脚本 > @@ -285,7 +285,7 @@ MIT 许可证 - +
diff --git a/github-raw-file-plus/README_en.md b/github-raw-file-plus/README_en.md index e0993d26a..0abaaad29 100644 --- a/github-raw-file-plus/README_en.md +++ b/github-raw-file-plus/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -72,17 +72,17 @@ - + # Github Copy Raw File URL and Download File - + ## Description This userscript adds buttons at the end of each file line on GitHub to allow users to copy the raw file URL and download the file. The buttons include "Copy Raw File URL" and "Download File". - + ## Features @@ -91,7 +91,7 @@ This userscript adds buttons at the end of each file line on GitHub to allow use - The copy button copies the raw file URL to the clipboard. - The download button initiates the file download. - + ## Installation Steps @@ -99,25 +99,25 @@ This userscript adds buttons at the end of each file line on GitHub to allow use 2. Create a new script and paste the script code. 3. Save and enable the script. - + ## Compatibility - Works on GitHub website. - + ## License MIT License - + ## Support For issues, visit the [support page](https://github.com/ChinaGodMan/UserScripts/issues). - + ## grateful @@ -126,7 +126,7 @@ The script is modified from user **[Kamikaze](https://greasyfork.org/zh-CN/users ![Snipaste_2024-08-28_05-14-50.png](https://s2.loli.net/2024/08/28/QolM627BS8Avd9b.png) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -148,7 +148,7 @@ The script is modified from user **[Kamikaze](https://greasyfork.org/zh-CN/users - + ## Help @@ -162,14 +162,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -182,7 +182,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -200,7 +200,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -223,7 +223,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -233,7 +233,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -270,7 +270,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -281,7 +281,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -292,7 +292,7 @@ Recommended browser and script manager: - +
diff --git a/github-raw-file-plus/README_ko.md b/github-raw-file-plus/README_ko.md index f8e7ca2ee..7a5af7b1f 100644 --- a/github-raw-file-plus/README_ko.md +++ b/github-raw-file-plus/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -72,17 +72,17 @@ - + # Github 원본 파일을 복사하십시오 URL 다운로드 파일로 - + ## 설명하다 이 사용자 스크립트입니다 GitHub 파일 줄 끝에 추가하십시오단추,사용자를 위해원본 파일을 복사하십시오 URL 그리고파일을 다운로드하십시오。버튼에는 포함됩니다“원본 파일을 복사하십시오 URL”버튼과“파일을 다운로드하십시오”단추。 - + ## 기능 @@ -92,7 +92,7 @@ - 다운로드 버튼 파일 다운로드를 트리거합니다。 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -114,25 +114,25 @@ - + ## 호환성 - 적용 가능 GitHub 웹 사이트。 - + ## 특허 MIT 특허 - + ## 지원하다 문제가있는 경우,방문하십시오 [지원 페이지](https://github.com/ChinaGodMan/UserScripts/issues)。 - + ## 고마워하는 @@ -141,7 +141,7 @@ MIT 특허 ![Snipaste_2024-08-28_05-14-50.png](https://s2.loli.net/2024/08/28/QolM627BS8Avd9b.png) - + ## 돕다 @@ -155,14 +155,14 @@ MIT 특허 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -175,7 +175,7 @@ MIT 특허 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -193,7 +193,7 @@ MIT 특허 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -216,7 +216,7 @@ MIT 특허 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -226,7 +226,7 @@ MIT 특허 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -245,7 +245,7 @@ MIT 특허 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -263,7 +263,7 @@ MIT 특허 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -274,7 +274,7 @@ MIT 특허 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -285,7 +285,7 @@ MIT 특허 - +
diff --git a/github-raw-file-plus/README_vi.md b/github-raw-file-plus/README_vi.md index 41034123d..39d64d208 100644 --- a/github-raw-file-plus/README_vi.md +++ b/github-raw-file-plus/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -72,17 +72,17 @@ - + # Github Sao chép tệp gốc URL Với các tập tin tải xuống - + ## mô tả Tập lệnh người dùng này là GitHub Thêm ở cuối dòng tệpCái nút,Cho người dùngSao chép tệp gốc URL VàTải xuống tệp。Các nút bao gồm“Sao chép tệp gốc URL”Nút và“Tải xuống tệp”Cái nút。 - + ## Chức năng @@ -92,7 +92,7 @@ Tập lệnh người dùng này là GitHub Thêm ở cuối dòng tệpCái nú - Tải xuống nút Trình kích hoạt tải xuống。 - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -114,25 +114,25 @@ Tập lệnh người dùng này là GitHub Thêm ở cuối dòng tệpCái nú - + ## khả năng tương thích - Áp dụng cho GitHub trang web。 - + ## giấy phép MIT giấy phép - + ## ủng hộ Nếu có bất kỳ vấn đề,Vui lòng truy cập [Trang hỗ trợ](https://github.com/ChinaGodMan/UserScripts/issues)。 - + ## tri ân @@ -141,7 +141,7 @@ Sửa đổi tập lệnh từ người dùng **[Kamikaze](https://greasyfork.or ![Snipaste_2024-08-28_05-14-50.png](https://s2.loli.net/2024/08/28/QolM627BS8Avd9b.png) - + ## Giúp đỡ @@ -155,14 +155,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -175,7 +175,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -193,7 +193,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -216,7 +216,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -226,7 +226,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -245,7 +245,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -263,7 +263,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -274,7 +274,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -285,7 +285,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-raw-file-plus/README_zh-TW.md b/github-raw-file-plus/README_zh-TW.md index 992b19c5b..a1dc5aa83 100644 --- a/github-raw-file-plus/README_zh-TW.md +++ b/github-raw-file-plus/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -72,17 +72,17 @@ - + # Github 複製原始文件 URL 與下載文件 - + ## 描述 此用戶腳本在 GitHub 文件行末尾添加按鈕,以便用户複製原始文件 URL 和下載文件。按鈕包括“複製原始文件 URL”按鈕和“下載文件”按鈕。 - + ## 功能 @@ -92,7 +92,7 @@ - 下載按鈕觸發文件下載。 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -114,25 +114,25 @@ - + ## 相容性 - 適用於 GitHub 網站。 - + ## 許可證 MIT 許可證 - + ## 支持 如有問題,請訪問 [支持頁面](https://github.com/ChinaGodMan/UserScripts/issues)。 - + ## 感謝 @@ -141,7 +141,7 @@ MIT 許可證 ![Snipaste_2024-08-28_05-14-50.png](https://s2.loli.net/2024/08/28/QolM627BS8Avd9b.png) - + ## 使用幫助 @@ -155,14 +155,14 @@ MIT 許可證 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -175,7 +175,7 @@ MIT 許可證 - + > ### 🔍你可能在找網頁相關腳本 > @@ -193,7 +193,7 @@ MIT 許可證 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -216,7 +216,7 @@ MIT 許可證 - + > ### 🔍你可能在找Google相關腳本 > @@ -226,7 +226,7 @@ MIT 許可證 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -245,7 +245,7 @@ MIT 許可證 - + > ### 🔍你可能在找成人腳本 > @@ -263,7 +263,7 @@ MIT 許可證 - + > ### 🔍你可能在找自動翻譯 > @@ -274,7 +274,7 @@ MIT 許可證 - + > ### 🔍你可能在找社交媒體腳本 > @@ -285,7 +285,7 @@ MIT 許可證 - +
diff --git a/github-repo-size-view/CHANGELOG.md b/github-repo-size-view/CHANGELOG.md index a0f253acd..d14f0a954 100644 --- a/github-repo-size-view/CHANGELOG.md +++ b/github-repo-size-view/CHANGELOG.md @@ -1,5 +1,11 @@ # **🛠️ GitHub Repo Size+ 升级日志** +### **📅 2026.6.6.1** + +**修复**: 修复无法获取已登录用户的私人存储库问题
+ +--- + ### **📅 2026.3.16.1** **新增**: 在个人资料页显示`查看 Gist 资料`
![2026.03.16](https://files.seeusercontent.com/2026/03/16/1Kqb/pic_1773644853242.png)
来自[GitHub: View User Gists](https://greasyfork.org/zh-CN/scripts/559202)
diff --git a/github-repo-size-view/README.md b/github-repo-size-view/README.md index e1817283c..22ef827e4 100644 --- a/github-repo-size-view/README.md +++ b/github-repo-size-view/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -65,6 +65,9 @@

Download:Github | ⭐Greasy Fork

更新记录

🛠️ GitHub Repo Size+ 升级日志

+

📅 2026.6.6.1

+

修复: 修复无法获取已登录用户的私人存储库问题

+

📅 2026.3.16.1

新增: 在个人资料页显示查看 Gist 资料
2026.03.16
来自GitHub: View User Gists
修复: 修改Code按钮查找逻辑

@@ -209,44 +212,44 @@ 🧑‍💻 **[qbmiller]**(https://github.com/qbmiller) ⇒📜 [github_enhance](https://github.com/qbmiller/UserScripts) - + ## 预览 1. **显示仓库大小:** ![preview1.png](https://s2.loli.net/2024/08/05/RwxPkGZoNiYTM1m.png) ![preview2.png](https://s2.loli.net/2024/08/05/iC7kbFJUm3xcMTt.png) - + 2. **仓库内快捷跳转:** ![Snipaste_2024-10-05_07-22-09.png](https://s2.loli.net/2024/10/05/NhexpPYWIwSvgrA.png) ![info.png](https://s2.loli.net/2024/10/05/x3BTk2frW8eqFOa.png) ![GIF 2024-10-5 07-21-25.gif](https://s2.loli.net/2024/10/05/fOGDTQ3SZzro4tj.gif) - + 3. **不活跃开发警告:** ![years.png](https://s2.loli.net/2024/09/25/cL9GuhJCkK68lsV.png) ![6months.png](https://s2.loli.net/2024/09/25/gxzAbUdr4W5BCcT.png) - + 4. **仓库便捷功能:** ![he.png](https://s2.loli.net/2024/10/06/DBytY8Qx6qWRoPH.png) - + 5. **快速删除自己的仓库:** ![delonpro.png](https://s2.loli.net/2024/10/06/l9538YRreGaktx6.png) - + 6. **[通知页面](https://github.com/notifications)点击显示项目信息,感谢:[qbmiller](https://github.com/qbmiller) 的脚本[github_enhance](https://github.com/qbmiller/UserScripts) 代码 [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** !![Image](https://github.com/user-attachments/assets/6bf713f9-4d17-4844-bd5d-36a0172af9fe) - + 7. **[通知页面](https://github.com/notifications)悬浮显示项目信息,感谢:[qbmiller](https://github.com/qbmiller) 的脚本[github_enhance](https://github.com/qbmiller/UserScripts) 代码 [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** ![2025.04.15](https://s2.loli.net/2025/04/15/NuBUJ54zVjoWsrw.gif) - + @@ -277,7 +280,7 @@ 2. 从[此处](https://update.greasyfork.org/scripts/502291/Github%20Repo%20Size%2B.user.js)安装脚本。 3. (可选)如果您想查看私有存储库的大小,请参阅以下说明。 - + ## 查看私有仓库大小 @@ -291,7 +294,7 @@ 4. 点击脚本菜单`Set GitHub Token`,填入刚刚生成的令牌。 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -313,7 +316,7 @@ - + ## 感谢 @@ -325,7 +328,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- 作者 **[chen gang](https://greasyfork.org/zh-CN/users/720983)** 发布的脚本 [GitHub Delete Repositories](https://greasyfork.org/zh-CN/scripts/500173) - + ## 使用帮助 @@ -339,14 +342,14 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -359,7 +362,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找网页相关脚本 > @@ -377,7 +380,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找GitHub相关脚本 > @@ -400,7 +403,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找Google相关脚本 > @@ -410,7 +413,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -429,7 +432,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找成人脚本 > @@ -447,7 +450,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找自动翻译 > @@ -458,7 +461,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - + > ### 🔍你可能在找社交媒体脚本 > @@ -469,7 +472,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome插件 [GitHub-Web- - +
diff --git a/github-repo-size-view/README_en.md b/github-repo-size-view/README_en.md index 9d423b953..a88f8bed7 100644 --- a/github-repo-size-view/README_en.md +++ b/github-repo-size-view/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -65,6 +65,9 @@

Download:Github | ⭐Greasy Fork

Update record

🛠️ GitHub Repo Size+ Upgrade log

+

📅 2026.6.6.1

+

repair: Fixed an issue where private repositories of logged-in users could not be obtained

+

📅 2026.3.16.1

New: 在个人material页显示Check Gist 资料
2026.03.16
fromGitHub: View User Gists
repair: ReviseCodeButton search logic

@@ -209,44 +212,44 @@ 🧑‍💻 **[qbmiller]**(https://github.com/qbmiller) ⇒📜 [github_enhance](https://github.com/qbmiller/UserScripts) - + ## Preview 1. **Show warehouse size:** ![preview1.png](https://s2.loli.net/2024/08/05/RwxPkGZoNiYTM1m.png) ![preview2.png](https://s2.loli.net/2024/08/05/iC7kbFJUm3xcMTt.png) - + 2. **Quick jump in the warehouse:** ![Snipaste_2024-10-05_07-22-09.png](https://s2.loli.net/2024/10/05/NhexpPYWIwSvgrA.png) ![info.png](https://s2.loli.net/2024/10/05/x3BTk2frW8eqFOa.png) ![GIF 2024-10-5 07-21-25.gif](https://s2.loli.net/2024/10/05/fOGDTQ3SZzro4tj.gif) - + 3. **Inactive development warning:** ![years.png](https://s2.loli.net/2024/09/25/cL9GuhJCkK68lsV.png) ![6months.png](https://s2.loli.net/2024/09/25/gxzAbUdr4W5BCcT.png) - + 4. **Warehouse convenient function:** ![he.png](https://s2.loli.net/2024/10/06/DBytY8Qx6qWRoPH.png) - + 5. **Quickly delete your own repository:** ![delonpro.png](https://s2.loli.net/2024/10/06/l9538YRreGaktx6.png) - + 6. **[Notification page](https://github.com/notifications)Click to display project information,grateful:[qbmiller](https://github.com/qbmiller) Scripts[github_enhance](https://github.com/qbmiller/UserScripts) Code [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** !![Image](https://github.com/user-attachments/assets/6bf713f9-4d17-4844-bd5d-36a0172af9fe) - + 7. **[Notification page](https://github.com/notifications)Suspended display project information,grateful:[qbmiller](https://github.com/qbmiller) Scripts[github_enhance](https://github.com/qbmiller/UserScripts) Code [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** ![2025.04.15](https://s2.loli.net/2025/04/15/NuBUJ54zVjoWsrw.gif) - + ## 🤠 Github Enhance assistant @@ -280,7 +283,7 @@ 2. from[here](https://update.greasyfork.org/scripts/502291/Github%20Repo%20Size%2B.user.js)Installation script。 3. (Optional)If you want to see the size of your private repository,Please see instructions below。 - + ## View private repository size @@ -294,7 +297,7 @@ This token will be used to pass Github API Authenticate。 4. Click on the script menu`Set GitHub Token`,Fill in the token you just generated。 - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -316,7 +319,7 @@ This token will be used to pass Github API Authenticate。 - + ## Thanks @@ -328,7 +331,7 @@ Author **[Zach Hardesty](https://greasyfork.org/zh-CN/users/371100)** Published Author **[chen gang](https://greasyfork.org/zh-CN/users/720983)** Published Script [GitHub Delete Repositories](https://greasyfork.org/zh-CN/scripts/500173) - + ## Help @@ -342,14 +345,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -362,7 +365,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -380,7 +383,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -403,7 +406,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -413,7 +416,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -432,7 +435,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -450,7 +453,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -461,7 +464,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -472,7 +475,7 @@ Recommended browser and script manager: - +
diff --git a/github-repo-size-view/README_ko.md b/github-repo-size-view/README_ko.md index f5c5bf26c..596ef7e1c 100644 --- a/github-repo-size-view/README_ko.md +++ b/github-repo-size-view/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -65,6 +65,9 @@

Download:Github | ⭐Greasy Fork

기록 업데이트

🛠️ GitHub Repo Size+ 업그레이드 로그

+

📅 2026.6.6.1

+

수리하다: 로그인한 사용자의 개인 저장소를 얻을 수 없는 문제를 수정했습니다.

+

📅 2026.3.16.1

새로운: 在个人재료页显示확인하다 Gist 资料
2026.03.16
~에서GitHub: View User Gists
수리하다: 개정하다Code버튼 검색 로직

@@ -210,44 +213,44 @@ 🧑‍💻 **[qbmiller]**(https://github.com/qbmiller) ⇒📜 [github_enhance](https://github.com/qbmiller/UserScripts) - + ## 시사 1. **창고 크기를 보여줍니다:** ![preview1.png](https://s2.loli.net/2024/08/05/RwxPkGZoNiYTM1m.png) ![preview2.png](https://s2.loli.net/2024/08/05/iC7kbFJUm3xcMTt.png) - + 2. **창고에서 빠른 점프:** ![Snipaste_2024-10-05_07-22-09.png](https://s2.loli.net/2024/10/05/NhexpPYWIwSvgrA.png) ![info.png](https://s2.loli.net/2024/10/05/x3BTk2frW8eqFOa.png) ![GIF 2024-10-5 07-21-25.gif](https://s2.loli.net/2024/10/05/fOGDTQ3SZzro4tj.gif) - + 3. **비활성 개발 경고:** ![years.png](https://s2.loli.net/2024/09/25/cL9GuhJCkK68lsV.png) ![6months.png](https://s2.loli.net/2024/09/25/gxzAbUdr4W5BCcT.png) - + 4. **창고 편리한 기능:** ![he.png](https://s2.loli.net/2024/10/06/DBytY8Qx6qWRoPH.png) - + 5. **자신의 저장소를 빠르게 삭제하십시오:** ![delonpro.png](https://s2.loli.net/2024/10/06/l9538YRreGaktx6.png) - + 6. **[알림 페이지](https://github.com/notifications)프로젝트 정보를 표시하려면 클릭하십시오,고마워하는:[qbmiller](https://github.com/qbmiller) 스크립트[github_enhance](https://github.com/qbmiller/UserScripts) 암호 [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** !![Image](https://github.com/user-attachments/assets/6bf713f9-4d17-4844-bd5d-36a0172af9fe) - + 7. **[알림 페이지](https://github.com/notifications)정지 된 디스플레이 프로젝트 정보,고마워하는:[qbmiller](https://github.com/qbmiller) 스크립트[github_enhance](https://github.com/qbmiller/UserScripts) 암호 [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** ![2025.04.15](https://s2.loli.net/2025/04/15/NuBUJ54zVjoWsrw.gif) - + ## 🤠 Github 강화 된 비서 @@ -276,7 +279,7 @@ 2. ~에서[여기](https://update.greasyfork.org/scripts/502291/Github%20Repo%20Size%2B.user.js)설치 스크립트。 3. (선택 과목)개인 저장소의 크기를 보려면,아래 지침을 참조하십시오。 - + ## 개인 저장소 크기를 확인하십시오 @@ -290,7 +293,7 @@ 4. 스크립트 메뉴를 클릭하십시오`Set GitHub Token`,방금 생성 한 토큰을 채우십시오。 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -312,7 +315,7 @@ - + ## 고마워하는 @@ -324,7 +327,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu 작가 **[chen gang](https://greasyfork.org/zh-CN/users/720983)** 게시 된 스크립트 [GitHub Delete Repositories](https://greasyfork.org/zh-CN/scripts/500173) - + ## 돕다 @@ -338,14 +341,14 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -358,7 +361,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -376,7 +379,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -399,7 +402,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -409,7 +412,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -428,7 +431,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -446,7 +449,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -457,7 +460,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -468,7 +471,7 @@ GitHub: 작가 **[zvizvi](https://github.com/zvizvi)** Chrome플러그인 [GitHu - +
diff --git a/github-repo-size-view/README_vi.md b/github-repo-size-view/README_vi.md index 9b8052f52..d1da8e0b3 100644 --- a/github-repo-size-view/README_vi.md +++ b/github-repo-size-view/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -65,6 +65,9 @@

Download:Github | ⭐Greasy Fork

Cập nhật bản ghi

🛠️ GitHub Repo Size+ Nhật ký nâng cấp

+

📅 2026.6.6.1

+

Sửa chữa: Đã khắc phục sự cố không thể lấy được kho riêng của người dùng đã đăng nhập

+

📅 2026.3.16.1

Mới: 在个人vật liệu页显示Kiểm tra Gist 资料
2026.03.16
từGitHub: View User Gists
Sửa chữa: Ôn lạiCodeLogic tìm kiếm nút

@@ -210,44 +213,44 @@ 🧑‍💻 **[qbmiller]**(https://github.com/qbmiller) ⇒📜 [github_enhance](https://github.com/qbmiller/UserScripts) - + ## Xem trước 1. **Hiển thị kích thước kho:** ![preview1.png](https://s2.loli.net/2024/08/05/RwxPkGZoNiYTM1m.png) ![preview2.png](https://s2.loli.net/2024/08/05/iC7kbFJUm3xcMTt.png) - + 2. **Nhảy nhanh vào kho:** ![Snipaste_2024-10-05_07-22-09.png](https://s2.loli.net/2024/10/05/NhexpPYWIwSvgrA.png) ![info.png](https://s2.loli.net/2024/10/05/x3BTk2frW8eqFOa.png) ![GIF 2024-10-5 07-21-25.gif](https://s2.loli.net/2024/10/05/fOGDTQ3SZzro4tj.gif) - + 3. **Cảnh báo phát triển không hoạt động:** ![years.png](https://s2.loli.net/2024/09/25/cL9GuhJCkK68lsV.png) ![6months.png](https://s2.loli.net/2024/09/25/gxzAbUdr4W5BCcT.png) - + 4. **Kho chức năng thuận tiện:** ![he.png](https://s2.loli.net/2024/10/06/DBytY8Qx6qWRoPH.png) - + 5. **Nhanh chóng xóa kho lưu trữ của riêng bạn:** ![delonpro.png](https://s2.loli.net/2024/10/06/l9538YRreGaktx6.png) - + 6. **[Trang thông báo](https://github.com/notifications)Nhấp để hiển thị thông tin dự án,tri ân:[qbmiller](https://github.com/qbmiller) Kịch bản[github_enhance](https://github.com/qbmiller/UserScripts) Mã số [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** !![Image](https://github.com/user-attachments/assets/6bf713f9-4d17-4844-bd5d-36a0172af9fe) - + 7. **[Trang thông báo](https://github.com/notifications)Thông tin dự án hiển thị bị đình chỉ,tri ân:[qbmiller](https://github.com/qbmiller) Kịch bản[github_enhance](https://github.com/qbmiller/UserScripts) Mã số [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** ![2025.04.15](https://s2.loli.net/2025/04/15/NuBUJ54zVjoWsrw.gif) - + ## 🤠 Github Trợ lý nâng cao @@ -276,7 +279,7 @@ 2. từ[Đây](https://update.greasyfork.org/scripts/502291/Github%20Repo%20Size%2B.user.js)Tập lệnh cài đặt。 3. (Không bắt buộc)Nếu bạn muốn xem kích thước của kho lưu trữ riêng,Vui lòng tham khảo các hướng dẫn bên dưới。 - + ## Kiểm tra kích thước kho lưu trữ riêng @@ -290,7 +293,7 @@ Mã thông báo sẽ được sử dụng để vượt qua Github API Thực hi 4. Nhấp vào menu tập lệnh`Set GitHub Token`,Điền vào mã thông báo mà bạn vừa tạo。 - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -312,7 +315,7 @@ Mã thông báo sẽ được sử dụng để vượt qua Github API Thực hi - + ## tri ân @@ -324,7 +327,7 @@ tác giả **[Zach Hardesty](https://greasyfork.org/zh-CN/users/371100)** Các k tác giả **[chen gang](https://greasyfork.org/zh-CN/users/720983)** Các kịch bản được xuất bản [GitHub Delete Repositories](https://greasyfork.org/zh-CN/scripts/500173) - + ## Giúp đỡ @@ -338,14 +341,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -358,7 +361,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -376,7 +379,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -399,7 +402,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -409,7 +412,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -428,7 +431,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -446,7 +449,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -457,7 +460,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -468,7 +471,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-repo-size-view/README_zh-TW.md b/github-repo-size-view/README_zh-TW.md index 078333231..1bfa5099a 100644 --- a/github-repo-size-view/README_zh-TW.md +++ b/github-repo-size-view/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -65,6 +65,9 @@

Download:Github | ⭐Greasy Fork

更新記錄

🛠️ GitHub Repo Size+ 升級日誌

+

📅 2026.6.6.1

+

修復: 修復無法取得已登入使用者的私人儲存庫問題

+

📅 2026.3.16.1

新增: 在个人資料页显示查看 Gist 资料
2026.03.16
來自GitHub: View User Gists
修復: 修改Code按鈕查找邏輯

@@ -211,37 +214,37 @@ 1. **顯示倉庫大小:** ![preview1.png](https://s2.loli.net/2024/08/05/RwxPkGZoNiYTM1m.png) ![preview2.png](https://s2.loli.net/2024/08/05/iC7kbFJUm3xcMTt.png) - + 2. **倉庫內快捷跳轉:** ![Snipaste_2024-10-05_07-22-09.png](https://s2.loli.net/2024/10/05/NhexpPYWIwSvgrA.png) ![info.png](https://s2.loli.net/2024/10/05/x3BTk2frW8eqFOa.png) ![GIF 2024-10-5 07-21-25.gif](https://s2.loli.net/2024/10/05/fOGDTQ3SZzro4tj.gif) - + 3. **不活躍開發警告:** ![years.png](https://s2.loli.net/2024/09/25/cL9GuhJCkK68lsV.png) ![6months.png](https://s2.loli.net/2024/09/25/gxzAbUdr4W5BCcT.png) - + 4. **倉庫便捷功能:** ![he.png](https://s2.loli.net/2024/10/06/DBytY8Qx6qWRoPH.png) - + 5. **快速刪除自己的倉庫:** ![delonpro.png](https://s2.loli.net/2024/10/06/l9538YRreGaktx6.png) - + 6. **[通知頁面](https://github.com/notifications)點擊顯示項目信息,感謝:[qbmiller](https://github.com/qbmiller) 的腳本[github_enhance](https://github.com/qbmiller/UserScripts) 代碼 [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** !![Image](https://github.com/user-attachments/assets/6bf713f9-4d17-4844-bd5d-36a0172af9fe) - + 7. **[通知頁面](https://github.com/notifications)懸浮顯示項目信息,感謝:[qbmiller](https://github.com/qbmiller) 的腳本[github_enhance](https://github.com/qbmiller/UserScripts) 代碼 [#111](https://github.com/ChinaGodMan/UserScripts/issues/111)** ![2025.04.15](https://s2.loli.net/2025/04/15/NuBUJ54zVjoWsrw.gif) - + ## 預覽 @@ -263,7 +266,7 @@ 5.**快速刪除自己的倉庫:** ![delonpro.png](https://s2.loli.net/2024/10/06/l9538YRreGaktx6.png) - + ## 🤠 Github 增強小助手 @@ -292,7 +295,7 @@ 2. 從[此處](https://update.greasyfork.org/scripts/502291/Github%20Repo%20Size%2B.user.js)安裝腳本。 3. (可選)如果您想查看私有存儲庫的大小,請參閱以下說明。 - + ## 查看私有倉庫大小 @@ -306,7 +309,7 @@ 4. 點擊腳本菜單`Set GitHub Token`,填入剛剛生成的令牌。 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -328,7 +331,7 @@ - + ## 感謝 @@ -340,7 +343,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- 作者 **[chen gang](https://greasyfork.org/zh-CN/users/720983)** 發布的腳本 [GitHub Delete Repositories](https://greasyfork.org/zh-CN/scripts/500173) - + ## 使用幫助 @@ -354,14 +357,14 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -374,7 +377,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找網頁相關腳本 > @@ -392,7 +395,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找GitHub相關腳本 > @@ -415,7 +418,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找Google相關腳本 > @@ -425,7 +428,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -444,7 +447,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找成人腳本 > @@ -462,7 +465,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找自動翻譯 > @@ -473,7 +476,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - + > ### 🔍你可能在找社交媒體腳本 > @@ -484,7 +487,7 @@ GitHub: 作者 **[zvizvi](https://github.com/zvizvi)** Chrome外掛 [GitHub-Web- - +
diff --git a/github-repo-size-view/github-repo-size-view.user.js b/github-repo-size-view/github-repo-size-view.user.js index 2bff9bedc..d15ba5516 100644 --- a/github-repo-size-view/github-repo-size-view.user.js +++ b/github-repo-size-view/github-repo-size-view.user.js @@ -80,7 +80,7 @@ // @description:zh-HK 🤠 倉庫顯示大小:在 GitHub 的程式碼搜尋、倉庫搜尋、議題頁面、使用者倉庫清單和儲存庫頁面上,倉庫名稱旁會顯示該倉庫的大小,方便使用者快速了解倉庫的規模,最佳化選擇。不活躍開發警告:如果某個倉庫在過去六個月內沒有更新,系統會在倉庫的頂部添加提示,提醒用戶該倉庫不活躍,並顯示最後一次更新的時間。這有助於使用者判斷倉庫的活躍程度和維護狀況。倉庫內快速跳轉:在瀏覽倉庫時,使用者可以方便地查看該使用者的所有倉庫列表,提供一個快速跳到不同倉庫的入口。用戶可以快速找到和存取感興趣的其他項目,提高工作效率。使用情境:開發者:可以透過顯示倉庫大小和活躍警告,快速篩選出適當的庫進行開發,避免使用不再維護的項目。專案管理者:透過快速跳轉功能,方便管理和協調多個項目,提高工作效率。學習者:在學習新科技時,可以更方便地找到相關的開源項目,快速查看專案的活躍程度和規模。 🤠 // @description:fr-CA 🤠 Taille d’affichage de l’entrepôt : sur la recherche de code, la recherche d’entrepôt, la page de problèmes, la liste d’entrepôts d’utilisateurs et la page de référentiel de GitHub, la taille de l’entrepôt sera affichée à côté du nom de l’entrepôt, permettant aux utilisateurs de comprendre rapidement l’échelle de l’entrepôt et d’optimiser leur sélection. Avertissement de développement inactif : si un référentiel n’a pas été mis à jour au cours des six derniers mois, le système ajoutera une invite en haut du référentiel pour rappeler aux utilisateurs que le référentiel est inactif et affichera l’heure de la dernière mise à jour. Cela aide les utilisateurs à déterminer l’activité et l’état de maintenance de l’entrepôt. Saut rapide dans l’entrepôt : lors de la navigation dans l’entrepôt, l’utilisateur peut facilement consulter la liste de tous les entrepôts de l’utilisateur, offrant ainsi une entrée pour accéder rapidement à différents entrepôts. Les utilisateurs peuvent trouver et accéder rapidement à d’autres projets d’intérêt, améliorant ainsi l’efficacité du travail. Scénarios d’utilisation : Développeurs : en affichant la taille de l’entrepôt et les avertissements actifs, vous pouvez rapidement filtrer les bibliothèques appropriées pour le développement et éviter d’utiliser des projets qui ne sont plus maintenus. Gestionnaire de projet : grâce à la fonction de saut rapide, il est facile de gérer et de coordonner plusieurs projets et d’améliorer l’efficacité du travail. Apprenants : lorsqu’ils apprennent de nouvelles technologies, ils peuvent plus facilement trouver des projets open source pertinents et vérifier rapidement l’activité et l’ampleur des projets. 🤠 // @namespace https://github.com/ChinaGodMan/UserScripts -// @version 2026.3.16.1 +// @version 2026.6.6.1 // @author Khalila Gazal,mshll & 人民的勤务员 // @match https://github.com/* // @run-at document-start @@ -107,7 +107,7 @@ * File Created: 2024/11/24,Sunday 12:38:48 * Author: 人民的勤务员@ChinaGodMan (china.qinwuyuan@gmail.com) * ----- - * Last Modified: 2026/03/16,Monday 15:09:30 + * Last Modified: 2026/06/06,Saturday 17:04:45 * Modified By: 人民的勤务员@ChinaGodMan (china.qinwuyuan@gmail.com) * ----- * License: MIT License @@ -528,7 +528,8 @@ const addSizeToRepos = () => { } if (pageType === 'repo') { - const reposApi = isLoggedInUser(jsn.owner.avatar_url) + // const reposApi = isLoggedInUser(jsn.owner.login) + const reposApi = isLoggedInUser_f() ? (PAT_GITHUB_TOKEN ? 'https://api.github.com/user/repos' : jsn.owner.repos_url) : jsn.owner.repos_url function fetchReposWithCache(ownerKey, reposApi, headers) { @@ -986,13 +987,8 @@ function insertReposList(links, tip = false) { } } function isLoggedInUser(avatar_url) {//从返回的json判断 - const imgElement = document.querySelector('.AppHeader-user button span span img') - if (imgElement) { - const imgSrc = imgElement.src - return imgSrc === avatar_url - } else { - return false - } + const username = location.pathname.split('/').filter(Boolean)[0] + return avatar_url.includes(username) } function getMReponame() { //获取当前移动设备页面的仓库名 return document.querySelector('#responsive-meta-container .flex-wrap') diff --git a/github-repository-navigator/README.md b/github-repository-navigator/README.md index 4810be3c1..80608a3bb 100644 --- a/github-repository-navigator/README.md +++ b/github-repository-navigator/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -97,7 +97,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub ![Snipaste_2024-11-01_19-50-13.png](https://s2.loli.net/2024/11/01/AWopjtOVhEcYKxC.png) - + > ### 🔍你可能在找GitHub相关脚本 > @@ -119,7 +119,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + ## 使用帮助 @@ -133,13 +133,13 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -151,7 +151,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找网页相关脚本 > @@ -168,7 +168,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找GitHub相关脚本 > @@ -190,7 +190,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找Google相关脚本 > @@ -199,7 +199,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -217,7 +217,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找成人脚本 > @@ -234,7 +234,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找自动翻译 > @@ -244,7 +244,7 @@ GitHub 快速跳转助手是一款专为帮助用户快速访问自己在 GitHub - + > ### 🔍你可能在找社交媒体脚本 > diff --git a/github-repository-navigator/README_en.md b/github-repository-navigator/README_en.md index 053e6ab13..48f155c0c 100644 --- a/github-repository-navigator/README_en.md +++ b/github-repository-navigator/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -97,7 +97,7 @@ GitHub Quick Jump Assistant is a tool designed to help users quickly access thei ![Snipaste_2024-11-01_19-50-13.png](https://s2.loli.net/2024/11/01/AWopjtOVhEcYKxC.png) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -119,7 +119,7 @@ GitHub Quick Jump Assistant is a tool designed to help users quickly access thei - + ## Help @@ -133,13 +133,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -151,7 +151,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -168,7 +168,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -190,7 +190,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -199,7 +199,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -217,7 +217,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -234,7 +234,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -244,7 +244,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > diff --git a/github-repository-navigator/README_ko.md b/github-repository-navigator/README_ko.md index 5e78d057f..c020bab7f 100644 --- a/github-repository-navigator/README_ko.md +++ b/github-repository-navigator/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -97,7 +97,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 ![Snipaste_2024-11-01_19-50-13.png](https://s2.loli.net/2024/11/01/AWopjtOVhEcYKxC.png) - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -119,7 +119,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + ## 돕다 @@ -133,13 +133,13 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -151,7 +151,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -168,7 +168,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -190,7 +190,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -199,7 +199,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -217,7 +217,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -234,7 +234,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -244,7 +244,7 @@ GitHub Quick Jump Assistant는 사용자가 빠르게 액세스 할 수 있도 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > diff --git a/github-repository-navigator/README_vi.md b/github-repository-navigator/README_vi.md index efe78617e..4650b8875 100644 --- a/github-repository-navigator/README_vi.md +++ b/github-repository-navigator/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -97,7 +97,7 @@ GitHub Trợ lý nhảy nhanh là một người được thiết kế đặc bi ![Snipaste_2024-11-01_19-50-13.png](https://s2.loli.net/2024/11/01/AWopjtOVhEcYKxC.png) - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -119,7 +119,7 @@ GitHub Trợ lý nhảy nhanh là một người được thiết kế đặc bi - + ## Giúp đỡ @@ -133,13 +133,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -151,7 +151,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -168,7 +168,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -190,7 +190,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -199,7 +199,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -217,7 +217,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -234,7 +234,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -244,7 +244,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > diff --git a/github-repository-navigator/README_zh-TW.md b/github-repository-navigator/README_zh-TW.md index 5dd0fc869..322e11168 100644 --- a/github-repository-navigator/README_zh-TW.md +++ b/github-repository-navigator/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -97,7 +97,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub ![Snipaste_2024-11-01_19-50-13.png](https://s2.loli.net/2024/11/01/AWopjtOVhEcYKxC.png) - + > ### 🔍你可能在找GitHub相關腳本 > @@ -119,7 +119,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + ## 使用幫助 @@ -133,13 +133,13 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -151,7 +151,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找網頁相關腳本 > @@ -168,7 +168,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找GitHub相關腳本 > @@ -190,7 +190,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找Google相關腳本 > @@ -199,7 +199,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -217,7 +217,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找成人腳本 > @@ -234,7 +234,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找自動翻譯 > @@ -244,7 +244,7 @@ GitHub 快速跳轉助手是一款專為幫助用戶快速訪問自己在 GitHub - + > ### 🔍你可能在找社交媒體腳本 > diff --git a/github-repository-navigator/github-repository-navigator.user.js b/github-repository-navigator/github-repository-navigator.user.js index f6ded8ef3..01620fc97 100644 --- a/github-repository-navigator/github-repository-navigator.user.js +++ b/github-repository-navigator/github-repository-navigator.user.js @@ -121,7 +121,7 @@ // @description:fr-CA 🤠 Assistant de saut rapide d’entrepôt GitHub, spécialement conçu pour aider les utilisateurs à accéder rapidement à leurs propres entrepôts sur GitHub. Il génère un bouton en haut de la barre de navigation. // @namespace https://github.com/ChinaGodMan/UserScripts // @version 2024.12.18.1956 -// @author mshll & 人民的勤务员 +// @author mshll & 人民的勤务员 // @match https://github.com/* // @grant none // @run-at document-start diff --git a/github-sort-by-date/README.md b/github-sort-by-date/README.md index 28df5cac4..92291338b 100644 --- a/github-sort-by-date/README.md +++ b/github-sort-by-date/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,27 +69,27 @@ - + # GitHub 按日期排序 此用户脚本将 GitHub 仓库中的文件自动按日期降序排列,方便查看最新更新的文件。 - + ## 特性 - 页面加载时自动按更新日期排序文件。 - 适用于所有 GitHub 仓库。 - + ## 使用 - 脚本将在页面加载时自动按日期排序文件,无需手动干预。 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -111,7 +111,7 @@ - + ## 修改来源 @@ -120,7 +120,7 @@ ![1.png](https://s2.loli.net/2024/08/26/UjuVOtcvks8FPaB.png) - + ## 使用帮助 @@ -134,14 +134,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -154,7 +154,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -172,7 +172,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -195,7 +195,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -224,7 +224,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -242,7 +242,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -264,7 +264,7 @@ - +
diff --git a/github-sort-by-date/README_en.md b/github-sort-by-date/README_en.md index 757d97fbc..d2fef523f 100644 --- a/github-sort-by-date/README_en.md +++ b/github-sort-by-date/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,26 +69,26 @@ - + # GitHub Sort by date This userscript will GitHub Files in the warehouse are automatically sorted in descending order by date,Conveniently view the latest updated files。 - + ## characteristic - Automatically sort files by updated date when page loads。 - Applies to all GitHub storehouse。 - + ## use - Script will automatically sort files by date on page load,No manual intervention required。 - + ## Modify source @@ -96,7 +96,7 @@ author[androidcn](https://greasyfork.org/zh-CN/users/18158)script[Github Sort by ![1.png](https://s2.loli.net/2024/08/26/UjuVOtcvks8FPaB.png) - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -118,7 +118,7 @@ author[androidcn](https://greasyfork.org/zh-CN/users/18158)script[Github Sort by - + ## Help @@ -132,14 +132,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -152,7 +152,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -170,7 +170,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -193,7 +193,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -203,7 +203,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -222,7 +222,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -240,7 +240,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -251,7 +251,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -262,7 +262,7 @@ Recommended browser and script manager: - +
diff --git a/github-sort-by-date/README_ko.md b/github-sort-by-date/README_ko.md index ee1d8e2cc..01e268590 100644 --- a/github-sort-by-date/README_ko.md +++ b/github-sort-by-date/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,41 +69,41 @@ - + # GitHub 날짜별로 정렬 이 사용자 스크립트는 GitHub 창고에 있는 파일은 날짜별로 내림차순으로 자동 정렬됩니다.,최신 업데이트 파일을 편리하게 확인하세요。 - + ## 특성 - 페이지가 로드될 때 업데이트된 날짜별로 파일을 자동으로 정렬합니다.。 - 모두에게 적용됩니다 GitHub 창고。 - + ## 사용 - 스크립트는 페이지 로드 시 날짜별로 파일을 자동으로 정렬합니다.,수동 개입이 필요하지 않습니다.。 - + ## 소스 수정 작가[androidcn](https://greasyfork.org/zh-CN/users/18158)적각본[Github 파일 업데이트 날짜별로 정렬](https://greasyfork.org/scripts/492514),느낌감사해요작가~의성실한노동지혜지혜 ![1.png](https://s2.loli.net/2024/08/26/UjuVOtcvks8FPaB.png) - + ## 만들다사용돕다돕다 - + ## 돕다 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -125,7 +125,7 @@ - + ## 돕다 @@ -139,14 +139,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -159,7 +159,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -177,7 +177,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -200,7 +200,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -210,7 +210,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -229,7 +229,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -247,7 +247,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -258,7 +258,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -269,7 +269,7 @@ - +
diff --git a/github-sort-by-date/README_vi.md b/github-sort-by-date/README_vi.md index 1285e293b..7614bb81a 100644 --- a/github-sort-by-date/README_vi.md +++ b/github-sort-by-date/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,41 +69,41 @@ - + # GitHub Sắp xếp theo ngày Bản mô tả người dùng này sẽ GitHub Các file trong kho được tự động sắp xếp theo thứ tự giảm dần theo ngày,Thuận tiện xem các tập tin cập nhật mới nhất。 - + ## đặc trưng - Tự động sắp xếp tệp theo ngày cập nhật khi tải trang。 - Áp dụng cho tất cả GitHub nhà kho。 - + ## sử dụng - Tập lệnh sẽ tự động sắp xếp tệp theo ngày tải trang,Không cần can thiệp thủ công。 - + ## Sửa đổi nguồn tác giả[androidcn](https://greasyfork.org/zh-CN/users/18158)kịch bản[Github Sắp xếp theo ngày cập nhật tập tin](https://greasyfork.org/scripts/492514),Cảm giácCảm ơntác giảcủasiêng năngnhân côngkhôn ngoanKhôn ngoan ![1.png](https://s2.loli.net/2024/08/26/UjuVOtcvks8FPaB.png) - + ## làmsử dụnggiúp đỡgiúp đỡ - + ## Giúp đỡ - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -125,7 +125,7 @@ tác giả[androidcn](https://greasyfork.org/zh-CN/users/18158)kịch bản[Gith - + ## Giúp đỡ @@ -139,14 +139,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -159,7 +159,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -177,7 +177,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -200,7 +200,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -210,7 +210,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -229,7 +229,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -258,7 +258,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -269,7 +269,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-sort-by-date/README_zh-TW.md b/github-sort-by-date/README_zh-TW.md index d205bafc1..ceb682ba4 100644 --- a/github-sort-by-date/README_zh-TW.md +++ b/github-sort-by-date/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,27 +69,27 @@ - + # GitHub 按日期排序 此用戶腳本將 GitHub 倉庫中的文件自動按日期降序排列,方便查看最新更新的文件。 - + ## 特性 - 頁面加載時自動按更新日期排序文件。 - 適用於所有 GitHub 倉庫。 - + ## 使用 - 腳本將在頁面加載時自動按日期排序文件,無需手動干預。 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -111,7 +111,7 @@ - + ## 修改來源 @@ -120,7 +120,7 @@ ![1.png](https://s2.loli.net/2024/08/26/UjuVOtcvks8FPaB.png) - + ## 使用幫助 @@ -134,14 +134,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -154,7 +154,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -172,7 +172,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -195,7 +195,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -224,7 +224,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -242,7 +242,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -264,7 +264,7 @@ - +
diff --git a/github-starred-repo-note/README.md b/github-starred-repo-note/README.md index 5c6ae85b6..323287945 100644 --- a/github-starred-repo-note/README.md +++ b/github-starred-repo-note/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -110,7 +110,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -132,7 +132,7 @@ - + ## 使用帮助 @@ -146,13 +146,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -164,7 +164,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -212,7 +212,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -230,7 +230,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -247,7 +247,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -257,7 +257,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -268,7 +268,7 @@ - +
diff --git a/github-starred-repo-note/README_en.md b/github-starred-repo-note/README_en.md index d566a26bd..785783b1d 100644 --- a/github-starred-repo-note/README_en.md +++ b/github-starred-repo-note/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -110,7 +110,7 @@ Here you can upload and download your notes to Gist
- + > ### 🔍You may be looking forGitHubRelated scripts > @@ -132,7 +132,7 @@ Here you can upload and download your notes to Gist
- + ## Help @@ -146,13 +146,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -164,7 +164,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -181,7 +181,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -203,7 +203,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -212,7 +212,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -230,7 +230,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -247,7 +247,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -257,7 +257,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -268,7 +268,7 @@ Recommended browser and script manager: - +
diff --git a/github-starred-repo-note/README_ko.md b/github-starred-repo-note/README_ko.md index 3bf59fe09..233442ea7 100644 --- a/github-starred-repo-note/README_ko.md +++ b/github-starred-repo-note/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -110,7 +110,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -132,7 +132,7 @@ - + ## 돕다 @@ -146,13 +146,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -164,7 +164,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -181,7 +181,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -203,7 +203,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -212,7 +212,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -230,7 +230,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -247,7 +247,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -257,7 +257,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -268,7 +268,7 @@ - +
diff --git a/github-starred-repo-note/README_vi.md b/github-starred-repo-note/README_vi.md index f235dcb64..83da0f428 100644 --- a/github-starred-repo-note/README_vi.md +++ b/github-starred-repo-note/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -110,7 +110,7 @@ Tại đây bạn có thể tải lên và tải ghi chú của mình lên Gist< - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -132,7 +132,7 @@ Tại đây bạn có thể tải lên và tải ghi chú của mình lên Gist< - + ## Giúp đỡ @@ -146,13 +146,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -164,7 +164,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -181,7 +181,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -203,7 +203,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -212,7 +212,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -230,7 +230,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -257,7 +257,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -268,7 +268,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-starred-repo-note/README_zh-TW.md b/github-starred-repo-note/README_zh-TW.md index abed8cbd5..1bb7037f8 100644 --- a/github-starred-repo-note/README_zh-TW.md +++ b/github-starred-repo-note/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -110,7 +110,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -132,7 +132,7 @@ - + ## 使用幫助 @@ -146,13 +146,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -164,7 +164,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -212,7 +212,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -230,7 +230,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -247,7 +247,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -257,7 +257,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -268,7 +268,7 @@ - +
diff --git a/github-to-deepwiki/README.md b/github-to-deepwiki/README.md index 4b7a767cd..ff3784ef5 100644 --- a/github-to-deepwiki/README.md +++ b/github-to-deepwiki/README.md @@ -41,7 +41,7 @@ Gmail - +
推荐使用:
Support
@@ -50,7 +50,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -94,7 +94,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -116,7 +116,7 @@ - + ## 使用帮助 @@ -130,13 +130,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -148,7 +148,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -187,7 +187,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -231,7 +231,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -252,7 +252,7 @@ - +
diff --git a/github-to-deepwiki/README_en.md b/github-to-deepwiki/README_en.md index 1b120c89a..460464e52 100644 --- a/github-to-deepwiki/README_en.md +++ b/github-to-deepwiki/README_en.md @@ -41,7 +41,7 @@ Gmail - +
Recommended use:
Support
@@ -50,7 +50,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -94,7 +94,7 @@ - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -116,7 +116,7 @@ - + ## Help @@ -130,13 +130,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -148,7 +148,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -165,7 +165,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -187,7 +187,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -196,7 +196,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -214,7 +214,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -231,7 +231,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -241,7 +241,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - +
diff --git a/github-to-deepwiki/README_ko.md b/github-to-deepwiki/README_ko.md index 974d47f89..b87cbd5f9 100644 --- a/github-to-deepwiki/README_ko.md +++ b/github-to-deepwiki/README_ko.md @@ -41,7 +41,7 @@ Gmail - +
권장 사용:
Support
@@ -50,7 +50,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -94,7 +94,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -116,7 +116,7 @@ - + ## 돕다 @@ -130,13 +130,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -148,7 +148,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -165,7 +165,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -187,7 +187,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -196,7 +196,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -214,7 +214,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -231,7 +231,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -241,7 +241,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -252,7 +252,7 @@ - +
diff --git a/github-to-deepwiki/README_vi.md b/github-to-deepwiki/README_vi.md index ad5489cd2..c142a6167 100644 --- a/github-to-deepwiki/README_vi.md +++ b/github-to-deepwiki/README_vi.md @@ -41,7 +41,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -50,7 +50,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -94,7 +94,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -116,7 +116,7 @@ - + ## Giúp đỡ @@ -130,13 +130,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -148,7 +148,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -165,7 +165,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -187,7 +187,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -196,7 +196,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -231,7 +231,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -241,7 +241,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -252,7 +252,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/github-to-deepwiki/README_zh-TW.md b/github-to-deepwiki/README_zh-TW.md index 9ae848d1c..f5c735bff 100644 --- a/github-to-deepwiki/README_zh-TW.md +++ b/github-to-deepwiki/README_zh-TW.md @@ -41,7 +41,7 @@ Gmail - +
推薦使用:
Support
@@ -50,7 +50,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -94,7 +94,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -116,7 +116,7 @@ - + ## 使用幫助 @@ -130,13 +130,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -148,7 +148,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -187,7 +187,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -231,7 +231,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -252,7 +252,7 @@ - +
diff --git a/google-advanced-search/README.md b/google-advanced-search/README.md index a354c947e..396b394a0 100644 --- a/google-advanced-search/README.md +++ b/google-advanced-search/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -76,13 +76,13 @@ - + # Google 高级搜索助手 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。 - + ## 功能 @@ -107,7 +107,7 @@ ![PC_en.png](https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png) - + > ### 🔍你可能在找Google相关脚本 > @@ -116,7 +116,7 @@ - + ## 使用帮助 @@ -130,14 +130,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -150,7 +150,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -168,7 +168,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -201,7 +201,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -220,7 +220,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -238,7 +238,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -249,7 +249,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -260,7 +260,7 @@ - +
diff --git a/google-advanced-search/README_en.md b/google-advanced-search/README_en.md index 1c8e6a417..2248a779a 100644 --- a/google-advanced-search/README_en.md +++ b/google-advanced-search/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -76,13 +76,13 @@ - + # Google Advanced Search Assistant This is a user script that adds an advanced search form to Google. It adds a collapsible advanced search form at the top of the page, allowing you to search for information with more precision. - + ## Features @@ -99,7 +99,7 @@ This is a user script that adds an advanced search form to Google. It adds a col - The script can save previous search options, so the form will be automatically filled when opening a new page. - Provides a "Clear" button to clear the form data. - + ## Usage @@ -112,7 +112,7 @@ This is a user script that adds an advanced search form to Google. It adds a col Note: This script is specifically designed for the Google search page and can only be used on Google search pages. - + ## Author @@ -122,7 +122,7 @@ The script is modified from the user **[shiquda](https://greasyfork.org/users/93 ![PC_en.png](https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png) - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -131,7 +131,7 @@ The script is modified from the user **[shiquda](https://greasyfork.org/users/93 - + ## Help @@ -145,14 +145,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -165,7 +165,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -183,7 +183,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -216,7 +216,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -235,7 +235,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -253,7 +253,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -264,7 +264,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -275,7 +275,7 @@ Recommended browser and script manager: - +
diff --git a/google-advanced-search/README_ko.md b/google-advanced-search/README_ko.md index ae9a8ef4e..1d00b98ae 100644 --- a/google-advanced-search/README_ko.md +++ b/google-advanced-search/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -76,13 +76,13 @@ - + # Google 고급 검색 어시스턴트 이것은 for입니다 Google 고급 검색 양식을 추가하는 사용자 스크립트。페이지 상단에 숨겨진 고급 검색 양식을 추가 할 수 있습니다.,정보를보다 정확하게 검색 할 수 있습니다。 - + ## 기능 @@ -107,7 +107,7 @@ ![PC_en.png](https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png) - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -116,7 +116,7 @@ - + ## 돕다 @@ -130,14 +130,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -150,7 +150,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -168,7 +168,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -191,7 +191,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -201,7 +201,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -220,7 +220,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -238,7 +238,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -249,7 +249,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -260,7 +260,7 @@ - +
diff --git a/google-advanced-search/README_vi.md b/google-advanced-search/README_vi.md index 02a482114..972a33601 100644 --- a/google-advanced-search/README_vi.md +++ b/google-advanced-search/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -76,13 +76,13 @@ - + # Google Trợ lý tìm kiếm nâng cao Đây là một Google Tập lệnh người dùng để thêm các biểu mẫu tìm kiếm nâng cao。Nó có thể thêm một biểu mẫu tìm kiếm nâng cao ẩn ở đầu trang,Cho phép bạn tìm kiếm thông tin chính xác hơn。 - + ## Chức năng @@ -107,7 +107,7 @@ Tập lệnh được sửa đổi từ **[shiquda](https://greasyfork.org/users ![PC_en.png](https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png) - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -116,7 +116,7 @@ Tập lệnh được sửa đổi từ **[shiquda](https://greasyfork.org/users - + ## Giúp đỡ @@ -130,14 +130,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -150,7 +150,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -168,7 +168,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -191,7 +191,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -201,7 +201,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -220,7 +220,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -238,7 +238,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -249,7 +249,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -260,7 +260,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/google-advanced-search/README_zh-TW.md b/google-advanced-search/README_zh-TW.md index 9066db677..f0266914f 100644 --- a/google-advanced-search/README_zh-TW.md +++ b/google-advanced-search/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -76,13 +76,13 @@ - + # Google 高級搜索助手 這是一個為 Google 添加高級搜索表單的用戶腳本。它能在頁面頂部添加一個可隱藏的高級搜索表單,使您能夠更精確地搜索信息。 - + ## 功能 @@ -107,7 +107,7 @@ ![PC_en.png](https://s2.loli.net/2024/08/05/MXF8JdpqnyreuRf.png) - + > ### 🔍你可能在找Google相關腳本 > @@ -116,7 +116,7 @@ - + ## 使用幫助 @@ -130,14 +130,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -150,7 +150,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -168,7 +168,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -201,7 +201,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -220,7 +220,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -238,7 +238,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -249,7 +249,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -260,7 +260,7 @@ - +
diff --git a/google-block-search-sites/README.md b/google-block-search-sites/README.md index 35d6847ef..1d3cb7ddf 100644 --- a/google-block-search-sites/README.md +++ b/google-block-search-sites/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,7 +69,7 @@ - + ## 使用帮助 @@ -83,13 +83,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找Google相关脚本 > @@ -99,7 +99,7 @@ - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -112,7 +112,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -130,7 +130,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -153,7 +153,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -163,7 +163,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -182,7 +182,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -200,7 +200,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -211,7 +211,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -222,7 +222,7 @@ - +
diff --git a/google-block-search-sites/README_en.md b/google-block-search-sites/README_en.md index f98b12645..238bae1c6 100644 --- a/google-block-search-sites/README_en.md +++ b/google-block-search-sites/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,7 +69,7 @@ - + ## Help @@ -83,13 +83,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -99,7 +99,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -112,7 +112,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -130,7 +130,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -153,7 +153,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -163,7 +163,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -182,7 +182,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -200,7 +200,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -211,7 +211,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -222,7 +222,7 @@ Recommended browser and script manager: - +
diff --git a/google-block-search-sites/README_ko.md b/google-block-search-sites/README_ko.md index 8b51cf0a7..e46443c61 100644 --- a/google-block-search-sites/README_ko.md +++ b/google-block-search-sites/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,7 +69,7 @@ - + ## 돕다 @@ -83,13 +83,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -99,7 +99,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -112,7 +112,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -130,7 +130,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -153,7 +153,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -163,7 +163,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -182,7 +182,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -200,7 +200,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -211,7 +211,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -222,7 +222,7 @@ - +
diff --git a/google-block-search-sites/README_vi.md b/google-block-search-sites/README_vi.md index 282dd68e0..8fc856716 100644 --- a/google-block-search-sites/README_vi.md +++ b/google-block-search-sites/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,7 +69,7 @@ - + ## Giúp đỡ @@ -83,13 +83,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -99,7 +99,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -112,7 +112,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -130,7 +130,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -153,7 +153,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -163,7 +163,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -182,7 +182,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -200,7 +200,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -211,7 +211,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -222,7 +222,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/google-block-search-sites/README_zh-TW.md b/google-block-search-sites/README_zh-TW.md index 0997d469c..07453f0c2 100644 --- a/google-block-search-sites/README_zh-TW.md +++ b/google-block-search-sites/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,7 +69,7 @@ - + ## 使用幫助 @@ -83,13 +83,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找Google相關腳本 > @@ -99,7 +99,7 @@ - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -112,7 +112,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -130,7 +130,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -153,7 +153,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -163,7 +163,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -182,7 +182,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -200,7 +200,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -211,7 +211,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -222,7 +222,7 @@ - +
diff --git a/greasyfork-discussion-watcher/README.md b/greasyfork-discussion-watcher/README.md index 685df120e..80b203d46 100644 --- a/greasyfork-discussion-watcher/README.md +++ b/greasyfork-discussion-watcher/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -101,7 +101,7 @@ - + # GreasyFork 通知助手 @@ -109,7 +109,7 @@ 一个 Tampermonkey 脚本,用于在 GreasyFork 上增强讨论列表功能。当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。 - + ## 功能 @@ -117,7 +117,7 @@ - **自动更新:** 脚本会定期检查讨论的更新,并在有新回复时提醒你。 - **信息提取:** 从网页上提取讨论标题、时间戳和用户名,并将其整理到模态窗口中。 - + ## 自定义检查时间 @@ -133,7 +133,7 @@ 你可以根据需要修改 `delay` 配置项的值,以调整脚本检查讨论更新的频率。例如,如果你希望每15分钟检查一次,可以将 `delay` 设置为 `15m`。 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -151,7 +151,7 @@ - + ## 项目与反馈 @@ -159,7 +159,7 @@ - **支持与问题反馈:** [报告问题](https://github.com/ChinaGodMan/UserScripts/issues) - + ## 使用帮助 @@ -173,14 +173,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -211,7 +211,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -234,7 +234,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -281,7 +281,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -292,7 +292,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -303,7 +303,7 @@ - +
diff --git a/greasyfork-discussion-watcher/README_en.md b/greasyfork-discussion-watcher/README_en.md index 7620f06c8..572dc557d 100644 --- a/greasyfork-discussion-watcher/README_en.md +++ b/greasyfork-discussion-watcher/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -101,13 +101,13 @@ - + # GreasyFork Discussion Watcher A Tampermonkey script designed to enhance the discussion list functionality on GreasyFork. When there are new replies to your scripts or discussions you are involved in, the script will display the latest discussion content in a modal window on the webpage. - + ## Features @@ -115,7 +115,7 @@ A Tampermonkey script designed to enhance the discussion list functionality on G - **Automatic Updates:** The script periodically checks for discussion updates and notifies you when there are new replies. - **Information Extraction:** Extracts discussion titles, timestamps, and usernames from the webpage and organizes them into the modal window. - + ## Custom Check Interval @@ -130,7 +130,7 @@ The script uses the `delay` configuration option to set the interval for checkin You can modify the value of the `delay` configuration option as needed to adjust how often the script checks for discussion updates. For example, if you want to check every 15 minutes, you can set `delay` to `15m`. - + ## Project and Feedback @@ -140,7 +140,7 @@ You can modify the value of the `delay` configuration option as needed to adjust ![Snipaste_2024-09-02_12-30-03.png](https://s2.loli.net/2024/09/02/Ftpq1KomRcALjIE.png) - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -158,7 +158,7 @@ You can modify the value of the `delay` configuration option as needed to adjust - + ## Help @@ -172,14 +172,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -192,7 +192,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -210,7 +210,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -233,7 +233,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -243,7 +243,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -262,7 +262,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -280,7 +280,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -291,7 +291,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -302,7 +302,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-discussion-watcher/README_ko.md b/greasyfork-discussion-watcher/README_ko.md index d16950404..50eb60191 100644 --- a/greasyfork-discussion-watcher/README_ko.md +++ b/greasyfork-discussion-watcher/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -101,7 +101,7 @@ - + # GreasyFork 알림 어시스턴트 @@ -109,7 +109,7 @@ 하나 Tampermonkey 스크립트,사용 GreasyFork 강화 된 토론 목록 기능。스크립트 또는 토론에 새로운 답장이 있으면,스크립트는 웹 페이지의 모달 창에 최신 토론 내용을 표시합니다.。 - + ## 기능 @@ -117,7 +117,7 @@ - **자동 업데이트:** 스크립트는 정기적으로 토론 업데이트를 확인합니다,새로운 답장이있을 때 상기시켜줍니다。 - **정보 추출:** 웹 페이지에서 토론 제목을 추출합니다、타임 스탬프 및 사용자 이름,모달 창으로 정리하십시오。 - + ## 사용자 정의 점검 시간 @@ -133,7 +133,7 @@ 필요에 따라 수정할 수 있습니다 `delay` 구성 항목의 값,토론의 빈도를 조정합니다。예를 들어,당신이 모든 것을 원한다면15몇 분만 확인하십시오,할 수 있다 `delay` AS를 설정합니다 `15m`。 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -151,7 +151,7 @@ - + ## 프로젝트 및 피드백 @@ -159,7 +159,7 @@ - **지원 및 문제 피드백:** [문제를보고하십시오](https://github.com/ChinaGodMan/UserScripts/issues) - + ## 돕다 @@ -173,14 +173,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -193,7 +193,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -211,7 +211,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -234,7 +234,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -244,7 +244,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -263,7 +263,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -281,7 +281,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -292,7 +292,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -303,7 +303,7 @@ - +
diff --git a/greasyfork-discussion-watcher/README_vi.md b/greasyfork-discussion-watcher/README_vi.md index 998e8a6a3..d52fa780a 100644 --- a/greasyfork-discussion-watcher/README_vi.md +++ b/greasyfork-discussion-watcher/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -101,7 +101,7 @@ - + # GreasyFork Trợ lý thông báo @@ -109,7 +109,7 @@ một Tampermonkey Kịch bản,Được sử dụng trong GreasyFork Chức năng danh sách thảo luận nâng cao。Khi có những câu trả lời mới về kịch bản hoặc cuộc thảo luận của bạn, bạn sẽ tham gia,Kịch bản sẽ hiển thị nội dung thảo luận mới nhất trong cửa sổ phương thức trên trang web。 - + ## Chức năng @@ -117,7 +117,7 @@ một Tampermonkey Kịch bản,Được sử dụng trong GreasyFork Chức n - **Cập nhật tự động:** Kịch bản sẽ kiểm tra các bản cập nhật thảo luận thường xuyên,Và nhắc nhở bạn khi có những câu trả lời mới。 - **Khai thác thông tin:** Trích xuất các tiêu đề thảo luận từ trang web、Dấu thời gian và tên người dùng,Và sắp xếp nó vào cửa sổ phương thức。 - + ## Thời gian kiểm tra tùy chỉnh @@ -133,7 +133,7 @@ Sử dụng kịch bản `delay` Các mục cấu hình để đặt thời gian Bạn có thể sửa đổi nó khi cần thiết `delay` Giá trị của mục cấu hình,Để điều chỉnh tần suất cập nhật thảo luận。Ví dụ,Nếu bạn muốn mọi15Kiểm tra một lần trong phút,Có thể `delay` Đặt như `15m`。 - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -151,7 +151,7 @@ Bạn có thể sửa đổi nó khi cần thiết `delay` Giá trị của mụ - + ## Dự án và phản hồi @@ -159,7 +159,7 @@ Bạn có thể sửa đổi nó khi cần thiết `delay` Giá trị của mụ - **Hỗ trợ và phản hồi vấn đề:** [Báo cáo một vấn đề](https://github.com/ChinaGodMan/UserScripts/issues) - + ## Giúp đỡ @@ -173,14 +173,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -193,7 +193,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -211,7 +211,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -234,7 +234,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -244,7 +244,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -263,7 +263,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -281,7 +281,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -292,7 +292,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -303,7 +303,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-discussion-watcher/README_zh-TW.md b/greasyfork-discussion-watcher/README_zh-TW.md index 8876f091a..c8c46c92a 100644 --- a/greasyfork-discussion-watcher/README_zh-TW.md +++ b/greasyfork-discussion-watcher/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -101,7 +101,7 @@ - + # GreasyFork 通知助手 @@ -109,7 +109,7 @@ 一個 Tampermonkey 腳本,用於在 GreasyFork 上增強討論列表功能。當你的腳本或你參與的討論有新回复時,腳本會在網頁上以模態窗口顯示最新的討論內容。 - + ## 功能 @@ -117,7 +117,7 @@ - **自動更新:** 腳本會定期檢查討論的更新,並在有新回复時提醒你。 - **資訊擷取:** 從網頁上提取討論標題、時間戳和用戶名,並將其整理到模態窗口中。 - + ## 自定義檢查時間 @@ -133,7 +133,7 @@ 你可以根據需要修改 `delay` 配置項的值,以調整腳本檢查討論更新的頻率。例如,如果你希望每15分鐘檢查一次,可以將 `delay` 設置為 `15m`。 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -151,7 +151,7 @@ - + ## 項目與反饋 @@ -159,7 +159,7 @@ - **支持與問題反饋:** [報告問題](https://github.com/ChinaGodMan/UserScripts/issues) - + ## 使用幫助 @@ -173,14 +173,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -211,7 +211,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -234,7 +234,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -281,7 +281,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -292,7 +292,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -303,7 +303,7 @@ - +
diff --git a/greasyfork-link/README.md b/greasyfork-link/README.md index 6ffee8070..040474714 100644 --- a/greasyfork-link/README.md +++ b/greasyfork-link/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -80,7 +80,7 @@

- + ## 脚本功能 @@ -90,7 +90,7 @@ - 点击"取消"直接跳转到网站 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -108,11 +108,11 @@ - + ## 版本更新 - + ### 0.1 版本 @@ -122,19 +122,19 @@ - 1=打开网址 - 2=在论坛搜索 - + ### 0.6 版本 新增在脚本详情页下方增加一个更改跳转方式的选择框。 - + ### 0.7 版本 新增大人的叉子 - + ### 0.8 版本(2024 年 06 月 09 日 06:17:02) @@ -143,7 +143,7 @@ - 新增链接新窗口打开选项,默认为当前页面跳转 - + ## 使用帮助 @@ -157,14 +157,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -177,7 +177,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -195,7 +195,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -218,7 +218,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -247,7 +247,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -276,7 +276,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -287,7 +287,7 @@ - +
diff --git a/greasyfork-link/README_en.md b/greasyfork-link/README_en.md index e48c761f2..a68a8a5f2 100644 --- a/greasyfork-link/README_en.md +++ b/greasyfork-link/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -80,7 +80,7 @@ - + ## Scripting functions @@ -90,7 +90,7 @@ Script details page"Applicable to"Remove the default jump forum search under the - Click"Cancel"Jump directly to the website - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -108,11 +108,11 @@ Script details page"Applicable to"Remove the default jump forum search under the - + ## Version update - + ### 0.1 Version @@ -122,19 +122,19 @@ Script details page"Applicable to"Remove the default jump forum search under the - 1=Open the URL - 2=Search in the forum - + ### 0.6 Version Added a selection box to change the jump method below the script details page。 - + ### 0.7 Version Added adult’s fork - + ### 0.8 Version(2024 Year 06 moon 09 day 06:17:02) @@ -143,7 +143,7 @@ Added adult’s fork - Add link new window opening option,Default is the current page jump - + ## Help @@ -157,14 +157,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -177,7 +177,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -195,7 +195,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -218,7 +218,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -247,7 +247,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -265,7 +265,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -276,7 +276,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -287,7 +287,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-link/README_ko.md b/greasyfork-link/README_ko.md index fe5f4465b..c5b42a1ca 100644 --- a/greasyfork-link/README_ko.md +++ b/greasyfork-link/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -80,7 +80,7 @@ - + ## 스크립팅 기능 @@ -90,7 +90,7 @@ - 딸깍 하는 소리"취소"웹 사이트로 직접 이동하십시오 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -108,11 +108,11 @@ - + ## 버전 업데이트 - + ### 0.1 버전 @@ -122,19 +122,19 @@ - 1=URL을 엽니 다 - 2=포럼에서 검색하십시오 - + ### 0.6 버전 스크립트 세부 사항 페이지 아래의 점프 메소드를 변경하기 위해 선택 상자를 추가했습니다.。 - + ### 0.7 버전 성인 포크를 추가했습니다 - + ### 0.8 버전(2024 년도 06 달 09 낮 06:17:02) @@ -143,7 +143,7 @@ - 링크 새 창 시작 옵션을 추가합니다,기본값은 현재 페이지 점프입니다 - + ## 돕다 @@ -157,14 +157,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -177,7 +177,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -195,7 +195,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -218,7 +218,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -228,7 +228,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -247,7 +247,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -265,7 +265,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -276,7 +276,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -287,7 +287,7 @@ - +
diff --git a/greasyfork-link/README_vi.md b/greasyfork-link/README_vi.md index b3346b3df..7d1488eae 100644 --- a/greasyfork-link/README_vi.md +++ b/greasyfork-link/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -80,7 +80,7 @@ - + ## Chức năng kịch bản @@ -90,7 +90,7 @@ Trang chi tiết tập lệnh"Áp dụng cho"Xóa tìm kiếm diễn đàn nhả - Nhấp"Hủy bỏ"Nhảy trực tiếp vào trang web - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -108,11 +108,11 @@ Trang chi tiết tập lệnh"Áp dụng cho"Xóa tìm kiếm diễn đàn nhả - + ## Cập nhật phiên bản - + ### 0.1 Phiên bản @@ -122,19 +122,19 @@ Trang chi tiết tập lệnh"Áp dụng cho"Xóa tìm kiếm diễn đàn nhả - 1=Mở URL - 2=Tìm kiếm trong diễn đàn - + ### 0.6 Phiên bản Đã thêm một hộp lựa chọn để thay đổi phương thức nhảy bên dưới trang chi tiết tập lệnh。 - + ### 0.7 Phiên bản Đã thêm nĩa của người lớn - + ### 0.8 Phiên bản(2024 Năm 06 mặt trăng 09 ngày 06:17:02) @@ -143,7 +143,7 @@ Trang chi tiết tập lệnh"Áp dụng cho"Xóa tìm kiếm diễn đàn nhả - Thêm tùy chọn mở cửa sổ liên kết mới,Mặc định là bước nhảy trang hiện tại - + ## Giúp đỡ @@ -157,14 +157,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -177,7 +177,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -195,7 +195,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -218,7 +218,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -228,7 +228,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -265,7 +265,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -276,7 +276,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -287,7 +287,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-link/README_zh-TW.md b/greasyfork-link/README_zh-TW.md index 5e4f6a1f5..b48b63e63 100644 --- a/greasyfork-link/README_zh-TW.md +++ b/greasyfork-link/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -80,7 +80,7 @@ - + ## 腳本功能 @@ -90,7 +90,7 @@ - 點擊"取消"直接跳轉到網站 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -108,11 +108,11 @@ - + ## 版本更新 - + ### 0.1 版本 @@ -122,19 +122,19 @@ - 1=打開網址 - 2=在論壇搜索 - + ### 0.6 版本 新增在腳本詳情頁下方增加一個更改跳轉方式的選擇框。 - + ### 0.7 版本 新增大人的叉子 - + ### 0.8 版本(2024 年 06 月 09 天 06:17:02) @@ -143,7 +143,7 @@ - 新增鏈接新窗口打開選項,默認為當前頁面跳轉 - + ## 使用幫助 @@ -157,14 +157,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -177,7 +177,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -195,7 +195,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -218,7 +218,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -247,7 +247,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -276,7 +276,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -287,7 +287,7 @@ - +
diff --git a/greasyfork-markdown-toolbar/README.md b/greasyfork-markdown-toolbar/README.md index c3faa1c47..3e9134d27 100644 --- a/greasyfork-markdown-toolbar/README.md +++ b/greasyfork-markdown-toolbar/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -124,7 +124,7 @@ ![截图4](https://greasyfork.s3.us-east-2.amazonaws.com/u3fgy6vyn01419tqb3zvd9h96bue) - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -142,7 +142,7 @@ - + ## 使用帮助 @@ -156,13 +156,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -274,7 +274,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -285,7 +285,7 @@ - +
diff --git a/greasyfork-markdown-toolbar/README_en.md b/greasyfork-markdown-toolbar/README_en.md index 8bb9b2b99..3dcef1bbf 100644 --- a/greasyfork-markdown-toolbar/README_en.md +++ b/greasyfork-markdown-toolbar/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -125,7 +125,7 @@ If you have any bugs, bug fixes or ideas, please report at my [GitHub repo](http ![Screenshot 4](https://greasyfork.s3.us-east-2.amazonaws.com/u3fgy6vyn01419tqb3zvd9h96bue) - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -143,7 +143,7 @@ If you have any bugs, bug fixes or ideas, please report at my [GitHub repo](http - + ## Help @@ -157,14 +157,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -177,7 +177,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -195,7 +195,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -218,7 +218,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -247,7 +247,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -265,7 +265,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -276,7 +276,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -287,7 +287,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-markdown-toolbar/README_ko.md b/greasyfork-markdown-toolbar/README_ko.md index 192276a8d..83ed63680 100644 --- a/greasyfork-markdown-toolbar/README_ko.md +++ b/greasyfork-markdown-toolbar/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -124,7 +124,7 @@ ![스크린 샷4](https://greasyfork.s3.us-east-2.amazonaws.com/u3fgy6vyn01419tqb3zvd9h96bue) - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -142,7 +142,7 @@ - + ## 돕다 @@ -156,13 +156,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -175,7 +175,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -193,7 +193,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -216,7 +216,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -226,7 +226,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -245,7 +245,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -263,7 +263,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -274,7 +274,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -285,7 +285,7 @@ - +
diff --git a/greasyfork-markdown-toolbar/README_vi.md b/greasyfork-markdown-toolbar/README_vi.md index d23db8177..a2dae7f0c 100644 --- a/greasyfork-markdown-toolbar/README_vi.md +++ b/greasyfork-markdown-toolbar/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -124,7 +124,7 @@ Nếu bạn có bất kỳ bug、Đề xuất hoặc ý tưởng sửa chữa, ![Ảnh chụp màn hình4](https://greasyfork.s3.us-east-2.amazonaws.com/u3fgy6vyn01419tqb3zvd9h96bue) - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -142,7 +142,7 @@ Nếu bạn có bất kỳ bug、Đề xuất hoặc ý tưởng sửa chữa, - + ## Giúp đỡ @@ -156,13 +156,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -175,7 +175,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -193,7 +193,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -216,7 +216,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -226,7 +226,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -245,7 +245,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -263,7 +263,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -274,7 +274,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -285,7 +285,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-markdown-toolbar/README_zh-TW.md b/greasyfork-markdown-toolbar/README_zh-TW.md index f78bccc88..6a60ecbc2 100644 --- a/greasyfork-markdown-toolbar/README_zh-TW.md +++ b/greasyfork-markdown-toolbar/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -124,7 +124,7 @@ ![截圖4](https://greasyfork.s3.us-east-2.amazonaws.com/u3fgy6vyn01419tqb3zvd9h96bue) - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -142,7 +142,7 @@ - + ## 使用幫助 @@ -156,13 +156,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -274,7 +274,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -285,7 +285,7 @@ - +
diff --git a/greasyfork-ranks/README.md b/greasyfork-ranks/README.md index 673ec7361..67c4edc80 100644 --- a/greasyfork-ranks/README.md +++ b/greasyfork-ranks/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -87,7 +87,7 @@ > - [**显示Greasyfork用户注册时间,识别恶意评论**](https://greasyfork.org/scripts/529359): 如果你的脚本干涉了某些人的利益,收到恶意差评并不意外。恶意差评有两个特点,一是账号通常新注册,二是注册后不久就会给差评,且基本不会有后续活动。本脚本获取greasyfork用户注册时间,并显示在用户名旁边。如果用户名旁边显示的时间是未来的时间,那么这个用户很可能是恶意注册的账号。 - + # Greasyfork ranks @@ -115,14 +115,14 @@ - 스크립트 목록 이름 뒤에 스크립트 평가 표시 - + ## photo: ![rank.png](https://s2.loli.net/2024/08/05/wvyAz8iVGMWJjEQ.png) - + ## 使用帮助 @@ -136,14 +136,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -156,7 +156,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -174,7 +174,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -266,7 +266,7 @@ - +
diff --git a/greasyfork-ranks/README_en.md b/greasyfork-ranks/README_en.md index cd766c820..707df4fa2 100644 --- a/greasyfork-ranks/README_en.md +++ b/greasyfork-ranks/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -87,7 +87,7 @@ > - [**Greasyfork Display registration time**](https://greasyfork.org/scripts/529359): If your script interferes with the interests of some people, it is not surprising to receive malicious negative reviews. There are two characteristics of malicious negative reviews: one is that the account is usually newly registered, and the other is that the negative reviews will be given shortly after registration, and there will be basically no follow-up activities. This script gets the registration time of the greasyfork user and is displayed next to the user name. If the time displayed next to the user name is the future time, then the user is likely to be a malicious account registered. - + # Greasyfork ranks @@ -115,14 +115,14 @@ - 스크립트 목록 이름 뒤에 스크립트 평가 표시 - + ## photo: ![rank.png](https://s2.loli.net/2024/08/05/wvyAz8iVGMWJjEQ.png) - + ## Help @@ -136,14 +136,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -156,7 +156,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -174,7 +174,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -197,7 +197,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -207,7 +207,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -226,7 +226,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -244,7 +244,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -255,7 +255,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -266,7 +266,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-ranks/README_ko.md b/greasyfork-ranks/README_ko.md index 986756381..e47aaa768 100644 --- a/greasyfork-ranks/README_ko.md +++ b/greasyfork-ranks/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -87,7 +87,7 @@ > - [**Greasyfork등록 시간을 표시**](https://greasyfork.org/scripts/529359): 스크립트가 일부 사람들의 관심사를 방해한다면 악의적 인 부정적인 리뷰를받는 것은 놀라운 일이 아닙니다. 악의적 인 부정적인 검토에는 두 가지 특성이 있습니다. 하나는 계정이 일반적으로 새로 등록되어 있고 다른 하나는 등록 직후에 부정적인 검토가 제공되며 기본적으로 후속 활동이 없다는 것입니다. 이 스크립트는 Greasyfork 사용자의 등록 시간을 가져오고 사용자 이름 옆에 표시됩니다. 사용자 이름 옆에 표시되는 시간이 미래의 시간 인 경우 사용자는 악의적 인 계정 일 가능성이 높습니다. - + # Greasyfork ranks @@ -115,14 +115,14 @@ - 스크립트 목록 이름 뒤에 스크립트 평가 표시 - + ## photo: ![rank.png](https://s2.loli.net/2024/08/05/wvyAz8iVGMWJjEQ.png) - + ## 돕다 @@ -136,14 +136,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -156,7 +156,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -174,7 +174,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -197,7 +197,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -207,7 +207,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -226,7 +226,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -244,7 +244,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -255,7 +255,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ - +
diff --git a/greasyfork-ranks/README_vi.md b/greasyfork-ranks/README_vi.md index ee71e0965..1b909ee5e 100644 --- a/greasyfork-ranks/README_vi.md +++ b/greasyfork-ranks/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -87,7 +87,7 @@ > - [**Greasyfork Hiển thị thời gian đăng ký**](https://greasyfork.org/scripts/529359): Nếu kịch bản của bạn can thiệp vào lợi ích của một số người, không có gì đáng ngạc nhiên khi nhận được các đánh giá tiêu cực độc hại. Có hai đặc điểm của các đánh giá tiêu cực độc hại: Một là tài khoản thường được đăng ký mới và một đặc điểm khác là các đánh giá tiêu cực sẽ được đưa ra ngay sau khi đăng ký và về cơ bản sẽ không có hoạt động tiếp theo. Kịch bản này có thời gian đăng ký của người dùng Greasyfork và được hiển thị bên cạnh tên người dùng. Nếu thời gian hiển thị bên cạnh tên người dùng là thời gian trong tương lai, thì người dùng có thể sẽ là một tài khoản độc hại được đăng ký. - + # Greasyfork ranks @@ -115,14 +115,14 @@ - 스크립트 목록 이름 뒤에 스크립트 평가 표시 - + ## photo: ![rank.png](https://s2.loli.net/2024/08/05/wvyAz8iVGMWJjEQ.png) - + ## Giúp đỡ @@ -136,14 +136,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -156,7 +156,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -174,7 +174,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -197,7 +197,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -207,7 +207,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -226,7 +226,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -244,7 +244,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -255,7 +255,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-ranks/README_zh-TW.md b/greasyfork-ranks/README_zh-TW.md index ebda3d585..ede617633 100644 --- a/greasyfork-ranks/README_zh-TW.md +++ b/greasyfork-ranks/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -87,7 +87,7 @@ > - [**顯示Greasyfork用戶註冊時間,識別惡意評論**](https://greasyfork.org/scripts/529359): 如果你的腳本干涉了某些人的利益,收到惡意差評並不意外。惡意差評有兩個特點,一是賬號通常新註冊,二是註冊後不久就會給差評,且基本不會有後續活動。本腳本獲取greasyfork用戶註冊時間,並顯示在用戶名旁邊。如果用戶名旁邊顯示的時間是未來的時間,那麼這個用戶很可能是惡意註冊的賬號。 - + # Greasyfork ranks @@ -115,14 +115,14 @@ - 스크립트 목록 이름 뒤에 스크립트 평가 표시 - + ## photo: ![rank.png](https://s2.loli.net/2024/08/05/wvyAz8iVGMWJjEQ.png) - + ## 使用幫助 @@ -136,14 +136,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -156,7 +156,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -174,7 +174,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -266,7 +266,7 @@ - +
diff --git a/greasyfork-search/README.md b/greasyfork-search/README.md index ec89fed9f..d1570fa64 100644 --- a/greasyfork-search/README.md +++ b/greasyfork-search/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,17 +69,17 @@ - + # GreasyFork SleazyFork 谷歌搜索脚本 - + ## 描述 **GreasyFork SleazyFork 谷歌搜索脚本**是一款用户脚本,通过利用谷歌搜索增强了 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 上的脚本搜索功能。此脚本允许您使用谷歌强大的搜索引擎来搜索脚本,提供更准确和全面的搜索结果。 - + ## 用法 @@ -92,7 +92,7 @@ 2. `youtube.com tamer` > 它将使用 Greasy Fork 搜索与 "tamer" 相关的脚本,搜索范围限定在 "youtube.com" 域名内。 - + ## 特点 @@ -102,7 +102,7 @@ - **易于使用**:此用户脚本无缝集成到 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 网站,增强了现有搜索输入框的功能。您只需在查询前输入 "g "(例如,"g 脚本名称")即可启动谷歌搜索。 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -120,19 +120,19 @@ - + ## 兼容性 **GreasyFork 谷歌搜索脚本**设计用于 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 网站。它兼容支持用户脚本的现代网络浏览器,例如 Tampermonkey 和 Greasemonkey。 - + ## 修改来源 作者[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)的脚本[GreasyFork Search](https://greasyfork.org/scripts/468495),感谢作者的勤劳智慧 - + ## 使用帮助 @@ -146,14 +146,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -166,7 +166,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -184,7 +184,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -236,7 +236,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -254,7 +254,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -276,7 +276,7 @@ - +
diff --git a/greasyfork-search/README_en.md b/greasyfork-search/README_en.md index a74c20e3b..cc752582c 100644 --- a/greasyfork-search/README_en.md +++ b/greasyfork-search/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,17 +69,17 @@ - + # GreasyFork SleazyFork Scripts by Google Search - + ## Description The **GreasyFork SleazyFork Scripts by Google Search** is a user script that enhances the script search functionality on [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) by utilizing Google Search. This script allows you to search for scripts using Google's powerful search engine, providing you with more accurate and comprehensive search results. - + ## Usage @@ -92,7 +92,7 @@ Currently, there are only two features. Just type and search on the main page or 2. `youtube.com tamer` > It will use Greasy Fork to search the scripts with "tamer" on Greasy Fork with the site (domain) "youtube.com". - + ## Features @@ -101,19 +101,19 @@ Currently, there are only two features. Just type and search on the main page or - **Accurate and Comprehensive Results**: By leveraging the capabilities of Google Search, you can expect more accurate and extensive results, improving your chances of finding the desired scripts. - **Easy to Use**: The user script seamlessly integrates with the [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) website, adding the enhanced search functionality to the existing search input. You can initiate a Google search by simply entering your query preceded by "g " (e.g., "g script name"). - + ## Compatibility The **GreasyFork Scripts by Google Search** user script is designed to work with the [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) website. It is compatible with modern web browsers that support user scripts, such as Tampermonkey and Greasemonkey. - + ## Modify source The author [𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179) script [GreasyFork Search](https://greasyfork.org/scripts/468495), thank the author for his hard work and wisdom - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -131,7 +131,7 @@ The author [𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179 - + ## Help @@ -145,14 +145,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -165,7 +165,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -183,7 +183,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -216,7 +216,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -235,7 +235,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -253,7 +253,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -264,7 +264,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -275,7 +275,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-search/README_ko.md b/greasyfork-search/README_ko.md index 980184645..b52d9d193 100644 --- a/greasyfork-search/README_ko.md +++ b/greasyfork-search/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,17 +69,17 @@ - + # GreasyFork SleazyFork Google 검색 스크립트 - + ## 설명하다 **GreasyFork SleazyFork Google 검색 스크립트**사용자 스크립트입니다,Google 검색을 활용하여 향상되었습니다 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 스크립트 검색 기능 켜짐。이 스크립트는 Google의 강력한 검색 엔진을 사용하여 스크립트를 검색 할 수 있습니다.,보다 정확하고 포괄적 인 검색 결과를 제공하십시오。 - + ## 용법 @@ -92,7 +92,7 @@ 2. `youtube.com tamer` > 그것은 사용할 것입니다 Greasy Fork 검색 및 "tamer" 관련 스크립트,검색 범위는 다음으로 제한됩니다 "youtube.com" 도메인 이름으로。 - + ## 특징 @@ -102,7 +102,7 @@ - **사용하기 쉽습니다**:이 사용자 스크립트는 완벽하게 통합됩니다 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 웹 사이트,기존 검색 입력 상자의 기능이 향상되었습니다。쿼리 전에 입력하면됩니다 "g "(예를 들어,"g 스크립트 이름")Google 검색을 시작하십시오。 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -120,19 +120,19 @@ - + ## 호환성 **GreasyFork Google 검색 스크립트**설계 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 웹 사이트。사용자 스크립팅을 지원하는 최신 웹 브라우저와 호환됩니다.,예를 들어 Tampermonkey 그리고 Greasemonkey。 - + ## 소스를 수정하십시오 작가[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)스크립트[GreasyFork Search](https://greasyfork.org/scripts/468495),그의 노력과 지혜에 대한 저자에게 감사합니다 - + ## 돕다 @@ -146,14 +146,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -166,7 +166,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -184,7 +184,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -207,7 +207,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -217,7 +217,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -236,7 +236,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -254,7 +254,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -265,7 +265,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -276,7 +276,7 @@ - +
diff --git a/greasyfork-search/README_vi.md b/greasyfork-search/README_vi.md index 5c56bca17..12ffb6cbe 100644 --- a/greasyfork-search/README_vi.md +++ b/greasyfork-search/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,17 +69,17 @@ - + # GreasyFork SleazyFork Các tập lệnh tìm kiếm của Google - + ## mô tả **GreasyFork SleazyFork Các tập lệnh tìm kiếm của Google**Đó là một tập lệnh người dùng,Được tăng cường bằng cách tận dụng tìm kiếm của Google [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) Chức năng tìm kiếm tập lệnh trên。Tập lệnh này cho phép bạn tìm kiếm tập lệnh bằng công cụ tìm kiếm mạnh mẽ của Google,Cung cấp kết quả tìm kiếm chính xác và toàn diện hơn。 - + ## cách sử dụng @@ -92,7 +92,7 @@ Hiện tại chỉ có hai chức năng。Chỉ cần tìm kiếm hộp trên tr 2. `youtube.com tamer` > Nó sẽ sử dụng Greasy Fork Tìm kiếm và "tamer" Tập lệnh liên quan,Phạm vi tìm kiếm được giới hạn trong "youtube.com" Trong tên miền。 - + ## Đặc trưng @@ -102,7 +102,7 @@ Hiện tại chỉ có hai chức năng。Chỉ cần tìm kiếm hộp trên tr - **Dễ sử dụng**:Tập lệnh người dùng này được tích hợp liền mạch vào [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) trang web,Chức năng nâng cao của các hộp đầu vào tìm kiếm hiện có。Bạn chỉ cần nhập trước khi truy vấn "g "(Ví dụ,"g Tên tập lệnh")Bắt đầu tìm kiếm Google。 - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -120,19 +120,19 @@ Hiện tại chỉ có hai chức năng。Chỉ cần tìm kiếm hộp trên tr - + ## khả năng tương thích **GreasyFork Các tập lệnh tìm kiếm của Google**Được thiết kế cho [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) trang web。Nó tương thích với các trình duyệt web hiện đại hỗ trợ tập lệnh người dùng,Ví dụ Tampermonkey Và Greasemonkey。 - + ## Sửa đổi nguồn tác giả[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)Kịch bản[GreasyFork Search](https://greasyfork.org/scripts/468495),Cảm ơn tác giả vì sự chăm chỉ và trí tuệ của anh ấy - + ## Giúp đỡ @@ -146,14 +146,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -166,7 +166,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -184,7 +184,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -207,7 +207,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -217,7 +217,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -236,7 +236,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -254,7 +254,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -265,7 +265,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -276,7 +276,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-search/README_zh-TW.md b/greasyfork-search/README_zh-TW.md index bebf9c272..cd1a8f80b 100644 --- a/greasyfork-search/README_zh-TW.md +++ b/greasyfork-search/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,17 +69,17 @@ - + # GreasyFork SleazyFork 谷歌搜索腳本 - + ## 描述 **GreasyFork SleazyFork 谷歌搜索腳本**是一款用戶腳本,通過利用谷歌搜索增強了 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 上的腳本搜索功能。此腳本允許您使用谷歌強大的搜索引擎來搜索腳本,提供更準確和全面的搜索結果。 - + ## 用法 @@ -92,7 +92,7 @@ 2. `youtube.com tamer` > 它將使用 Greasy Fork 搜索與 "tamer" 相關的腳本,搜索範圍限定在 "youtube.com" 域名內。 - + ## 特點 @@ -102,7 +102,7 @@ - **易於使用**:此用戶腳本無縫集成到 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 網站,增強了現有搜索輸入框的功能。您只需在查詢前輸入 "g "(例如,"g 腳本名稱")即可啟動谷歌搜索。 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -120,19 +120,19 @@ - + ## 相容性 **GreasyFork 谷歌搜索腳本**設計用於 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 網站。它兼容支持用戶腳本的現代網絡瀏覽器,例如 Tampermonkey 和 Greasemonkey。 - + ## 修改來源 作者[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)的腳本[GreasyFork Search](https://greasyfork.org/scripts/468495),感謝作者的勤勞智慧 - + ## 使用幫助 @@ -146,14 +146,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -166,7 +166,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -184,7 +184,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -236,7 +236,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -254,7 +254,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -276,7 +276,7 @@ - +
diff --git a/greasyfork-unupdated-script/README.md b/greasyfork-unupdated-script/README.md index 3f9ebe74c..3e5d59bc3 100644 --- a/greasyfork-unupdated-script/README.md +++ b/greasyfork-unupdated-script/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -94,7 +94,7 @@ - + ## 使用帮助 @@ -108,14 +108,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/greasyfork-unupdated-script/README_en.md b/greasyfork-unupdated-script/README_en.md index d591fb037..f515e2c63 100644 --- a/greasyfork-unupdated-script/README_en.md +++ b/greasyfork-unupdated-script/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -94,7 +94,7 @@ - + ## Help @@ -108,14 +108,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/greasyfork-unupdated-script/README_ko.md b/greasyfork-unupdated-script/README_ko.md index 919862d96..e459ed1c0 100644 --- a/greasyfork-unupdated-script/README_ko.md +++ b/greasyfork-unupdated-script/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -94,7 +94,7 @@ - + ## 돕다 @@ -108,14 +108,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/greasyfork-unupdated-script/README_vi.md b/greasyfork-unupdated-script/README_vi.md index 372371e4b..f64d4559f 100644 --- a/greasyfork-unupdated-script/README_vi.md +++ b/greasyfork-unupdated-script/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -94,7 +94,7 @@ - + ## Giúp đỡ @@ -108,14 +108,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/greasyfork-unupdated-script/README_zh-TW.md b/greasyfork-unupdated-script/README_zh-TW.md index 107f54fa9..5ec1122a4 100644 --- a/greasyfork-unupdated-script/README_zh-TW.md +++ b/greasyfork-unupdated-script/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -94,7 +94,7 @@ - + ## 使用幫助 @@ -108,14 +108,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/greasyfork-user-control-panel-button/README.md b/greasyfork-user-control-panel-button/README.md index 70d88fe8a..4a712122a 100644 --- a/greasyfork-user-control-panel-button/README.md +++ b/greasyfork-user-control-panel-button/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,7 +69,7 @@ - + ## 功能说明 @@ -77,7 +77,7 @@ --- - + ## 其他说明 @@ -85,7 +85,7 @@ 强烈建议使用 **[GreasyFork 糊裱匠](https://greasyfork.org/zh-CN/scripts/497346)** 可以修复导航栏并且美化导航栏 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -105,7 +105,7 @@ --- - + ## 感谢 @@ -113,7 +113,7 @@ --- - + ## 图片 @@ -122,7 +122,7 @@ ![2.png](https://s2.loli.net/2024/08/05/sDZqO8fgEk1GzWh.png) - + ## 使用帮助 @@ -136,14 +136,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -156,7 +156,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -174,7 +174,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -266,7 +266,7 @@ - +
diff --git a/greasyfork-user-control-panel-button/README_en.md b/greasyfork-user-control-panel-button/README_en.md index a2e9d8685..b6af5fa44 100644 --- a/greasyfork-user-control-panel-button/README_en.md +++ b/greasyfork-user-control-panel-button/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,13 +69,13 @@ - + # GreasyFork: Add categories to navigation bar --- - + ## Function Description @@ -83,7 +83,7 @@ EnhanceGreasyForknavigation bar, Add user list、User favorites、User console e --- - + ## other instructions @@ -93,7 +93,7 @@ Strongly recommended to use **[GreasyFork Glue craftsman](https://greasyfork.org --- - + ## grateful @@ -101,7 +101,7 @@ Script modified from user **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/z --- - + ## picture @@ -110,7 +110,7 @@ Script modified from user **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/z ![2.png](https://s2.loli.net/2024/08/05/sDZqO8fgEk1GzWh.png) - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -128,7 +128,7 @@ Script modified from user **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/z - + ## Help @@ -142,14 +142,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -162,7 +162,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -180,7 +180,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -203,7 +203,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -213,7 +213,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -232,7 +232,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -250,7 +250,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -261,7 +261,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -272,7 +272,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-user-control-panel-button/README_ko.md b/greasyfork-user-control-panel-button/README_ko.md index 9ded270e4..a24daa08d 100644 --- a/greasyfork-user-control-panel-button/README_ko.md +++ b/greasyfork-user-control-panel-button/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,13 +69,13 @@ - + # GreasyFork: 탐색 표시줄에 카테고리 추가 --- - + ## 기능 설명 @@ -83,7 +83,7 @@ --- - + ## 기타 지침 @@ -93,7 +93,7 @@ --- - + ## 고마워하는 @@ -101,7 +101,7 @@ --- - + ## 그림 @@ -110,7 +110,7 @@ ![2.png](https://s2.loli.net/2024/08/05/sDZqO8fgEk1GzWh.png) - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -128,7 +128,7 @@ - + ## 돕다 @@ -142,14 +142,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -162,7 +162,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -180,7 +180,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -203,7 +203,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -213,7 +213,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -232,7 +232,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -250,7 +250,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -261,7 +261,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -272,7 +272,7 @@ - +
diff --git a/greasyfork-user-control-panel-button/README_vi.md b/greasyfork-user-control-panel-button/README_vi.md index 0316a7124..887568c5b 100644 --- a/greasyfork-user-control-panel-button/README_vi.md +++ b/greasyfork-user-control-panel-button/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,7 +69,7 @@ - + ## Mô tả chức năng @@ -77,7 +77,7 @@ Nâng caoGreasyForkThanh điều hướng, Thêm danh sách người dùng、Ng --- - + ## Hướng dẫn khác @@ -85,7 +85,7 @@ Nhiều dự án đã được thêm vào,Một thanh điều hướng đông đ Rất khuyến khích sử dụng **[GreasyFork Dán nhà sản xuất giàn khoan](https://greasyfork.org/zh-CN/scripts/497346)** Thanh điều hướng có thể được sửa chữa và làm đẹp - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -105,7 +105,7 @@ Rất khuyến khích sử dụng **[GreasyFork Dán nhà sản xuất giàn kho --- - + ## tri ân @@ -113,7 +113,7 @@ Sửa đổi tập lệnh từ người dùng **[𝖢𝖸 𝖥𝗎𝗇𝗀](http --- - + ## hình ảnh @@ -122,7 +122,7 @@ Sửa đổi tập lệnh từ người dùng **[𝖢𝖸 𝖥𝗎𝗇𝗀](http ![2.png](https://s2.loli.net/2024/08/05/sDZqO8fgEk1GzWh.png) - + ## Giúp đỡ @@ -136,14 +136,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -156,7 +156,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -174,7 +174,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -197,7 +197,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -207,7 +207,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -226,7 +226,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -244,7 +244,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -255,7 +255,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-user-control-panel-button/README_zh-TW.md b/greasyfork-user-control-panel-button/README_zh-TW.md index 3d52c2702..7471dac01 100644 --- a/greasyfork-user-control-panel-button/README_zh-TW.md +++ b/greasyfork-user-control-panel-button/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,13 +69,13 @@ - + # GreasyFork: 導航列增加分類 --- - + ## 功能說明 @@ -83,7 +83,7 @@ --- - + ## 其他說明 @@ -93,7 +93,7 @@ --- - + ## 感謝 @@ -101,7 +101,7 @@ --- - + ## 圖片 @@ -110,7 +110,7 @@ ![2.png](https://s2.loli.net/2024/08/05/sDZqO8fgEk1GzWh.png) - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -128,7 +128,7 @@ - + ## 使用幫助 @@ -142,14 +142,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -162,7 +162,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -180,7 +180,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -213,7 +213,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -232,7 +232,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -250,7 +250,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -261,7 +261,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -272,7 +272,7 @@ - +
diff --git a/greasyfork-user-registration-time/README.md b/greasyfork-user-registration-time/README.md index 426620110..054bbd38f 100644 --- a/greasyfork-user-registration-time/README.md +++ b/greasyfork-user-registration-time/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -155,7 +155,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -173,7 +173,7 @@ - + ## 使用帮助 @@ -187,13 +187,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -271,7 +271,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -288,7 +288,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -298,7 +298,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -309,7 +309,7 @@ - +
diff --git a/greasyfork-user-registration-time/README_en.md b/greasyfork-user-registration-time/README_en.md index 0831aa17e..d6ee7f5ab 100644 --- a/greasyfork-user-registration-time/README_en.md +++ b/greasyfork-user-registration-time/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -158,7 +158,7 @@ This script is greasyfork Various comments、The page related to the message sho - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -176,7 +176,7 @@ This script is greasyfork Various comments、The page related to the message sho - + ## Help @@ -190,13 +190,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -208,7 +208,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -225,7 +225,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -247,7 +247,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -256,7 +256,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -274,7 +274,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -291,7 +291,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -301,7 +301,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -312,7 +312,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-user-registration-time/README_ko.md b/greasyfork-user-registration-time/README_ko.md index 8b8203122..11a2b31be 100644 --- a/greasyfork-user-registration-time/README_ko.md +++ b/greasyfork-user-registration-time/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -158,7 +158,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -176,7 +176,7 @@ - + ## 돕다 @@ -190,13 +190,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -208,7 +208,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -225,7 +225,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -247,7 +247,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -256,7 +256,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -274,7 +274,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -291,7 +291,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -301,7 +301,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -312,7 +312,7 @@ - +
diff --git a/greasyfork-user-registration-time/README_vi.md b/greasyfork-user-registration-time/README_vi.md index ce029f31b..c3f104fde 100644 --- a/greasyfork-user-registration-time/README_vi.md +++ b/greasyfork-user-registration-time/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -158,7 +158,7 @@ Kịch bản này là greasyfork Ý kiến ​​khác nhau、Trang liên quan - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -176,7 +176,7 @@ Kịch bản này là greasyfork Ý kiến ​​khác nhau、Trang liên quan - + ## Giúp đỡ @@ -190,13 +190,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -208,7 +208,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -225,7 +225,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -256,7 +256,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -274,7 +274,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -291,7 +291,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -301,7 +301,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -312,7 +312,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-user-registration-time/README_zh-TW.md b/greasyfork-user-registration-time/README_zh-TW.md index d1b1d8cf6..f4b5f0889 100644 --- a/greasyfork-user-registration-time/README_zh-TW.md +++ b/greasyfork-user-registration-time/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -155,7 +155,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -173,7 +173,7 @@ - + ## 使用幫助 @@ -187,13 +187,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -205,7 +205,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -271,7 +271,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -288,7 +288,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -298,7 +298,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -309,7 +309,7 @@ - +
diff --git a/greasyfork-user-scripts-data-visualization/README.md b/greasyfork-user-scripts-data-visualization/README.md index f324cee79..edebeacdf 100644 --- a/greasyfork-user-scripts-data-visualization/README.md +++ b/greasyfork-user-scripts-data-visualization/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -126,7 +126,7 @@ # GrreasyFork 用户脚本数据可视化 - + ## 描述 @@ -136,7 +136,7 @@ - **数据可视化**: 使用图表(条形图)展示每个脚本的总安装次数和每日安装次数。 - **数据展示**: 在图表下方显示总安装次数、每日安装总数以及已发布脚本的数量。 - + ## 功能 @@ -144,7 +144,7 @@ 2. **数据可视化**: 使用 Chart.js 绘制图表来展示脚本的安装数据。 3. **展示统计信息**: 在图表下方显示总的每日安装次数、总安装次数和已发布脚本的数量。 - + ## 安装 @@ -152,7 +152,7 @@ 2. **添加脚本**: - 点击上方绿色安装按钮进行安装 - + ## 使用 @@ -160,7 +160,7 @@ 2. **查看图表和统计数据**: 脚本将在用户的个人页面加载后自动生成并展示数据图表和统计信息。 3. **从网络或者从当前页面加载**: 脚本在代码顶端提供了一个设置,当为`true`时,从当前网页获取,为`false`,向 GreasyFrok 下载用户数据`JSON` - + ## 支持 @@ -192,7 +192,7 @@ ![png](https://s2.loli.net/2024/09/18/Qixhtq13b4lMwIF.png) - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -211,7 +211,7 @@ - + ## 使用帮助 @@ -225,14 +225,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -286,7 +286,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -296,7 +296,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -315,7 +315,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -333,7 +333,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -344,7 +344,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -355,7 +355,7 @@ - +
diff --git a/greasyfork-user-scripts-data-visualization/README_en.md b/greasyfork-user-scripts-data-visualization/README_en.md index 95aa5e200..173f16f53 100644 --- a/greasyfork-user-scripts-data-visualization/README_en.md +++ b/greasyfork-user-scripts-data-visualization/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -126,7 +126,7 @@ # GrreasyFork User script data visualization - + ## describe @@ -136,7 +136,7 @@ This userscript uses Chart.js Ku Cong GreasyFork Extract and visualize script da - **data visualization**: Use charts(Bar chart)Shows total installs and daily installs for each script。 - **Data display**: Shows total installs below the graph、Total daily installs and number of published scripts。 - + ## Function @@ -144,7 +144,7 @@ This userscript uses Chart.js Ku Cong GreasyFork Extract and visualize script da 2. **data visualization**: use Chart.js Draw a chart to display the script’s installation data。 3. **display statistics**: Shows total daily installs below the chart、Total installs and number of published scripts。 - + ## Install @@ -152,7 +152,7 @@ This userscript uses Chart.js Ku Cong GreasyFork Extract and visualize script da 2. **Add script**: - Click the green install button above to install - + ## use @@ -160,7 +160,7 @@ This userscript uses Chart.js Ku Cong GreasyFork Extract and visualize script da 2. **View charts and statistics**: The script will automatically generate and display data charts and statistics after the user’s personal page is loaded.。 3. **Load from the network or from the current page**: The script provides a setting at the top of the code,whenfor`true`hour,Get from current web page,for`false`,TowardsGreasyFrokDownload user data`JSON` - + ## support @@ -192,7 +192,7 @@ The script follows MIT license。For more information,Please check [LICENSE](h ![.ng](https://s2.loli.net/2024/09/18/Qixhtq13b4lMwIF.png) - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -211,7 +211,7 @@ The script follows MIT license。For more information,Please check [LICENSE](h - + ## Help @@ -225,14 +225,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -245,7 +245,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -263,7 +263,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -286,7 +286,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -296,7 +296,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -315,7 +315,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -333,7 +333,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -344,7 +344,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -355,7 +355,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-user-scripts-data-visualization/README_ko.md b/greasyfork-user-scripts-data-visualization/README_ko.md index 04afcaf92..633646022 100644 --- a/greasyfork-user-scripts-data-visualization/README_ko.md +++ b/greasyfork-user-scripts-data-visualization/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -126,7 +126,7 @@ # GrreasyFork 사용자 스크립트 데이터 시각화 - + ## 설명하다 @@ -136,7 +136,7 @@ - **데이터 시각화**: 차트 사용(막대 차트)각 스크립트에 대한 총 설치 수 및 일일 설치를 보여줍니다.。 - **데이터 표시**: 차트 아래에 총 설치를 표시하십시오、일일 설치 총 수 및 게시 된 스크립트 수。 - + ## 기능 @@ -144,7 +144,7 @@ 2. **데이터 시각화**: 사용 Chart.js 스크립트의 설치 데이터를 표시하려면 차트를 그립니다。 3. **통계 표시**: 차트 아래에 총 설치를 표시하십시오、총 설치 수 및 게시 된 스크립트 수。 - + ## 설치하다 @@ -152,7 +152,7 @@ 2. **스크립트를 추가하십시오**: - 위의 녹색 설치 버튼을 클릭하여 설치하십시오 - + ## 사용 @@ -160,7 +160,7 @@ 2. **차트 및 통계를 봅니다**: 스크립트는 사용자의 개인 페이지가로드 된 후 데이터 차트 및 통계를 자동으로 생성하고 표시합니다.。 3. **네트워크 나 현재 페이지에서로드하십시오**: 스크립트는 코드 상단의 설정을 제공합니다.,언제~을 위한`true`시간,현재 페이지에서 얻으십시오,~을 위한`false`,쪽으로 GreasyFrok 사용자 데이터를 다운로드하십시오`JSON` - + ## 지원하다 @@ -192,7 +192,7 @@ ![png](https://s2.loli.net/2024/09/18/Qixhtq13b4lMwIF.png) - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -211,7 +211,7 @@ - + ## 돕다 @@ -225,14 +225,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -245,7 +245,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -263,7 +263,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -286,7 +286,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -296,7 +296,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -315,7 +315,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -333,7 +333,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -344,7 +344,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -355,7 +355,7 @@ - +
diff --git a/greasyfork-user-scripts-data-visualization/README_vi.md b/greasyfork-user-scripts-data-visualization/README_vi.md index 038715034..ca799dca5 100644 --- a/greasyfork-user-scripts-data-visualization/README_vi.md +++ b/greasyfork-user-scripts-data-visualization/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -126,7 +126,7 @@ # GrreasyFork Trực quan hóa dữ liệu tập lệnh người dùng - + ## mô tả @@ -136,7 +136,7 @@ Tập lệnh người dùng này sử dụng Chart.js Thư viện từ GreasyFor - **Trực quan hóa dữ liệu**: Sử dụng biểu đồ(Biểu đồ thanh)Hiển thị tổng số cài đặt và cài đặt hàng ngày cho mỗi tập lệnh。 - **Hiển thị dữ liệu**: Hiển thị tổng số cài đặt bên dưới biểu đồ、Tổng số cài đặt hàng ngày và số lượng các tập lệnh được xuất bản。 - + ## Chức năng @@ -144,7 +144,7 @@ Tập lệnh người dùng này sử dụng Chart.js Thư viện từ GreasyFor 2. **Trực quan hóa dữ liệu**: sử dụng Chart.js Vẽ biểu đồ để hiển thị dữ liệu cài đặt của tập lệnh。 3. **Hiển thị số liệu thống kê**: Hiển thị tổng số cài đặt hàng ngày bên dưới biểu đồ、Tổng số cài đặt và số lượng các tập lệnh được xuất bản。 - + ## Cài đặt @@ -152,7 +152,7 @@ Tập lệnh người dùng này sử dụng Chart.js Thư viện từ GreasyFor 2. **Thêm tập lệnh**: - Nhấp vào nút cài đặt màu xanh lá cây ở trên để cài đặt - + ## sử dụng @@ -160,7 +160,7 @@ Tập lệnh người dùng này sử dụng Chart.js Thư viện từ GreasyFor 2. **Xem biểu đồ và số liệu thống kê**: Tập lệnh sẽ tự động tạo và hiển thị biểu đồ và số liệu thống kê dữ liệu sau khi trang cá nhân của người dùng được tải.。 3. **Tải từ mạng hoặc từ trang hiện tại**: Tập lệnh cung cấp một cài đặt ở đầu mã,khivì`true`giờ,Nhận từ trang hiện tại,vì`false`,Đối với GreasyFrok Tải xuống dữ liệu người dùng`JSON` - + ## ủng hộ @@ -192,7 +192,7 @@ Kịch bản này theo sau MIT giấy phép。Để biết thêm thông tin,Vu ![png](https://s2.loli.net/2024/09/18/Qixhtq13b4lMwIF.png) - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -211,7 +211,7 @@ Kịch bản này theo sau MIT giấy phép。Để biết thêm thông tin,Vu - + ## Giúp đỡ @@ -225,14 +225,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -245,7 +245,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -263,7 +263,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -286,7 +286,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -296,7 +296,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -315,7 +315,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -333,7 +333,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -344,7 +344,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -355,7 +355,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-user-scripts-data-visualization/README_zh-TW.md b/greasyfork-user-scripts-data-visualization/README_zh-TW.md index 2322e31c4..b9ef82780 100644 --- a/greasyfork-user-scripts-data-visualization/README_zh-TW.md +++ b/greasyfork-user-scripts-data-visualization/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -126,7 +126,7 @@ # GrreasyFork 用戶腳本數據可視化 - + ## 描述 @@ -136,7 +136,7 @@ - **數據可視化**: 使用圖表(條形圖)展示每個腳本的總安裝次數和每日安裝次數。 - **數據展示**: 在圖表下方顯示總安裝次數、每日安裝總數以及已發布腳本的數量。 - + ## 功能 @@ -144,7 +144,7 @@ 2. **數據可視化**: 使用 Chart.js 繪製圖表來展示腳本的安裝數據。 3. **展示統計信息**: 在圖表下方顯示總的每日安裝次數、總安裝次數和已發布腳本的數量。 - + ## 安裝 @@ -152,7 +152,7 @@ 2. **添加腳本**: - 點擊上方綠色安裝按鈕進行安裝 - + ## 使用 @@ -160,7 +160,7 @@ 2. **查看圖表和統計數據**: 腳本將在用戶的個人頁面加載後自動生成並展示數據圖表和統計信息。 3. **從網絡或者從當前頁面加載**: 腳本在代碼頂端提供了一個設置,当為`true`時,從當前網頁獲取,為`false`,向 GreasyFrok 下載用戶數據`JSON` - + ## 支持 @@ -192,7 +192,7 @@ ![png](https://s2.loli.net/2024/09/18/Qixhtq13b4lMwIF.png) - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -211,7 +211,7 @@ - + ## 使用幫助 @@ -225,14 +225,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -263,7 +263,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -286,7 +286,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -296,7 +296,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -315,7 +315,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -333,7 +333,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -344,7 +344,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -355,7 +355,7 @@ - +
diff --git a/greasyfork-utility-toolkit/README.md b/greasyfork-utility-toolkit/README.md index e11dbfb7c..60b831311 100644 --- a/greasyfork-utility-toolkit/README.md +++ b/greasyfork-utility-toolkit/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -146,7 +146,7 @@ - + ## 脚本功能 @@ -155,11 +155,11 @@ > ![size](https://img.shields.io/github/size/ChinaGodMan/UserScripts/Greasyfork%20Utility%20Toolkit.user.js?color=%23990000) > ![dt](https://img.shields.io/greasyfork/dt/497346?color=%23990000&label=Installs) > ![Greasy Fork Downloads](https://img.shields.io/greasyfork/dd/497346?color=%23990000) > ![Greasy Fork License](https://img.shields.io/greasyfork/l/497346?color=%23990000) > ![Greasy Fork Rating](https://img.shields.io/greasyfork/rating-count/497346?color=%23990000) > ![Greasy Fork Version](https://img.shields.io/greasyfork/v/497346?color=%23990000)

查看Greasyfork 糊裱匠的版本更新记录

- + ## 功能介绍 - + ### 脚本详情 @@ -177,7 +177,7 @@ - 美化代码片段 - 美化查看代码 - + ### 脚本列表 @@ -190,14 +190,14 @@ - 移动侧边栏 - 按创建日期排序脚本列表 - + ### 美化控件 - 控件美化 - 美化选择框和单选框标签 - + ### 适用于 @@ -209,7 +209,7 @@ - 网页打开 - 弹出提示 - + ### 个人主页 @@ -219,7 +219,7 @@ - 隐藏近期评论 - 主页显示统计 - + ### 导航栏 @@ -229,7 +229,7 @@ - 在导航栏添加打开本界面 - 导航栏对齐 - + ### 网站 @@ -247,7 +247,7 @@ - 代理用户图片 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -265,7 +265,7 @@ - + ## 图片展示: @@ -285,7 +285,7 @@ ![scriptlist.png](https://s2.loli.net/2024/08/05/3xrMsHPSDtTf8hu.png) - + ## 使用帮助 @@ -299,14 +299,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -319,7 +319,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -337,7 +337,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -360,7 +360,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -370,7 +370,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -389,7 +389,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -407,7 +407,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -418,7 +418,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -429,7 +429,7 @@ - +
diff --git a/greasyfork-utility-toolkit/README_en.md b/greasyfork-utility-toolkit/README_en.md index 31dcbed77..cedbb7c90 100644 --- a/greasyfork-utility-toolkit/README_en.md +++ b/greasyfork-utility-toolkit/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -146,7 +146,7 @@ - + ## Script Overview: @@ -156,11 +156,11 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre --- - + ## Features - + ### Script Details @@ -178,7 +178,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre - Beautify Code Snippets - Beautify Code View - + ### Script List @@ -191,14 +191,14 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre - Move Sidebar - Sort Script List by Creation Date - + ### Beautify Controls - Beautify Controls - Beautify Select Box and Radio Button Labels - + ### Applicable To @@ -210,7 +210,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre - Open Webpage - Popup Tip - + ### Personal Homepage @@ -220,7 +220,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre - Hide Recent Comments - Display Statistics on Homepage - + ### Navigation Bar @@ -230,7 +230,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre - Add "Open This Page" to Navigation Bar - Align Navigation Bar - + ### Website @@ -249,11 +249,11 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre --- - + ## Thank you - + ### Quote script @@ -281,7 +281,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre --- - + ## Photos: @@ -303,7 +303,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre --- - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -321,7 +321,7 @@ Provide various usage functions for Greasyfork, absolute time, web page widescre - + ## Help @@ -335,14 +335,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -355,7 +355,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -373,7 +373,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -396,7 +396,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -406,7 +406,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -425,7 +425,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -443,7 +443,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -454,7 +454,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -465,7 +465,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-utility-toolkit/README_ko.md b/greasyfork-utility-toolkit/README_ko.md index 7adcb530a..977e865f3 100644 --- a/greasyfork-utility-toolkit/README_ko.md +++ b/greasyfork-utility-toolkit/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -146,7 +146,7 @@ - + ## Greasyfork의 다양한 기능 제공 @@ -156,11 +156,11 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 --- - + ## 기능 소개 - + ### 스크립트 상세 @@ -178,7 +178,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - 코드 스니펫 미화 - 코드 보기 미화 - + ### 스크립트 목록 @@ -191,14 +191,14 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - 사이드바 이동 - 생성일로 스크립트 목록 정렬 - + ### 미화 컨트롤 - 컨트롤 미화 - 선택 상자와 라디오 버튼 레이블 미화 - + ### 적용 대상 @@ -210,7 +210,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - 웹 페이지 열기 - 팝업 알림 - + ### 개인 홈페이지 @@ -220,7 +220,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - 최근 댓글 숨기기 - 홈페이지 통계 표시 - + ### 탐색 바 @@ -230,7 +230,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - 탐색 바에 이 인터페이스 열기 버튼 추가 - 탐색 바 정렬 - + ### 웹사이트 @@ -249,11 +249,11 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 --- - + ## 감사합니다 - + ### 참고한 스크립트 @@ -281,7 +281,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 --- - + ## Photos: @@ -303,7 +303,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 --- - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -321,7 +321,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + ## 돕다 @@ -335,14 +335,14 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -355,7 +355,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -373,7 +373,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -396,7 +396,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -406,7 +406,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -425,7 +425,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -443,7 +443,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -454,7 +454,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -465,7 +465,7 @@ Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절 - +
diff --git a/greasyfork-utility-toolkit/README_vi.md b/greasyfork-utility-toolkit/README_vi.md index 1a44c19bd..0b5c31b3d 100644 --- a/greasyfork-utility-toolkit/README_vi.md +++ b/greasyfork-utility-toolkit/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -146,7 +146,7 @@ - + ## Chức năng kịch bản @@ -155,11 +155,11 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian > ![size](https://img.shields.io/github/size/ChinaGodMan/UserScripts/Greasyfork%20Utility%20Toolkit.user.js?color=%23990000) > ![dt](https://img.shields.io/greasyfork/dt/497346?color=%23990000&label=Installs) > ![Greasy Fork Downloads](https://img.shields.io/greasyfork/dd/497346?color=%23990000) > ![Greasy Fork License](https://img.shields.io/greasyfork/l/497346?color=%23990000) > ![Greasy Fork Rating](https://img.shields.io/greasyfork/rating-count/497346?color=%23990000) > ![Greasy Fork Version](https://img.shields.io/greasyfork/v/497346?color=%23990000)

Kiểm traGreasyfork Cập nhật bản ghi phiên bản của nhà sản xuất mờ

- + ## Giới thiệu chức năng - + ### Chi tiết kịch bản @@ -177,7 +177,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - Làm đẹp đoạn mã - Làm đẹp mã xem - + ### Danh sách tập lệnh @@ -190,14 +190,14 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - Di chuyển thanh bên - Sắp xếp danh sách tập lệnh theo ngày sáng tạo - + ### Làm đẹp kiểm soát - Kiểm soát làm đẹp - Làm đẹp hộp lựa chọn và nhãn hộp radio - + ### Áp dụng cho @@ -209,7 +209,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - Trang web mở - Dấu nhắc bật lên - + ### Trang chủ cá nhân @@ -219,7 +219,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - Ẩn ý kiến ​​gần đây - Thống kê hiển thị trang chủ - + ### Thanh điều hướng @@ -229,7 +229,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - Thêm để mở giao diện này trong thanh điều hướng - Căn chỉnh thanh điều hướng - + ### trang web @@ -247,7 +247,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - Hình ảnh người dùng đại lý - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -265,7 +265,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian - + ## Hiển thị hình ảnh: @@ -285,7 +285,7 @@ vì Greasyfork Cung cấp các chức năng sử dụng khác nhau,Thời gian ![scriptlist.png](https://s2.loli.net/2024/08/05/3xrMsHPSDtTf8hu.png) - + ## Giúp đỡ @@ -299,14 +299,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -319,7 +319,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -337,7 +337,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -360,7 +360,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -370,7 +370,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -389,7 +389,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -407,7 +407,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -418,7 +418,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -429,7 +429,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-utility-toolkit/README_zh-TW.md b/greasyfork-utility-toolkit/README_zh-TW.md index 1d5abb4e2..74172fb75 100644 --- a/greasyfork-utility-toolkit/README_zh-TW.md +++ b/greasyfork-utility-toolkit/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -146,7 +146,7 @@ - + ## 腳本功能 @@ -158,11 +158,11 @@ --- - + ## 功能介紹 - + ### 腳本詳情 @@ -180,7 +180,7 @@ - 美化代碼片段 - 美化查看代碼 - + ### 腳本列表 @@ -193,14 +193,14 @@ - 移動側邊欄 - 按創建日期排序腳本列表 - + ### 美化控件 - 控制美化 - 美化選擇框和單選框標簽 - + ### 適用於 @@ -212,7 +212,7 @@ - 網頁打開 - 彈出提示 - + ### 個人主頁 @@ -222,7 +222,7 @@ - 隱藏近期評論 - 主頁顯示統計 - + ### 導航欄 @@ -232,7 +232,7 @@ - 在導航欄添加打開本界面 - 導航欄對齊 - + ### 網站 @@ -251,7 +251,7 @@ --- - + ## 🌐 瀏覽器與腳本管理器 @@ -267,11 +267,11 @@ [Macaque]: https://macaque.app/ "獼猴" [Stay]: https://apps.apple.com/cn/app/stay-for-safari-%E6%B5%8F%E8%A7%88%E5%99%A8%E4%BC%B4%E4%BE%A3/id1591620171 "Stay" - + ## Thank you - + ### 引用腳本 @@ -299,7 +299,7 @@ --- - + ## 圖片展示: @@ -321,7 +321,7 @@ --- - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -339,7 +339,7 @@ - + ## 使用幫助 @@ -353,14 +353,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -373,7 +373,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -391,7 +391,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -414,7 +414,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -424,7 +424,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -443,7 +443,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -461,7 +461,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -472,7 +472,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -483,7 +483,7 @@ - +
diff --git a/greasyfork-webhook-sync-enhanced/README.md b/greasyfork-webhook-sync-enhanced/README.md index eba9cf023..e878ee5d7 100644 --- a/greasyfork-webhook-sync-enhanced/README.md +++ b/greasyfork-webhook-sync-enhanced/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -82,13 +82,13 @@ width="320" height="240" controls loop> - + # GreasyFork - 增强WebHook同步设置 在GreasyFork上设置同步信息时,常常会遇到提交后查看时,发现同步信息并没有被设置成功,导致需要重新输入。这是网站的小问题之一。为了解决这个问题,这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。 - + ## 功能特点 @@ -96,14 +96,14 @@ - **批量增加语言代码**:支持批量添加多个国家/地区的语言代码,无需逐个选择。 - **支持多种格式**:可以根据需要选择不同的URL格式进行设置。 - + ## 使用说明 (详情可以查看下方图片或上方视频) - **脚本管理页面**:处于脚本管理页面,在下方增加一个按钮,点击之后可以对当前脚本进行管理。 - **网站顶部导航栏**:导航栏增加一个选项,用于点击之后自动获取Webhook同步的脚本.进行多个管理. - + ## 支持的格式 @@ -119,7 +119,7 @@ 代码如下: 如果你有更多的选择可以拓展
` let localeKey = url.includes('##') ? url.match(/##.*\((.*?)\)$/) || url.match(/##(.*?)$/) : url.match(/README_(.*?)\.md/)` - + ## 注意: @@ -127,7 +127,7 @@ - 脚本必须存在!否则同步失败, - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -144,7 +144,7 @@ > - [**显示Greasyfork用户注册时间,识别恶意评论**](https://greasyfork.org/scripts/529359): 如果你的脚本干涉了某些人的利益,收到恶意差评并不意外。恶意差评有两个特点,一是账号通常新注册,二是注册后不久就会给差评,且基本不会有后续活动。本脚本获取greasyfork用户注册时间,并显示在用户名旁边。如果用户名旁边显示的时间是未来的时间,那么这个用户很可能是恶意注册的账号。 - + ## 项目与反馈 @@ -157,7 +157,7 @@ ![404.png](https://s2.loli.net/2024/09/05/YmJBL9R8qMcx1UZ.png) - + ## 使用帮助 @@ -171,14 +171,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -209,7 +209,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -232,7 +232,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -242,7 +242,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -261,7 +261,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -279,7 +279,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -290,7 +290,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -301,7 +301,7 @@ - +
diff --git a/greasyfork-webhook-sync-enhanced/README_en.md b/greasyfork-webhook-sync-enhanced/README_en.md index 5679c54e9..f40d1adc5 100644 --- a/greasyfork-webhook-sync-enhanced/README_en.md +++ b/greasyfork-webhook-sync-enhanced/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -82,13 +82,13 @@ width="320" height="240" controls loop> - + # GreasyFork - Enhanced WebHook Synchronization Settings When setting up synchronization information on GreasyFork, you might often find that after submitting, the sync information hasn't been successfully saved, requiring you to re-enter it. This is one of the small issues with the website. To solve this problem, this script helps you quickly input script synchronization information and batch-add multiple country language codes without having to click on each checkbox and then go to the corresponding URL. - + ## Features @@ -96,14 +96,14 @@ When setting up synchronization information on GreasyFork, you might often find - **Batch Add Language Codes**: Supports batch addition of multiple country/region language codes without the need to select each one individually. - **Supports Multiple Formats**: You can choose different URL formats for setup based on your needs. - + ## Instructions (For more details, refer to the images below or the video above) - **Script Management Page**: On the script management page, an additional button is added at the bottom. After clicking it, you can manage the current script. - **Website Top Navigation Bar**: Adds an option to the navigation bar that, when clicked, automatically retrieves the WebHook synchronized scripts for multiple management. - + ## Supported Formats @@ -119,14 +119,14 @@ Currently, the following three formats are supported: Example code: If you have more options, you can extend it.
`let localeKey = url.includes('##') ? url.match(/##.*\((.*?)\)$/) || url.match(/##(.*?)$/) : url.match(/README_(.*?)\.md/)` - + ## Attention: - When submitting localized country information, there must be a header declaration such as//@ name: zh CN in the code, otherwise even if the submission is successful, it will still fail! - The script must exist! Otherwise, synchronization will fail, - + ## Project and Feedback @@ -139,7 +139,7 @@ Example code: If you have more options, you can extend it.
![404.png](https://s2.loli.net/2024/09/05/YmJBL9R8qMcx1UZ.png) - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -157,7 +157,7 @@ Example code: If you have more options, you can extend it.
- + ## Help @@ -171,14 +171,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -191,7 +191,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -209,7 +209,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -232,7 +232,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -242,7 +242,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -261,7 +261,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -279,7 +279,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -290,7 +290,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -301,7 +301,7 @@ Recommended browser and script manager: - +
diff --git a/greasyfork-webhook-sync-enhanced/README_ko.md b/greasyfork-webhook-sync-enhanced/README_ko.md index 66a392929..b9c5d485c 100644 --- a/greasyfork-webhook-sync-enhanced/README_ko.md +++ b/greasyfork-webhook-sync-enhanced/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -82,13 +82,13 @@ width="320" height="240" controls loop> - + # GreasyFork - 향상되었습니다WebHook동기 설정 존재하다GreasyFork동기화 정보를 설정할 때,종종, 당신은 제출 후 시청을 만날 것입니다,동기화 정보가 성공적으로 설정되지 않은 것으로 밝혀졌습니다.,재 입력。이것은 웹 사이트의 작은 문제 중 하나입니다.。이 문제를 해결합니다,이 스크립트는 스크립트 동기화 정보를 신속하게 입력하는 데 도움이됩니다.,여러 국가에서 배치로 언어 코드를 추가하십시오,선택 상자를 하나씩 클릭 한 다음 해당 URL로 이동하는 대신。 - + ## 기능적 특징 @@ -96,14 +96,14 @@ - **배치로 언어 코드를 추가하십시오**:여러 국가의 배치 추가 지원/지역 언어 코드,하나씩 선택할 필요가 없습니다。 - **여러 형식을 지원합니다**:필요에 따라 다른 것을 선택할 수 있습니다URL형식을 설정하십시오。 - + ## 사용 지침 (자세한 내용은 아래 그림이나 위의 비디오를 볼 수 있습니다.) - **스크립트 관리 페이지**:스크립트 관리 페이지에서,아래 버튼을 추가하십시오,클릭 한 후 현재 스크립트를 관리 할 수 ​​있습니다。 - **웹 사이트 상단 탐색 표시 줄**:탐색 표시 줄에 옵션을 추가하십시오,클릭 후 자동으로 얻는 데 사용됩니다Webhook동기화 된 스크립트.여러 관리를 수행하십시오. - + ## 지원되는 형식 @@ -119,7 +119,7 @@ 코드는 다음과 같습니다: 더 많은 옵션이 있으면 확장 할 수 있습니다
` let localeKey = url.includes('##') ? url.match(/##.*\((.*?)\)$/) || url.match(/##(.*?)$/) : url.match(/README_(.*?)\.md/)` - + ## 알아채다: @@ -127,7 +127,7 @@ - 스크립트가 있어야합니다!그렇지 않으면 동기화가 실패합니다, - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -144,7 +144,7 @@ > - [**Greasyfork등록 시간을 표시**](https://greasyfork.org/scripts/529359): 스크립트가 일부 사람들의 관심사를 방해한다면 악의적 인 부정적인 리뷰를받는 것은 놀라운 일이 아닙니다. 악의적 인 부정적인 검토에는 두 가지 특성이 있습니다. 하나는 계정이 일반적으로 새로 등록되어 있고 다른 하나는 등록 직후에 부정적인 검토가 제공되며 기본적으로 후속 활동이 없다는 것입니다. 이 스크립트는 Greasyfork 사용자의 등록 시간을 가져오고 사용자 이름 옆에 표시됩니다. 사용자 이름 옆에 표시되는 시간이 미래의 시간 인 경우 사용자는 악의적 인 계정 일 가능성이 높습니다. - + ## 프로젝트 및 피드백 @@ -157,7 +157,7 @@ ![404.png](https://s2.loli.net/2024/09/05/YmJBL9R8qMcx1UZ.png) - + ## 돕다 @@ -171,14 +171,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -191,7 +191,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -209,7 +209,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -232,7 +232,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -242,7 +242,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -261,7 +261,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -279,7 +279,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -290,7 +290,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -301,7 +301,7 @@ - +
diff --git a/greasyfork-webhook-sync-enhanced/README_vi.md b/greasyfork-webhook-sync-enhanced/README_vi.md index 4b3e90e7c..769744cdb 100644 --- a/greasyfork-webhook-sync-enhanced/README_vi.md +++ b/greasyfork-webhook-sync-enhanced/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -82,13 +82,13 @@ width="320" height="240" controls loop> - + # GreasyFork - Nâng caoWebHookCài đặt đồng bộ hiện hữuGreasyForkKhi thiết lập thông tin đồng bộ hóa trên,Thông thường, bạn sẽ bắt gặp việc xem sau khi gửi,Nó đã được tìm thấy rằng thông tin đồng bộ hóa không được đặt thành công,Nhập lại。Đây là một trong những vấn đề nhỏ với trang web。Để giải quyết vấn đề này,Tập lệnh này có thể giúp bạn nhanh chóng nhập thông tin đồng bộ hóa tập lệnh,Và thêm mã ngôn ngữ ở nhiều quốc gia theo đợt,Thay vì nhấp vào hộp lựa chọn từng cái một và sau đó đi đến URL tương ứng。 - + ## Các tính năng chức năng @@ -96,14 +96,14 @@ hiện hữuGreasyForkKhi thiết lập thông tin đồng bộ hóa trên,Th - **Thêm mã ngôn ngữ theo đợt**:Hỗ trợ bổ sung hàng loạt các quốc gia/Mã ngôn ngữ khu vực,Không cần phải chọn từng cái một。 - **Hỗ trợ nhiều định dạng**:Bạn có thể chọn những cái khác nhau theo nhu cầu của bạnURLĐặt định dạng。 - + ## Hướng dẫn sử dụng (Để biết chi tiết, bạn có thể xem hình bên dưới hoặc video trên) - **Trang quản lý tập lệnh**:Trên trang quản lý tập lệnh,Thêm một nút bên dưới,Sau khi nhấp vào, bạn có thể quản lý tập lệnh hiện tại。 - **Trang web thanh điều hướng hàng đầu**:Thêm một tùy chọn vào thanh điều hướng,Được sử dụng để tự động nhận được sau khi nhấp vàoWebhookTập lệnh đồng bộ.Thực hiện nhiều quản lý. - + ## Định dạng được hỗ trợ @@ -119,7 +119,7 @@ Hiện đang hỗ trợ ba định dạng sau: Mã như sau: Nếu bạn có nhiều lựa chọn hơn, bạn có thể mở rộng
` let localeKey = url.includes('##') ? url.match(/##.*\((.*?)\)$/) || url.match(/##(.*?)$/) : url.match(/README_(.*?)\.md/)` - + ## Để ý: @@ -127,7 +127,7 @@ Mã như sau: Nếu bạn có nhiều lựa chọn hơn, bạn có thể mở r - Kịch bản phải tồn tại!Nếu không, đồng bộ hóa thất bại, - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -144,7 +144,7 @@ Mã như sau: Nếu bạn có nhiều lựa chọn hơn, bạn có thể mở r > - [**Greasyfork Hiển thị thời gian đăng ký**](https://greasyfork.org/scripts/529359): Nếu kịch bản của bạn can thiệp vào lợi ích của một số người, không có gì đáng ngạc nhiên khi nhận được các đánh giá tiêu cực độc hại. Có hai đặc điểm của các đánh giá tiêu cực độc hại: Một là tài khoản thường được đăng ký mới và một đặc điểm khác là các đánh giá tiêu cực sẽ được đưa ra ngay sau khi đăng ký và về cơ bản sẽ không có hoạt động tiếp theo. Kịch bản này có thời gian đăng ký của người dùng Greasyfork và được hiển thị bên cạnh tên người dùng. Nếu thời gian hiển thị bên cạnh tên người dùng là thời gian trong tương lai, thì người dùng có thể sẽ là một tài khoản độc hại được đăng ký. - + ## Dự án và phản hồi @@ -157,7 +157,7 @@ Mã như sau: Nếu bạn có nhiều lựa chọn hơn, bạn có thể mở r ![404.png](https://s2.loli.net/2024/09/05/YmJBL9R8qMcx1UZ.png) - + ## Giúp đỡ @@ -171,14 +171,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -191,7 +191,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -209,7 +209,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -232,7 +232,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -242,7 +242,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -261,7 +261,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -279,7 +279,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -290,7 +290,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -301,7 +301,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/greasyfork-webhook-sync-enhanced/README_zh-TW.md b/greasyfork-webhook-sync-enhanced/README_zh-TW.md index 7b46faf4d..766e8bbf3 100644 --- a/greasyfork-webhook-sync-enhanced/README_zh-TW.md +++ b/greasyfork-webhook-sync-enhanced/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -82,13 +82,13 @@ width="320" height="240" controls loop> - + # GreasyFork - 增強WebHook同步設置 在GreasyFork上設置同步信息時,常常會遇到提交後查看時,發現同步信息並沒有被設置成功,導致需要重新輸入。這是網站的小問題之一。為了解決這個問題,這個腳本可以幫助你快速輸入腳本同步信息,並批量增加多個國家的語言代碼,而不用一個個地點擊選擇框再去對應的網址。 - + ## 功能特點 @@ -96,14 +96,14 @@ - **批量增加語言代碼**:支持批量添加多個國家/地區的語言代碼,無需逐個選擇。 - **支持多種格式**:可以根據需要選擇不同的URL格式進行設置。 - + ## 使用說明 (詳情可以查看下方圖片或上方視頻) - **腳本管理頁面**:處於腳本管理頁面,在下方增加一個按鈕,點擊之後可以對當前腳本進行管理。 - **網站頂部導航欄**:導航欄增加一個選項,用於點擊之後自動獲取Webhook同步的腳本.進行多個管理. - + ## 支持的格式 @@ -119,7 +119,7 @@ 代碼如下: 如果你有更多的選擇可以拓展
` let localeKey = url.includes('##') ? url.match(/##.*\((.*?)\)$/) || url.match(/##(.*?)$/) : url.match(/README_(.*?)\.md/)` - + ## 注意: @@ -127,7 +127,7 @@ - 腳本必須存在!否則同步失敗, - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -144,7 +144,7 @@ > - [**顯示Greasyfork用戶註冊時間,識別惡意評論**](https://greasyfork.org/scripts/529359): 如果你的腳本干涉了某些人的利益,收到惡意差評並不意外。惡意差評有兩個特點,一是賬號通常新註冊,二是註冊後不久就會給差評,且基本不會有後續活動。本腳本獲取greasyfork用戶註冊時間,並顯示在用戶名旁邊。如果用戶名旁邊顯示的時間是未來的時間,那麼這個用戶很可能是惡意註冊的賬號。 - + ## 項目與反饋 @@ -157,7 +157,7 @@ ![404.png](https://s2.loli.net/2024/09/05/YmJBL9R8qMcx1UZ.png) - + ## 使用幫助 @@ -171,14 +171,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -209,7 +209,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -232,7 +232,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -242,7 +242,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -261,7 +261,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -279,7 +279,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -290,7 +290,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -301,7 +301,7 @@ - +
diff --git a/highlight-keywords-mini/README.md b/highlight-keywords-mini/README.md index 7000febcd..2bc85867b 100644 --- a/highlight-keywords-mini/README.md +++ b/highlight-keywords-mini/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -87,7 +87,7 @@ - + ## 使用帮助 @@ -101,14 +101,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -121,7 +121,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -139,7 +139,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -162,7 +162,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -172,7 +172,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -209,7 +209,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -220,7 +220,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -231,7 +231,7 @@ - +
diff --git a/highlight-keywords-mini/README_en.md b/highlight-keywords-mini/README_en.md index 814476906..2fff1adac 100644 --- a/highlight-keywords-mini/README_en.md +++ b/highlight-keywords-mini/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍You may be looking for web-related scripts > @@ -87,7 +87,7 @@ - + ## Help @@ -101,14 +101,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -121,7 +121,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -139,7 +139,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -162,7 +162,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -172,7 +172,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -191,7 +191,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -209,7 +209,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -220,7 +220,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -231,7 +231,7 @@ Recommended browser and script manager: - +
diff --git a/highlight-keywords-mini/README_ko.md b/highlight-keywords-mini/README_ko.md index 2048985ae..cd06575b3 100644 --- a/highlight-keywords-mini/README_ko.md +++ b/highlight-keywords-mini/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -87,7 +87,7 @@ - + ## 돕다 @@ -101,14 +101,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -121,7 +121,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -139,7 +139,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -162,7 +162,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -172,7 +172,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -191,7 +191,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -209,7 +209,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -220,7 +220,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -231,7 +231,7 @@ - +
diff --git a/highlight-keywords-mini/README_vi.md b/highlight-keywords-mini/README_vi.md index 49e3473e7..53f6602d8 100644 --- a/highlight-keywords-mini/README_vi.md +++ b/highlight-keywords-mini/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -87,7 +87,7 @@ - + ## Giúp đỡ @@ -101,14 +101,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -121,7 +121,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -139,7 +139,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -162,7 +162,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -172,7 +172,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -191,7 +191,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -209,7 +209,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -220,7 +220,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -231,7 +231,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/highlight-keywords-mini/README_zh-TW.md b/highlight-keywords-mini/README_zh-TW.md index 24600a07a..0e80c1e85 100644 --- a/highlight-keywords-mini/README_zh-TW.md +++ b/highlight-keywords-mini/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -87,7 +87,7 @@ - + ## 使用幫助 @@ -101,14 +101,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -121,7 +121,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -139,7 +139,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -162,7 +162,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -172,7 +172,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -209,7 +209,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -220,7 +220,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -231,7 +231,7 @@ - +
diff --git a/highlight-keywords/README.md b/highlight-keywords/README.md index be8b195ab..dcf9be8e3 100644 --- a/highlight-keywords/README.md +++ b/highlight-keywords/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,16 +69,16 @@ - + # 原作者发布页[ mabangde](https://greasyfork.org/zh-CN/scripts/465200) - + ## 脚本功能 对网页上的文字进行高亮显示,如果对你有帮助,可以随意修改使用。 - + ## UI 说明 @@ -90,14 +90,14 @@ - 鼠标移动到对应的关键字上会显示你输入的内容 3. **第三栏:关键字栏** - 输入你想要高亮的词,空格隔开 - + ## 图片 ![hl.png](https://s2.loli.net/2024/08/05/oBWsunTIhLKkcrM.png) - + > ### 🔍你可能在找网页相关脚本 > @@ -113,17 +113,17 @@ > - [**MarkDown 云剪笔记**](https://greasyfork.org/scripts/530139): 将网页内容转换为 Markdown 格式的工具,支持复制、下载、发送到 GitHub 和 Obsidian 等功能。 - + ## 初次安装 第一次安装会默认添加一些规则测试,可以删除。 - + ## 更新日志 - + ### 2024 年 6 月 26 日 @@ -131,7 +131,7 @@ - 增加了对设置文字颜色的支持(第二个颜色选择器) - + ## 使用帮助 @@ -145,14 +145,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -183,7 +183,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -264,7 +264,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -275,7 +275,7 @@ - +
diff --git a/highlight-keywords/README_en.md b/highlight-keywords/README_en.md index 1c38b94fd..d4a568984 100644 --- a/highlight-keywords/README_en.md +++ b/highlight-keywords/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,16 +69,16 @@ - + # Original author’s release page[ mabangde](https://greasyfork.org/zh-CN/scripts/465200) - + ## Scripting functions Highlight text on the web page,If it helps you,Can be modified and used at will。 - + ## UI illustrate @@ -90,14 +90,14 @@ Highlight text on the web page,If it helps you,Can be modified and used at w - Move the mouse to the corresponding keyword and display the content you entered. 3. **Column 3:Keyword bar** - Enter the words you want to highlight,Spaces separated - + ## picture ![hl.png](https://s2.loli.net/2024/08/05/oBWsunTIhLKkcrM.png) - + > ### 🔍You may be looking for web-related scripts > @@ -113,17 +113,17 @@ Highlight text on the web page,If it helps you,Can be modified and used at w > - [**MarkDown Cloud Cut Notes**](https://greasyfork.org/scripts/530139): A tool that converts web content to Markdown format, supports features such as copying, downloading, and sending to GitHub and Obsidian. - + ## First installation The first installation will add some rules tests by default,Can be deleted。 - + ## Update log - + ### 2024 Year 6 moon 26 day @@ -131,7 +131,7 @@ The first installation will add some rules tests by default,Can be deleted。 - Added support for setting text color(The second color selector) - + ## Help @@ -145,14 +145,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -165,7 +165,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -183,7 +183,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -216,7 +216,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -235,7 +235,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -253,7 +253,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -264,7 +264,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -275,7 +275,7 @@ Recommended browser and script manager: - +
diff --git a/highlight-keywords/README_ko.md b/highlight-keywords/README_ko.md index a2331ebad..b2d9fde94 100644 --- a/highlight-keywords/README_ko.md +++ b/highlight-keywords/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,16 +69,16 @@ - + # 오리지널 저자의 릴리스 페이지[ mabangde](https://greasyfork.org/zh-CN/scripts/465200) - + ## 스크립팅 기능 웹 페이지에서 텍스트를 강조 표시합니다,그것이 당신을 도울 경우,마음대로 수정 및 사용할 수 있습니다。 - + ## UI 설명 @@ -90,14 +90,14 @@ - 마우스를 해당 키워드로 이동하고 입력 한 컨텐츠를 표시하십시오. 3. **열 3:키워드 바** - 강조하려는 단어를 입력하십시오,공간이 분리되었습니다 - + ## 그림 ![hl.png](https://s2.loli.net/2024/08/05/oBWsunTIhLKkcrM.png) - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -113,17 +113,17 @@ > - [**마크 다운 클라우드 컷 메모**](https://greasyfork.org/scripts/530139): 웹 컨텐츠를 Markdown 형식으로 변환하는 도구는 복사, 다운로드 및 Github 및 Obsidian으로 전송과 같은 기능을 지원합니다. - + ## 첫 번째 설치 첫 번째 설치는 기본적으로 일부 규칙 테스트를 추가합니다.,삭제할 수 있습니다。 - + ## 로그 업데이트 - + ### 2024 년도 6 달 26 낮 @@ -131,7 +131,7 @@ - 텍스트 색상 설정에 대한 지원이 추가되었습니다(두 번째 색상 선택기) - + ## 돕다 @@ -145,14 +145,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -165,7 +165,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -183,7 +183,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -206,7 +206,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -216,7 +216,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -235,7 +235,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -253,7 +253,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -264,7 +264,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -275,7 +275,7 @@ - +
diff --git a/highlight-keywords/README_vi.md b/highlight-keywords/README_vi.md index 8062068fd..a70890acc 100644 --- a/highlight-keywords/README_vi.md +++ b/highlight-keywords/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,16 +69,16 @@ - + # Trang phát hành gốc của tác giả[ mabangde](https://greasyfork.org/zh-CN/scripts/465200) - + ## Chức năng kịch bản Đánh dấu văn bản trên trang web,Nếu nó giúp bạn,Có thể được sửa đổi và sử dụng theo ý muốn。 - + ## UI minh họa @@ -90,14 +90,14 @@ - Di chuyển chuột đến từ khóa tương ứng và hiển thị nội dung bạn đã nhập. 3. **Cột 3:Thanh từ khóa** - Nhập các từ bạn muốn làm nổi bật,Không gian tách biệt - + ## hình ảnh ![hl.png](https://s2.loli.net/2024/08/05/oBWsunTIhLKkcrM.png) - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -113,17 +113,17 @@ > - [**Markdown Cloud Cut Ghi chú**](https://greasyfork.org/scripts/530139): Một công cụ chuyển đổi nội dung web thành định dạng đánh dấu, hỗ trợ các tính năng như sao chép, tải xuống và gửi đến GitHub và Obsidian. - + ## Cài đặt đầu tiên Cài đặt đầu tiên sẽ thêm một số thử nghiệm quy tắc theo mặc định,Có thể bị xóa。 - + ## Cập nhật nhật ký - + ### 2024 Năm 6 mặt trăng 26 ngày @@ -131,7 +131,7 @@ Cài đặt đầu tiên sẽ thêm một số thử nghiệm quy tắc theo m - Đã thêm hỗ trợ để thiết lập màu văn bản(Bộ chọn màu thứ hai) - + ## Giúp đỡ @@ -145,14 +145,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -165,7 +165,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -183,7 +183,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -206,7 +206,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -216,7 +216,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -235,7 +235,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -253,7 +253,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -264,7 +264,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -275,7 +275,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/highlight-keywords/README_zh-TW.md b/highlight-keywords/README_zh-TW.md index b0f950fe1..4400ebcbc 100644 --- a/highlight-keywords/README_zh-TW.md +++ b/highlight-keywords/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,16 +69,16 @@ - + # 原作者發布頁[ mabangde](https://greasyfork.org/zh-CN/scripts/465200) - + ## 腳本功能 對網頁上的文字進行高亮顯示,如果對你有幫助,可以隨意修改使用。 - + ## UI 說明 @@ -90,14 +90,14 @@ - 鼠標移動到對應的關鍵字上會顯示你輸入的內容 3. **第三欄:關鍵字欄** - 輸入你想要高亮的詞,空格隔開 - + ## 圖片 ![hl.png](https://s2.loli.net/2024/08/05/oBWsunTIhLKkcrM.png) - + > ### 🔍你可能在找網頁相關腳本 > @@ -113,17 +113,17 @@ > - [**MarkDown 雲剪筆記**](https://greasyfork.org/scripts/530139): 將網頁內容轉換為 Markdown 格式的工具,支持複製、下載、發送到 GitHub 和 Obsidian 等功能。 - + ## 初次安裝 第一次安裝會默認添加一些規則測試,可以刪除。 - + ## 更新日誌 - + ### 2024 年 6 月 26 天 @@ -131,7 +131,7 @@ - 增加了對設置文字顏色的支持(第二個顏色選擇器) - + ## 使用幫助 @@ -145,14 +145,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -183,7 +183,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -253,7 +253,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -264,7 +264,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -275,7 +275,7 @@ - +
diff --git a/jable-auto-login-helper/README.md b/jable-auto-login-helper/README.md index 4273a1c3a..68aadba0c 100644 --- a/jable-auto-login-helper/README.md +++ b/jable-auto-login-helper/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -72,13 +72,13 @@ - + # JableTV AutoLogin Helper 这是一个用于JableTV 管理用户账户的脚本,主要功能自动登录以及检测用户是否已登录。 - + ## 功能 @@ -86,7 +86,7 @@ - **登录功能**: 使用用户提供的电子邮件和密码进行登录,并处理登录错误。 - **用户检测**: 检测用户是否已登录,如果未登录则尝试自动登录。 - + ## 安装和使用 @@ -104,7 +104,7 @@ - 脚本会自动检测用户是否已登录。如果检测到未登录状态,它将使用提供的账户信息尝试登录。 - + > ### 🔍你可能在找成人脚本 > @@ -121,7 +121,7 @@ - + ## 使用帮助 @@ -135,14 +135,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -155,7 +155,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -173,7 +173,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -243,7 +243,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -254,7 +254,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -265,7 +265,7 @@ - +
diff --git a/jable-auto-login-helper/README_en.md b/jable-auto-login-helper/README_en.md index 2d4377ac5..c3bd149a3 100644 --- a/jable-auto-login-helper/README_en.md +++ b/jable-auto-login-helper/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -72,13 +72,13 @@ - + # JableTV AutoLogin Helper This script is used for managing user accounts on JableTV . It provides functionalities for automatic login and checking if the user is already logged in. - + ## Features @@ -86,7 +86,7 @@ This script is used for managing user accounts on JableTV . It provides function - **Login Functionality**: Logs in using the provided email and password, and handles login errors. - **User Detection**: Checks if the user is logged in. If not, it attempts to log in automatically. - + ## Installation and Usage @@ -104,7 +104,7 @@ This script is used for managing user accounts on JableTV . It provides function - The script will automatically check if the user is logged in. If it detects that the user is not logged in, it will attempt to log in using the provided account information. - + > ### 🔍You might be looking for adult scripts > @@ -121,7 +121,7 @@ This script is used for managing user accounts on JableTV . It provides function - + ## Help @@ -135,14 +135,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -155,7 +155,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -173,7 +173,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -196,7 +196,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -225,7 +225,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -243,7 +243,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -254,7 +254,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -265,7 +265,7 @@ Recommended browser and script manager: - +
diff --git a/jable-auto-login-helper/README_ko.md b/jable-auto-login-helper/README_ko.md index 785579a70..efcc703b9 100644 --- a/jable-auto-login-helper/README_ko.md +++ b/jable-auto-login-helper/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -72,13 +72,13 @@ - + # JableTV AutoLogin Helper 이것은JableTV 사용자 계정을 관리하는 스크립트,주요 기능은 자동으로 로그인하고 사용자가 로그인되는지 여부를 감지합니다.。 - + ## 기능 @@ -86,7 +86,7 @@ - **로그인 기능**: 사용자 제공 이메일 및 비밀번호를 사용하여 로그인하십시오,로그인 오류를 처리합니다。 - **사용자 탐지**: 사용자가 로그인되었는지 확인하십시오,로그인하지 않으면 자동으로 로그인하십시오。 - + ## 설치 및 사용 @@ -104,7 +104,7 @@ - 스크립트는 사용자가 로그인되었는지 자동으로 감지합니다.。로그인 상태가 감지 된 경우,제공된 계정 정보를 사용하여 로그인하려고합니다.。 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -121,7 +121,7 @@ - + ## 돕다 @@ -135,14 +135,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -155,7 +155,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -173,7 +173,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -196,7 +196,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -206,7 +206,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -225,7 +225,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -243,7 +243,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -254,7 +254,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -265,7 +265,7 @@ - +
diff --git a/jable-auto-login-helper/README_vi.md b/jable-auto-login-helper/README_vi.md index da6197bae..43b31fba4 100644 --- a/jable-auto-login-helper/README_vi.md +++ b/jable-auto-login-helper/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -72,13 +72,13 @@ - + # JableTV AutoLogin Helper Đây là choJableTV Tập lệnh để quản lý tài khoản người dùng,Các chức năng chính tự động đăng nhập và phát hiện xem người dùng có đăng nhập không。 - + ## Chức năng @@ -86,7 +86,7 @@ - **Hàm đăng nhập**: Đăng nhập bằng cách sử dụng email và mật khẩu do người dùng cung cấp,Và xử lý các lỗi đăng nhập。 - **Phát hiện người dùng**: Kiểm tra xem người dùng có đăng nhập không,Nếu không đăng nhập, hãy thử đăng nhập tự động。 - + ## Cài đặt và sử dụng @@ -104,7 +104,7 @@ - Tập lệnh sẽ tự động phát hiện xem người dùng có đăng nhập không。Nếu trạng thái đăng nhập được phát hiện,Nó sẽ cố gắng đăng nhập bằng cách sử dụng thông tin tài khoản được cung cấp。 - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -121,7 +121,7 @@ - + ## Giúp đỡ @@ -135,14 +135,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -155,7 +155,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -173,7 +173,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -196,7 +196,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -206,7 +206,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -225,7 +225,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -243,7 +243,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -254,7 +254,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -265,7 +265,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/jable-auto-login-helper/README_zh-TW.md b/jable-auto-login-helper/README_zh-TW.md index 028d76ba6..0b8d2075f 100644 --- a/jable-auto-login-helper/README_zh-TW.md +++ b/jable-auto-login-helper/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -72,13 +72,13 @@ - + # JableTV AutoLogin Helper 這是一個用於JableTV 管理用戶賬戶的腳本,主要功能自動登錄以及檢測用戶是否已登錄。 - + ## 功能 @@ -86,7 +86,7 @@ - **登錄功能**: 使用用戶提供的電子郵件和密碼進行登錄,並處理登錄錯誤。 - **用戶檢測**: 檢測用戶是否已登錄,如果未登錄則嘗試自動登錄。 - + ## 安裝和使用 @@ -104,7 +104,7 @@ - 腳本會自動檢測用戶是否已登錄。如果檢測到未登錄狀態,它將使用提供的賬戶信息嘗試登錄。 - + > ### 🔍你可能在找成人腳本 > @@ -121,7 +121,7 @@ - + ## 使用幫助 @@ -135,14 +135,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -155,7 +155,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -173,7 +173,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -243,7 +243,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -254,7 +254,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -265,7 +265,7 @@ - +
diff --git a/missav-auto-login-helper/README.md b/missav-auto-login-helper/README.md index b706ec130..aae953cbf 100644 --- a/missav-auto-login-helper/README.md +++ b/missav-auto-login-helper/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -73,13 +73,13 @@ - + # MissAV AutoLogin Helper 这是一个用于MissAV管理用户账户的脚本,主要功能自动登录以及检测用户是否已登录。 - + ## 功能 @@ -87,7 +87,7 @@ - **登录功能**: 使用用户提供的电子邮件和密码进行登录,并处理登录错误。 - **用户检测**: 检测用户是否已登录,如果未登录则尝试自动登录。 - + ## 安装和使用 @@ -105,7 +105,7 @@ - 脚本会自动检测用户是否已登录。如果检测到未登录状态,它将使用提供的账户信息尝试登录。 - + > ### 🔍你可能在找成人脚本 > @@ -122,7 +122,7 @@ - + ## 使用帮助 @@ -136,14 +136,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -156,7 +156,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -174,7 +174,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -266,7 +266,7 @@ - +
diff --git a/missav-auto-login-helper/README_en.md b/missav-auto-login-helper/README_en.md index bb76b986b..f5d86e504 100644 --- a/missav-auto-login-helper/README_en.md +++ b/missav-auto-login-helper/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -73,13 +73,13 @@ - + # MissAV AutoLogin Helper This script is used for managing user accounts on MissAV. It provides functionalities for automatic login and checking if the user is already logged in. - + ## Features @@ -87,7 +87,7 @@ This script is used for managing user accounts on MissAV. It provides functional - **Login Functionality**: Logs in using the provided email and password, and handles login errors. - **User Detection**: Checks if the user is logged in. If not, it attempts to log in automatically. - + ## Installation and Usage @@ -105,7 +105,7 @@ This script is used for managing user accounts on MissAV. It provides functional - The script will automatically check if the user is logged in. If it detects that the user is not logged in, it will attempt to log in using the provided account information. - + > ### 🔍You might be looking for adult scripts > @@ -122,7 +122,7 @@ This script is used for managing user accounts on MissAV. It provides functional - + ## Help @@ -136,14 +136,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -156,7 +156,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -174,7 +174,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -197,7 +197,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -207,7 +207,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -226,7 +226,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -244,7 +244,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -255,7 +255,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -266,7 +266,7 @@ Recommended browser and script manager: - +
diff --git a/missav-auto-login-helper/README_ko.md b/missav-auto-login-helper/README_ko.md index a6dbdf445..4afcf44e3 100644 --- a/missav-auto-login-helper/README_ko.md +++ b/missav-auto-login-helper/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -73,13 +73,13 @@ - + # MissAV AutoLogin Helper 이것은MissAV사용자 계정을 관리하는 스크립트,주요 기능은 자동으로 로그인하고 사용자가 로그인되는지 여부를 감지합니다.。 - + ## 기능 @@ -87,7 +87,7 @@ - **로그인 기능**: 사용자 제공 이메일 및 비밀번호를 사용하여 로그인하십시오,로그인 오류를 처리합니다。 - **사용자 탐지**: 사용자가 로그인되었는지 확인하십시오,로그인하지 않으면 자동으로 로그인하십시오。 - + ## 설치 및 사용 @@ -105,7 +105,7 @@ - 스크립트는 사용자가 로그인되었는지 자동으로 감지합니다.。로그인 상태가 감지 된 경우,제공된 계정 정보를 사용하여 로그인하려고합니다.。 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -122,7 +122,7 @@ - + ## 돕다 @@ -136,14 +136,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -156,7 +156,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -174,7 +174,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -197,7 +197,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -207,7 +207,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -226,7 +226,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -244,7 +244,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -255,7 +255,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ - +
diff --git a/missav-auto-login-helper/README_vi.md b/missav-auto-login-helper/README_vi.md index ec9fa5fa2..706678f8c 100644 --- a/missav-auto-login-helper/README_vi.md +++ b/missav-auto-login-helper/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -73,13 +73,13 @@ - + # MissAV AutoLogin Helper Đây là choMissAVTập lệnh để quản lý tài khoản người dùng,Các chức năng chính tự động đăng nhập và phát hiện xem người dùng có đăng nhập không。 - + ## Chức năng @@ -87,7 +87,7 @@ - **Hàm đăng nhập**: Đăng nhập bằng cách sử dụng email và mật khẩu do người dùng cung cấp,Và xử lý các lỗi đăng nhập。 - **Phát hiện người dùng**: Kiểm tra xem người dùng có đăng nhập không,Nếu không đăng nhập, hãy thử đăng nhập tự động。 - + ## Cài đặt và sử dụng @@ -105,7 +105,7 @@ - Tập lệnh sẽ tự động phát hiện xem người dùng có đăng nhập không。Nếu trạng thái đăng nhập được phát hiện,Nó sẽ cố gắng đăng nhập bằng cách sử dụng thông tin tài khoản được cung cấp。 - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -122,7 +122,7 @@ - + ## Giúp đỡ @@ -136,14 +136,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -156,7 +156,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -174,7 +174,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -197,7 +197,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -207,7 +207,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -226,7 +226,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -244,7 +244,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -255,7 +255,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/missav-auto-login-helper/README_zh-TW.md b/missav-auto-login-helper/README_zh-TW.md index 527acb4b3..47e16f120 100644 --- a/missav-auto-login-helper/README_zh-TW.md +++ b/missav-auto-login-helper/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -73,13 +73,13 @@ - + # MissAV AutoLogin Helper 這是一個用於MissAV管理用戶賬戶的腳本,主要功能自動登錄以及檢測用戶是否已登錄。 - + ## 功能 @@ -87,7 +87,7 @@ - **登錄功能**: 使用用戶提供的電子郵件和密碼進行登錄,並處理登錄錯誤。 - **用戶檢測**: 檢測用戶是否已登錄,如果未登錄則嘗試自動登錄。 - + ## 安裝和使用 @@ -105,7 +105,7 @@ - 腳本會自動檢測用戶是否已登錄。如果檢測到未登錄狀態,它將使用提供的賬戶信息嘗試登錄。 - + > ### 🔍你可能在找成人腳本 > @@ -122,7 +122,7 @@ - + ## 使用幫助 @@ -136,14 +136,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -156,7 +156,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -174,7 +174,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -197,7 +197,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -226,7 +226,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -244,7 +244,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -266,7 +266,7 @@ - +
diff --git a/missav-enhancer/README.md b/missav-enhancer/README.md index fded4f976..ec5f79682 100644 --- a/missav-enhancer/README.md +++ b/missav-enhancer/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -117,7 +117,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找成人脚本 > @@ -134,7 +134,7 @@ _以下可在脚本内设置_ - + ## 使用帮助 @@ -148,13 +148,13 @@ _以下可在脚本内设置_ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -166,7 +166,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找网页相关脚本 > @@ -183,7 +183,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -205,7 +205,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找Google相关脚本 > @@ -214,7 +214,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -232,7 +232,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找成人脚本 > @@ -249,7 +249,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找自动翻译 > @@ -259,7 +259,7 @@ _以下可在脚本内设置_ - + > ### 🔍你可能在找社交媒体脚本 > @@ -270,7 +270,7 @@ _以下可在脚本内设置_ - +
diff --git a/missav-enhancer/README_en.md b/missav-enhancer/README_en.md index 8f976655f..5759cacfb 100644 --- a/missav-enhancer/README_en.md +++ b/missav-enhancer/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -117,7 +117,7 @@ _The following can be set in the script_ - + > ### 🔍You might be looking for adult scripts > @@ -134,7 +134,7 @@ _The following can be set in the script_ - + ## Help @@ -148,13 +148,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -166,7 +166,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -183,7 +183,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -205,7 +205,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -214,7 +214,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -232,7 +232,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -249,7 +249,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -259,7 +259,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -270,7 +270,7 @@ Recommended browser and script manager: - +
diff --git a/missav-enhancer/README_ko.md b/missav-enhancer/README_ko.md index ab6e86d74..7ca9ba030 100644 --- a/missav-enhancer/README_ko.md +++ b/missav-enhancer/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -117,7 +117,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -134,7 +134,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + ## 돕다 @@ -148,13 +148,13 @@ _다음은 스크립트에서 설정할 수 있습니다_ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -166,7 +166,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -183,7 +183,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -205,7 +205,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -214,7 +214,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -232,7 +232,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -249,7 +249,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -259,7 +259,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -270,7 +270,7 @@ _다음은 스크립트에서 설정할 수 있습니다_ - +
diff --git a/missav-enhancer/README_vi.md b/missav-enhancer/README_vi.md index ee0984fe4..18eabc940 100644 --- a/missav-enhancer/README_vi.md +++ b/missav-enhancer/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -117,7 +117,7 @@ _Phần sau có thể được đặt trong tập lệnh_ - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -134,7 +134,7 @@ _Phần sau có thể được đặt trong tập lệnh_ - + ## Giúp đỡ @@ -148,13 +148,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -166,7 +166,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -183,7 +183,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -205,7 +205,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -232,7 +232,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -249,7 +249,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -259,7 +259,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -270,7 +270,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/missav-enhancer/README_zh-TW.md b/missav-enhancer/README_zh-TW.md index 6cc463b51..baa4b3c99 100644 --- a/missav-enhancer/README_zh-TW.md +++ b/missav-enhancer/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -117,7 +117,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找成人腳本 > @@ -134,7 +134,7 @@ _以下可在腳本內設置_ - + ## 使用幫助 @@ -148,13 +148,13 @@ _以下可在腳本內設置_ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -166,7 +166,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找網頁相關腳本 > @@ -183,7 +183,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -205,7 +205,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找Google相關腳本 > @@ -214,7 +214,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -232,7 +232,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找成人腳本 > @@ -249,7 +249,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找自動翻譯 > @@ -259,7 +259,7 @@ _以下可在腳本內設置_ - + > ### 🔍你可能在找社交媒體腳本 > @@ -270,7 +270,7 @@ _以下可在腳本內設置_ - +
diff --git a/missav-explorer/README.md b/missav-explorer/README.md index 13e0e6b54..86f9df35a 100644 --- a/missav-explorer/README.md +++ b/missav-explorer/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -73,17 +73,17 @@ - + # Missav 批量提取器 - + ## 简介 Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工具。它可以抓取除了主页下的所有视频,并提供了自定义提取速度和文件命名的功能。下载完成后,生成一个包含图片的 `img` 文件夹和一个 `保存文件名.html` 命名网页文件,用于查看获得的视频信息。 - + ## 功能 @@ -101,11 +101,11 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - **高清大图下载**:支持下载高清大图。 - **支持WebDAV备份**:在下载同时保存到webdav。 - + ## 更新记录 - + ### 2024/6/14 更新 @@ -118,13 +118,13 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - **HTML 生成的界面支持从网络获取图片**:生成的 HTML 界面可以从网络获取图片。 - **下载高清大图**:支持下载高清大图。 - + ## 已知问题 - **最后一页获取完成后提示获取超出最大页的信息**:实际不会去获取。 - + ## 使用说明 @@ -135,7 +135,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 5. **查看 `jsonindex` 网页文件**:查看视频信息,点击图片查看预览,点击标题跳转到 Missav 页面。 - + > ### 🔍你可能在找成人脚本 > @@ -152,7 +152,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + ## 使用帮助 @@ -166,14 +166,14 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -186,7 +186,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找网页相关脚本 > @@ -204,7 +204,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -227,7 +227,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找Google相关脚本 > @@ -237,7 +237,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -256,7 +256,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找成人脚本 > @@ -274,7 +274,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找自动翻译 > @@ -285,7 +285,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - + > ### 🔍你可能在找社交媒体脚本 > @@ -296,7 +296,7 @@ Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工 - +
diff --git a/missav-explorer/README_en.md b/missav-explorer/README_en.md index 0f6f243a9..738868ba8 100644 --- a/missav-explorer/README_en.md +++ b/missav-explorer/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -73,17 +73,17 @@ - + # Missav Batch Extractor - + ## Introduction Missav Batch Extractor is a tool for backing up favorites and extracting video content。It can crawl all videos except the home page,It also provides custom extraction speed and file naming functions。After the download is completed,Generate a picture containing `img` Folder and one `Save file name.html` Name web files,Used to view obtained video information。 - + ## Function @@ -101,11 +101,11 @@ Missav Batch Extractor is a tool for backing up favorites and extracting video c - **Download high-definition large image**:Support downloading of high-definition large images。 - **supportWebDAVBackup**:Save towebdav。 - + ## Update records - + ### 2024/6/14 renew @@ -118,13 +118,13 @@ Missav Batch Extractor is a tool for backing up favorites and extracting video c - **HTML GeneratedThe interface supports getting pictures from the network**:Generated HTML The interface can obtain pictures from the network。 - **Download high-definition large image**:Support downloading of high-definition large images。 - + ## Known issues - **After the last page is retrieved, it is prompted to obtain information exceeding the maximum page.**:I won’t actually get it。 - + ## Instructions for use @@ -135,7 +135,7 @@ Missav Batch Extractor is a tool for backing up favorites and extracting video c 5. **Check `jsonindex` Web page files**:View video information,Click on the image to view the preview,Click the title to jump to Missav page。 - + > ### 🔍You might be looking for adult scripts > @@ -152,7 +152,7 @@ Missav Batch Extractor is a tool for backing up favorites and extracting video c - + ## Help @@ -166,14 +166,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -186,7 +186,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -204,7 +204,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -227,7 +227,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -237,7 +237,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -256,7 +256,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -274,7 +274,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -285,7 +285,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -296,7 +296,7 @@ Recommended browser and script manager: - +
diff --git a/missav-explorer/README_ko.md b/missav-explorer/README_ko.md index 2d28cca41..107d25e36 100644 --- a/missav-explorer/README_ko.md +++ b/missav-explorer/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -73,17 +73,17 @@ - + # Missav 배치 추출기 - + ## 소개 Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 추출하는 도구입니다.。홈페이지를 제외한 모든 비디오를 크롤링 할 수 있습니다,또한 사용자 정의 추출 속도와 파일 이름 지정 기능을 제공합니다.。다운로드가 완료된 후,포함 된 그림을 생성하십시오 `img` 폴더와 하나 `파일 이름을 저장합니다.html` 이름 웹 파일,얻은 비디오 정보를 보는 데 사용됩니다。 - + ## 기능 @@ -101,11 +101,11 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - **고화질 큰 이미지를 다운로드하십시오**:고화질 큰 이미지의 다운로드 지원。 - **지원하다WebDAV지원**:저장하십시오webdav。 - + ## 레코드 업데이트 - + ### 2024/6/14 고쳐 쓰다 @@ -118,13 +118,13 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - **HTML 생성인터페이스는 네트워크에서 사진을 얻는 것을 지원합니다**:생성 HTML 인터페이스는 네트워크에서 사진을 얻을 수 있습니다。 - **고화질 큰 이미지를 다운로드하십시오**:고화질 큰 이미지의 다운로드 지원。 - + ## 알려진 문제 - **마지막 페이지를 검색 한 후 최대 페이지를 초과하는 정보를 얻을 수 있습니다.**:나는 실제로 그것을 얻지 못할 것입니다。 - + ## 사용 지침 @@ -135,7 +135,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 5. **확인하다 `jsonindex` 웹 페이지 파일**:비디오 정보를 봅니다,미리보기를 보려면 이미지를 클릭하십시오,제목을 클릭하여 점프하십시오 Missav 페이지。 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -152,7 +152,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + ## 돕다 @@ -166,14 +166,14 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -186,7 +186,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -204,7 +204,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -227,7 +227,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -237,7 +237,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -256,7 +256,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -274,7 +274,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -285,7 +285,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -296,7 +296,7 @@ Missav 배치 추출기는 즐겨 찾기를 백업하고 비디오 컨텐츠를 - +
diff --git a/missav-explorer/README_vi.md b/missav-explorer/README_vi.md index b434f77b5..2f9e7b8b3 100644 --- a/missav-explorer/README_vi.md +++ b/missav-explorer/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -73,17 +73,17 @@ - + # Missav Trích xuất lô - + ## Giới thiệu Missav Trích xuất hàng loạt là một công cụ để sao lưu các mục yêu thích và trích xuất nội dung video。Nó có thể thu thập dữ liệu tất cả các video ngoại trừ trang chủ,Nó cũng cung cấp các chức năng đặt tên và tốc độ trích xuất tùy chỉnh。Sau khi tải xuống hoàn tất,Tạo một bức tranh chứa `img` Thư mục và một `Lưu tên tệp.html` Tên tệp web,Được sử dụng để xem thông tin video thu được。 - + ## Chức năng @@ -101,11 +101,11 @@ Missav Trích xuất hàng loạt là một công cụ để sao lưu các mục - **Tải xuống hình ảnh lớn độ nét cao**:Hỗ trợ tải xuống hình ảnh lớn độ nét cao。 - **ủng hộWebDAVHỗ trợ**:Lưu đếnwebdav。 - + ## Cập nhật hồ sơ - + ### 2024/6/14 gia hạn @@ -118,13 +118,13 @@ Missav Trích xuất hàng loạt là một công cụ để sao lưu các mục - **HTML Tạo raGiao diện hỗ trợ nhận hình ảnh từ mạng**:Tạo ra HTML Giao diện có thể lấy hình ảnh từ mạng。 - **Tải xuống hình ảnh lớn độ nét cao**:Hỗ trợ tải xuống hình ảnh lớn độ nét cao。 - + ## Các vấn đề đã biết - **Sau khi trang cuối cùng được truy xuất, nó được nhắc để có được thông tin vượt quá trang tối đa.**:Tôi sẽ không thực sự nhận được nó。 - + ## Hướng dẫn sử dụng @@ -135,7 +135,7 @@ Missav Trích xuất hàng loạt là một công cụ để sao lưu các mục 5. **Kiểm tra `jsonindex` Tệp trang web**:Xem thông tin video,Nhấp vào hình ảnh để xem bản xem trước,Nhấp vào tiêu đề để nhảy đến Missav trang。 - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -152,7 +152,7 @@ Missav Trích xuất hàng loạt là một công cụ để sao lưu các mục - + ## Giúp đỡ @@ -166,14 +166,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -186,7 +186,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -204,7 +204,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -227,7 +227,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -237,7 +237,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -256,7 +256,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -274,7 +274,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -285,7 +285,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -296,7 +296,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/missav-explorer/README_zh-TW.md b/missav-explorer/README_zh-TW.md index 6709e9ecf..03c08d057 100644 --- a/missav-explorer/README_zh-TW.md +++ b/missav-explorer/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -73,17 +73,17 @@ - + # Missav 批量提取器 - + ## 簡介 Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工具。它可以抓取除了主頁下的所有視頻,並提供了自定義提取速度和文件命名的功能。下載完成後,生成一個包含圖片的 `img` 文件夾和一個 `保存文件名.html` 命名網頁文件,用於查看獲得的視頻信息。 - + ## 功能 @@ -101,11 +101,11 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - **高清大圖下載**:支持下載高清大圖。 - **支持WebDAV備份**:在下載同時保存到webdav。 - + ## 更新記錄 - + ### 2024/6/14 更新 @@ -118,13 +118,13 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - **HTML 生成的界面支持從網絡獲取圖片**:生成的 HTML 界面可以從網絡獲取圖片。 - **下載高清大圖**:支持下載高清大圖。 - + ## 已知問題 - **最後一頁獲取完成後提示獲取超出最大頁的信息**:實際不會去獲取。 - + ## 使用說明 @@ -135,7 +135,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 5. **查看 `jsonindex` 網頁文件**:查看視頻信息,點擊圖片查看預覽,點擊標題跳轉到 Missav 頁面。 - + > ### 🔍你可能在找成人腳本 > @@ -152,7 +152,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + ## 使用幫助 @@ -166,14 +166,14 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -186,7 +186,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找網頁相關腳本 > @@ -204,7 +204,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -227,7 +227,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找Google相關腳本 > @@ -237,7 +237,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -256,7 +256,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找成人腳本 > @@ -274,7 +274,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找自動翻譯 > @@ -285,7 +285,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - + > ### 🔍你可能在找社交媒體腳本 > @@ -296,7 +296,7 @@ Missav 批量提取器是一個用於備份收藏夾和提取視頻內容的工 - +
diff --git a/missav-m3u8-finder/README.md b/missav-m3u8-finder/README.md index c5c69f725..2846c7693 100644 --- a/missav-m3u8-finder/README.md +++ b/missav-m3u8-finder/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -85,7 +85,7 @@ 增加下载进度显示。别问。问就是更新的贼快 - + > ### 🔍你可能在找成人脚本 > @@ -102,7 +102,7 @@ - + ## 使用帮助 @@ -116,13 +116,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -134,7 +134,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -151,7 +151,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -173,7 +173,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -182,7 +182,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -200,7 +200,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -227,7 +227,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -238,7 +238,7 @@ - +
diff --git a/missav-m3u8-finder/README_en.md b/missav-m3u8-finder/README_en.md index 0ec849b99..8dce774c8 100644 --- a/missav-m3u8-finder/README_en.md +++ b/missav-m3u8-finder/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -85,7 +85,7 @@ Added download function,Multi-threaded asynchronous download。No progress dis Increase download progress display。Don’t ask。Ask it’s very fast to update - + > ### 🔍You might be looking for adult scripts > @@ -102,7 +102,7 @@ Increase download progress display。Don’t ask。Ask it’s very fast to updat - + ## Help @@ -116,13 +116,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -134,7 +134,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -151,7 +151,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -173,7 +173,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -182,7 +182,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -200,7 +200,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -217,7 +217,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -227,7 +227,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -238,7 +238,7 @@ Recommended browser and script manager: - +
diff --git a/missav-m3u8-finder/README_ko.md b/missav-m3u8-finder/README_ko.md index 0db40d993..dc7829558 100644 --- a/missav-m3u8-finder/README_ko.md +++ b/missav-m3u8-finder/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -85,7 +85,7 @@ 다운로드 진행 상황 디스플레이를 늘리십시오。묻지 마세요。업데이트하는 것이 매우 빠릅니다 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -102,7 +102,7 @@ - + ## 돕다 @@ -116,13 +116,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -134,7 +134,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -151,7 +151,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -173,7 +173,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -182,7 +182,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -200,7 +200,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -217,7 +217,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -227,7 +227,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -238,7 +238,7 @@ - +
diff --git a/missav-m3u8-finder/README_vi.md b/missav-m3u8-finder/README_vi.md index 034a58f99..d6b9da58f 100644 --- a/missav-m3u8-finder/README_vi.md +++ b/missav-m3u8-finder/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -85,7 +85,7 @@ Có sẵn [m3u8 Người tải xuống](https://github.com/nilaoda/N_m3u8DL-RE)T Tăng màn hình tiến trình tải xuống。Đừng hỏi。Hỏi nó rất nhanh để cập nhật - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -102,7 +102,7 @@ Tăng màn hình tiến trình tải xuống。Đừng hỏi。Hỏi nó rất n - + ## Giúp đỡ @@ -116,13 +116,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -134,7 +134,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -151,7 +151,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -173,7 +173,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -182,7 +182,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -200,7 +200,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -217,7 +217,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -227,7 +227,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -238,7 +238,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/missav-m3u8-finder/README_zh-TW.md b/missav-m3u8-finder/README_zh-TW.md index dd852dd2f..c64458cf6 100644 --- a/missav-m3u8-finder/README_zh-TW.md +++ b/missav-m3u8-finder/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -85,7 +85,7 @@ 增加下載進度顯示。別問。問就是更新的賊快 - + > ### 🔍你可能在找成人腳本 > @@ -102,7 +102,7 @@ - + ## 使用幫助 @@ -116,13 +116,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -134,7 +134,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -151,7 +151,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -173,7 +173,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -182,7 +182,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -200,7 +200,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -227,7 +227,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -238,7 +238,7 @@ - +
diff --git a/no-zh-terminator/README.md b/no-zh-terminator/README.md index 46dc5ef89..981d5a7a0 100644 --- a/no-zh-terminator/README.md +++ b/no-zh-terminator/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -74,7 +74,7 @@

使用的Goolge翻译.无法连接Google的请不要下载

- + # 外语终结者 @@ -82,7 +82,7 @@ **作者:** [人民的勤务员](https://greasyfork.org/zh-CN/users/1169082) **描述:** 识别非中文字符,如果长度大于5且翻译文本中不含中文,则替换为中文。 - + ## 功能说明 @@ -90,7 +90,7 @@ - **站点控制:** 用户可以通过菜单命令来控制翻译功能在特定站点的启用或禁用。 - + ## 使用说明 @@ -98,7 +98,7 @@ - 可通过用户菜单控制翻译功能的启用和禁用。 - 编辑生效站点列表,定制哪些站点启用翻译功能。 - + ## 配置和定制 @@ -107,19 +107,19 @@ - **添加/移出翻译:** 选择当前站点是否启用翻译。 - **编辑生效站点:** 手动编辑站点列表,定制翻译功能。 - + ## 使用前: ![bf.png](https://s2.loli.net/2024/08/24/kuC7yUIwPmcRje8.png) - + ## 使用后: ![af.png](https://s2.loli.net/2024/08/24/nYrsvgqNukK1ADZ.png) - + > ### 🔍你可能在找自动翻译 > @@ -129,7 +129,7 @@ - + ## 使用帮助 @@ -143,14 +143,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -163,7 +163,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -204,7 +204,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -233,7 +233,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -262,7 +262,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -273,7 +273,7 @@ - +
diff --git a/no-zh-terminator/README_en.md b/no-zh-terminator/README_en.md index 5033086c5..efaba1a5f 100644 --- a/no-zh-terminator/README_en.md +++ b/no-zh-terminator/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -74,7 +74,7 @@

UsedGoolgetranslate.Unable to connectGooglePlease do not download

- + # Foreign Language Terminator @@ -82,7 +82,7 @@ **author:** [人民的勤务员](https://greasyfork.org/zh-CN/users/1169082) **describe:** Recognize non-Chinese characters,If the length is greater than5And the translated text does not contain Chinese,Replace it with Chinese。 - + ## Function description @@ -90,7 +90,7 @@ This script can recognize non-Chinese characters on web pages,and automaticall - **Site Control:** Users can control the activation or disabling of translation functions on specific sites through menu commands.。 - + ## Instructions for use @@ -98,7 +98,7 @@ This script can recognize non-Chinese characters on web pages,and automaticall - The user menu can control the enablement and disabling of the translation function.。 - Edit the effective site list,Customize which sites enable translation。 - + ## Configuration and customization @@ -107,19 +107,19 @@ Users can use the following command to perform the following operations: - **Add to/Move out translation:** Select whether to enable translation on the current site。 - **Edit effective site:** Manually edit site list,Customized translation functions。 - + ## Before use: ![bf.png](https://s2.loli.net/2024/08/24/kuC7yUIwPmcRje8.png) - + ## After use: ![af.png](https://s2.loli.net/2024/08/24/nYrsvgqNukK1ADZ.png) - + > ### 🔍You may be looking for automatic translation > @@ -129,7 +129,7 @@ Users can use the following command to perform the following operations: - + ## Help @@ -143,14 +143,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -163,7 +163,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -181,7 +181,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -204,7 +204,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -214,7 +214,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -233,7 +233,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -251,7 +251,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -262,7 +262,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -273,7 +273,7 @@ Recommended browser and script manager: - +
diff --git a/no-zh-terminator/README_ko.md b/no-zh-terminator/README_ko.md index 2b67ec671..76a1dfaf6 100644 --- a/no-zh-terminator/README_ko.md +++ b/no-zh-terminator/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -74,7 +74,7 @@

사용된Goolge번역하다.연결할 수 없습니다Google다운로드하지 마십시오

- + # 외국어 터미네이터 @@ -82,7 +82,7 @@ **작가:** [人民的勤务员](https://greasyfork.org/zh-CN/users/1169082) **설명하다:** 비 중국어 캐릭터를 인식합니다,길이가 더 큰 경우5번역 된 텍스트에는 중국어가 포함되어 있지 않습니다,중국어로 교체하십시오。 - + ## 기능 설명 @@ -90,7 +90,7 @@ - **사이트 제어:** 사용자는 메뉴 명령을 통해 특정 사이트에서 번역 기능의 활성화 또는 비활성화를 제어 할 수 있습니다.。 - + ## 사용 지침 @@ -98,7 +98,7 @@ - 사용자 메뉴는 번역 기능의 활성화 및 비활성화를 제어 할 수 있습니다.。 - 유효 사이트 목록을 편집하십시오,어떤 사이트가 번역을 활성화하는지 사용자 정의하십시오。 - + ## 구성 및 사용자 정의 @@ -107,19 +107,19 @@ - **추가/번역을 옮기십시오:** 현재 사이트에서 번역을 활성화할지 여부를 선택하십시오。 - **효과적인 사이트를 편집하십시오:** 사이트 목록을 수동으로 편집합니다,맞춤형 번역 기능。 - + ## 사용하기 전에: ![bf.png](https://s2.loli.net/2024/08/24/kuC7yUIwPmcRje8.png) - + ## 사용 후: ![af.png](https://s2.loli.net/2024/08/24/nYrsvgqNukK1ADZ.png) - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -129,7 +129,7 @@ - + ## 돕다 @@ -143,14 +143,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -163,7 +163,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -181,7 +181,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -204,7 +204,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -214,7 +214,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -233,7 +233,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -251,7 +251,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -262,7 +262,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -273,7 +273,7 @@ - +
diff --git a/no-zh-terminator/README_vi.md b/no-zh-terminator/README_vi.md index 45c59541b..31bbec86d 100644 --- a/no-zh-terminator/README_vi.md +++ b/no-zh-terminator/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -74,7 +74,7 @@

Đã sử dụngGoolgedịch.Không thể kết nốiGoogleVui lòng không tải xuống

- + # Terminator ngoại ngữ @@ -82,7 +82,7 @@ **tác giả:** [人民的勤务员](https://greasyfork.org/zh-CN/users/1169082) **mô tả:** Nhận ra các ký tự không phải người Trung Quốc,Nếu độ dài lớn hơn5Và văn bản dịch không chứa tiếng Trung,Thay thế nó bằng tiếng Trung。 - + ## Mô tả chức năng @@ -90,7 +90,7 @@ Tập lệnh này có thể nhận ra các ký tự không phải người Trung - **Kiểm soát trang web:** Người dùng có thể kiểm soát việc kích hoạt hoặc vô hiệu hóa các hàm dịch trên các trang web cụ thể thông qua các lệnh menu.。 - + ## Hướng dẫn sử dụng @@ -98,7 +98,7 @@ Tập lệnh này có thể nhận ra các ký tự không phải người Trung - Menu người dùng có thể kiểm soát việc hỗ trợ và vô hiệu hóa chức năng dịch.。 - Chỉnh sửa danh sách trang web hiệu quả,Tùy chỉnh trang web nào cho phép dịch。 - + ## Cấu hình và tùy chỉnh @@ -107,19 +107,19 @@ Người dùng có thể sử dụng lệnh sau để thực hiện các hoạt - **Thêm vào/Di chuyển ra bản dịch:** Chọn xem có thể bật dịch trên trang web hiện tại。 - **Chỉnh sửa trang web hiệu quả:** Danh sách trang web chỉnh sửa thủ công,Chức năng dịch tùy chỉnh。 - + ## Trước khi sử dụng: ![bf.png](https://s2.loli.net/2024/08/24/kuC7yUIwPmcRje8.png) - + ## Sau khi sử dụng: ![af.png](https://s2.loli.net/2024/08/24/nYrsvgqNukK1ADZ.png) - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -129,7 +129,7 @@ Người dùng có thể sử dụng lệnh sau để thực hiện các hoạt - + ## Giúp đỡ @@ -143,14 +143,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -163,7 +163,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -181,7 +181,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -204,7 +204,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -233,7 +233,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -251,7 +251,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -262,7 +262,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -273,7 +273,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/no-zh-terminator/README_zh-TW.md b/no-zh-terminator/README_zh-TW.md index 2175ec6e1..2428172ab 100644 --- a/no-zh-terminator/README_zh-TW.md +++ b/no-zh-terminator/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -74,7 +74,7 @@

使用的Goolge翻譯.無法連接Google的請不要下載

- + # 外語終結者 @@ -82,7 +82,7 @@ **作者:** [人民的勤务员](https://greasyfork.org/zh-CN/users/1169082) **描述:** 識別非中文字符,如果長度大於5且翻譯文本中不含中文,則替換為中文。 - + ## 功能說明 @@ -90,7 +90,7 @@ - **站點控制:** 用戶可以通過菜單命令來控制翻譯功能在特定站點的啟用或禁用。 - + ## 使用說明 @@ -98,7 +98,7 @@ - 可通過用戶菜單控制翻譯功能的啟用和禁用。 - 編輯生效站點列表,定制哪些站點啟用翻譯功能。 - + ## 配置和定制 @@ -107,19 +107,19 @@ - **添加/移出翻譯:** 選擇當前站點是否啟用翻譯。 - **編輯生效站點:** 手動編輯站點列表,定制翻譯功能。 - + ## 使用前: ![bf.png](https://s2.loli.net/2024/08/24/kuC7yUIwPmcRje8.png) - + ## 使用後: ![af.png](https://s2.loli.net/2024/08/24/nYrsvgqNukK1ADZ.png) - + > ### 🔍你可能在找自動翻譯 > @@ -129,7 +129,7 @@ - + ## 使用幫助 @@ -143,14 +143,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -163,7 +163,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -204,7 +204,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -233,7 +233,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -262,7 +262,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -273,7 +273,7 @@ - +
diff --git a/package-lock.json b/package-lock.json index 18f9f575d..fce2fdd47 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16,19 +16,19 @@ ], "license": "MIT", "devDependencies": { - "@eslint/json": "^1.2.0", - "@eslint/markdown": "^8.0.1", + "@eslint/json": "^2.0.0", + "@eslint/markdown": "^8.0.2", "@stylistic/eslint-plugin": "^5.10.0", - "cz-git": "^1.12.0", - "czg": "^1.12.0", + "cz-git": "^1.13.1", + "czg": "^1.13.1", "eslint": "^9.39.2", "eslint-plugin-import": "^2.32.0", - "eslint-plugin-regexp": "^3.1.0", + "eslint-plugin-regexp": "^3.1.1", "eslint-plugin-userscripts": "^0.5.6", - "eslint-plugin-yml": "^3.3.1", + "eslint-plugin-yml": "^3.5.0", "husky": "^9.1.7", - "lint-staged": "^16.4.0", - "prettier": "^3.8.1" + "lint-staged": "^17.0.8", + "prettier": "^3.9.4" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -148,14 +148,14 @@ } }, "node_modules/@eslint/json": { - "version": "1.2.0", - "resolved": "https://registry.npmmirror.com/@eslint/json/-/json-1.2.0.tgz", - "integrity": "sha512-CEFEyNgvzu8zn5QwVYDg3FaG+ZKUeUsNYitFpMYJAqoAlnw68EQgNbUfheSmexZr4n0wZPrAkPLuvsLaXO6wRw==", + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@eslint/json/-/json-2.0.0.tgz", + "integrity": "sha512-P32ZJMIopNWQd1SFhd0tgjfA/hgzUuVSqHmMi2273QaLWHWimXq6V+qL4DNKnjGzO/aNECtYW+rEJ/pWB6uP+w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^1.1.1", - "@eslint/plugin-kit": "^0.6.1", + "@eslint/core": "^1.2.1", + "@eslint/plugin-kit": "^0.7.1", "@humanwhocodes/momoa": "^3.3.10", "natural-compare": "^1.4.0" }, @@ -164,9 +164,9 @@ } }, "node_modules/@eslint/json/node_modules/@eslint/core": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.1.1.tgz", - "integrity": "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==", + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.2.1.tgz", + "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -177,13 +177,13 @@ } }, "node_modules/@eslint/json/node_modules/@eslint/plugin-kit": { - "version": "0.6.1", - "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.6.1.tgz", - "integrity": "sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==", + "version": "0.7.2", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.7.2.tgz", + "integrity": "sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^1.1.1", + "@eslint/core": "^1.2.1", "levn": "^0.4.1" }, "engines": { @@ -191,17 +191,17 @@ } }, "node_modules/@eslint/markdown": { - "version": "8.0.1", - "resolved": "https://registry.npmmirror.com/@eslint/markdown/-/markdown-8.0.1.tgz", - "integrity": "sha512-WWKmld/EyNdEB8GMq7JMPX1SDWgyJAM1uhtCi5ySrqYQM4HQjmg11EX/q3ZpnpRXHfdccFtli3NBvvGaYjWyQw==", + "version": "8.0.2", + "resolved": "https://registry.npmmirror.com/@eslint/markdown/-/markdown-8.0.2.tgz", + "integrity": "sha512-W+/0qHp0WbvFEljUvvECNpSWrUHpBWIWwp7F3QqEwQKmaRCmfEWvk6VfUia9pTQ0th6HyBGBsPfg/kG3/aQxLA==", "dev": true, "license": "MIT", "workspaces": [ "examples/*" ], "dependencies": { - "@eslint/core": "^1.1.1", - "@eslint/plugin-kit": "^0.6.1", + "@eslint/core": "^1.2.1", + "@eslint/plugin-kit": "^0.7.1", "github-slugger": "^2.0.0", "mdast-util-from-markdown": "^2.0.2", "mdast-util-frontmatter": "^2.0.1", @@ -217,9 +217,9 @@ } }, "node_modules/@eslint/markdown/node_modules/@eslint/core": { - "version": "1.1.1", - "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.1.1.tgz", - "integrity": "sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==", + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.2.1.tgz", + "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -230,13 +230,13 @@ } }, "node_modules/@eslint/markdown/node_modules/@eslint/plugin-kit": { - "version": "0.6.1", - "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.6.1.tgz", - "integrity": "sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==", + "version": "0.7.1", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz", + "integrity": "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^1.1.1", + "@eslint/core": "^1.2.1", "levn": "^0.4.1" }, "engines": { @@ -518,9 +518,9 @@ } }, "node_modules/ansi-escapes": { - "version": "7.1.1", - "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-7.1.1.tgz", - "integrity": "sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q==", + "version": "7.3.0", + "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", "dev": true, "license": "MIT", "dependencies": { @@ -839,14 +839,14 @@ } }, "node_modules/cli-truncate": { - "version": "5.1.0", - "resolved": "https://registry.npmmirror.com/cli-truncate/-/cli-truncate-5.1.0.tgz", - "integrity": "sha512-7JDGG+4Zp0CsknDCedl0DYdaeOhc46QNpXi3NLQblkZpXXgA6LncLDUUyvrjSvZeF3VRQa+KiMGomazQrC1V8g==", + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/cli-truncate/-/cli-truncate-5.2.0.tgz", + "integrity": "sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==", "dev": true, "license": "MIT", "dependencies": { - "slice-ansi": "^7.1.0", - "string-width": "^8.0.0" + "slice-ansi": "^8.0.0", + "string-width": "^8.2.0" }, "engines": { "node": ">=20" @@ -875,23 +875,6 @@ "dev": true, "license": "MIT" }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmmirror.com/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/commander": { - "version": "14.0.3", - "resolved": "https://registry.npmmirror.com/commander/-/commander-14.0.3.tgz", - "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=20" - } - }, "node_modules/comment-parser": { "version": "1.4.1", "resolved": "https://registry.npmmirror.com/comment-parser/-/comment-parser-1.4.1.tgz", @@ -924,9 +907,9 @@ } }, "node_modules/cz-git": { - "version": "1.12.0", - "resolved": "https://registry.npmmirror.com/cz-git/-/cz-git-1.12.0.tgz", - "integrity": "sha512-LaZ+8whPPUOo6Y0Zy4nIbf6JOleV3ejp41sT6N4RPKiKKA+ICWf4ueeIlxIO8b6JtdlDxRzHH/EcRji07nDxcg==", + "version": "1.13.1", + "resolved": "https://registry.npmmirror.com/cz-git/-/cz-git-1.13.1.tgz", + "integrity": "sha512-xeMA5ci+gkBY6uKmqc6nzhG/Q4pmK1DKbVVUgByOTBgregoiYE0f3otEF0ADelyEWH4vNsO1W2o7QZYEe7Nwlw==", "dev": true, "license": "MIT", "engines": { @@ -934,9 +917,9 @@ } }, "node_modules/czg": { - "version": "1.12.0", - "resolved": "https://registry.npmmirror.com/czg/-/czg-1.12.0.tgz", - "integrity": "sha512-LGltcoZ5m7vhe3WNw16QXqd5WurnHegx9V15MwZJtFAU2AVCYLCqDbwxPUgZOnAcdzzooq33ONcU148HOQsjdA==", + "version": "1.13.1", + "resolved": "https://registry.npmmirror.com/czg/-/czg-1.13.1.tgz", + "integrity": "sha512-mCfY4bCAMAdaFSlrQwtUTChzFAv59kD/y2leX5+C7X9inu0mt/VkHT7gkbzwcToh26oJaOaYPA9lcXUX92/6cw==", "dev": true, "license": "MIT", "bin": { @@ -1473,9 +1456,9 @@ } }, "node_modules/eslint-plugin-regexp": { - "version": "3.1.0", - "resolved": "https://registry.npmmirror.com/eslint-plugin-regexp/-/eslint-plugin-regexp-3.1.0.tgz", - "integrity": "sha512-qGXIC3DIKZHcK1H9A9+Byz9gmndY6TTSRkSMTZpNXdyCw2ObSehRgccJv35n9AdUakEjQp5VFNLas6BMXizCZg==", + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-regexp/-/eslint-plugin-regexp-3.1.1.tgz", + "integrity": "sha512-MxR5nqoQCtVWmJwia0D2+NlXX1xzdpkslsVOZLEYQ4PQWEaL65PCZXURxaBc3lPnkNFpNxzMIRmYVxdl8giXRA==", "dev": true, "license": "MIT", "dependencies": { @@ -1524,16 +1507,15 @@ } }, "node_modules/eslint-plugin-yml": { - "version": "3.3.1", - "resolved": "https://registry.npmmirror.com/eslint-plugin-yml/-/eslint-plugin-yml-3.3.1.tgz", - "integrity": "sha512-isntsZchaTqDMNNkD+CakrgA/pdUoJ45USWBKpuqfAW1MCuw731xX/vrXfoJFZU3tTFr24nCbDYmDfT2+g4QtQ==", + "version": "3.5.0", + "resolved": "https://registry.npmmirror.com/eslint-plugin-yml/-/eslint-plugin-yml-3.5.0.tgz", + "integrity": "sha512-u2UkSIp/+th1wYCt0QWeCI6agf24dxX6PbFfCCN18gGQHmXh3Cn9D/U5OiP5RNYTEwjXCLusj1OJRK+zwdvFqQ==", "dev": true, "license": "MIT", "dependencies": { "@eslint/core": "^1.0.1", - "@eslint/plugin-kit": "^0.6.0", + "@eslint/plugin-kit": "^0.7.0", "@ota-meshi/ast-token-store": "^0.3.0", - "debug": "^4.3.2", "diff-sequences": "^29.0.0", "escape-string-regexp": "5.0.0", "natural-compare": "^1.4.0", @@ -1550,9 +1532,9 @@ } }, "node_modules/eslint-plugin-yml/node_modules/@eslint/core": { - "version": "1.1.0", - "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.1.0.tgz", - "integrity": "sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw==", + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@eslint/core/-/core-1.2.1.tgz", + "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -1563,13 +1545,13 @@ } }, "node_modules/eslint-plugin-yml/node_modules/@eslint/plugin-kit": { - "version": "0.6.0", - "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.6.0.tgz", - "integrity": "sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==", + "version": "0.7.1", + "resolved": "https://registry.npmmirror.com/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz", + "integrity": "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^1.1.0", + "@eslint/core": "^1.2.1", "levn": "^0.4.1" }, "engines": { @@ -1707,9 +1689,9 @@ } }, "node_modules/eventemitter3": { - "version": "5.0.1", - "resolved": "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "version": "5.0.4", + "resolved": "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-5.0.4.tgz", + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", "dev": true, "license": "MIT" }, @@ -1861,9 +1843,9 @@ } }, "node_modules/get-east-asian-width": { - "version": "1.4.0", - "resolved": "https://registry.npmmirror.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz", - "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==", + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz", + "integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==", "dev": true, "license": "MIT", "engines": { @@ -2660,45 +2642,45 @@ } }, "node_modules/lint-staged": { - "version": "16.4.0", - "resolved": "https://registry.npmmirror.com/lint-staged/-/lint-staged-16.4.0.tgz", - "integrity": "sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==", + "version": "17.0.8", + "resolved": "https://registry.npmmirror.com/lint-staged/-/lint-staged-17.0.8.tgz", + "integrity": "sha512-B2P/d+jVW0UXOQ0MVMLrB/9ydA1P+zz6jYfdrbbEd9ur3S2rcbduFWKiUCC02Sm5hbC8nrm7y24WuYMG54HfxA==", "dev": true, "license": "MIT", "dependencies": { - "commander": "^14.0.3", - "listr2": "^9.0.5", - "picomatch": "^4.0.3", + "listr2": "^10.2.1", + "picomatch": "^4.0.4", "string-argv": "^0.3.2", - "tinyexec": "^1.0.4", - "yaml": "^2.8.2" + "tinyexec": "^1.2.4" }, "bin": { "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">=20.17" + "node": ">=22.22.1" }, "funding": { "url": "https://opencollective.com/lint-staged" + }, + "optionalDependencies": { + "yaml": "^2.9.0" } }, "node_modules/listr2": { - "version": "9.0.5", - "resolved": "https://registry.npmmirror.com/listr2/-/listr2-9.0.5.tgz", - "integrity": "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==", + "version": "10.2.1", + "resolved": "https://registry.npmmirror.com/listr2/-/listr2-10.2.1.tgz", + "integrity": "sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==", "dev": true, "license": "MIT", "dependencies": { - "cli-truncate": "^5.0.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", + "cli-truncate": "^5.2.0", + "eventemitter3": "^5.0.4", "log-update": "^6.1.0", "rfdc": "^1.4.1", - "wrap-ansi": "^9.0.0" + "wrap-ansi": "^10.0.0" }, "engines": { - "node": ">=20.0.0" + "node": ">=22.13.0" } }, "node_modules/locate-path": { @@ -2743,6 +2725,72 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-7.1.2.tgz", + "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/longest-streak": { "version": "3.1.0", "resolved": "https://registry.npmmirror.com/longest-streak/-/longest-streak-3.1.0.tgz", @@ -3933,9 +3981,9 @@ "license": "MIT" }, "node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", "engines": { @@ -3965,9 +4013,9 @@ } }, "node_modules/prettier": { - "version": "3.8.1", - "resolved": "https://registry.npmmirror.com/prettier/-/prettier-3.8.1.tgz", - "integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==", + "version": "3.9.4", + "resolved": "https://registry.npmmirror.com/prettier/-/prettier-3.9.4.tgz", + "integrity": "sha512-yWG/o/4oJfo036EKAfK6ACAoDOfHeRHx4tuxkfBZiauURiaSmYwlpOr5LQqKtIkRD2z1PLteme2WoxEnj4tHTg==", "dev": true, "license": "MIT", "bin": { @@ -4358,17 +4406,17 @@ } }, "node_modules/slice-ansi": { - "version": "7.1.2", - "resolved": "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-7.1.2.tgz", - "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-8.0.0.tgz", + "integrity": "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^6.2.1", - "is-fullwidth-code-point": "^5.0.0" + "ansi-styles": "^6.2.3", + "is-fullwidth-code-point": "^5.1.0" }, "engines": { - "node": ">=18" + "node": ">=20" }, "funding": { "url": "https://github.com/chalk/slice-ansi?sponsor=1" @@ -4412,14 +4460,14 @@ } }, "node_modules/string-width": { - "version": "8.1.0", - "resolved": "https://registry.npmmirror.com/string-width/-/string-width-8.1.0.tgz", - "integrity": "sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==", + "version": "8.2.1", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-8.2.1.tgz", + "integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==", "dev": true, "license": "MIT", "dependencies": { - "get-east-asian-width": "^1.3.0", - "strip-ansi": "^7.1.0" + "get-east-asian-width": "^1.5.0", + "strip-ansi": "^7.1.2" }, "engines": { "node": ">=20" @@ -4488,13 +4536,13 @@ } }, "node_modules/strip-ansi": { - "version": "7.1.2", - "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.2.tgz", - "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "ansi-regex": "^6.2.2" }, "engines": { "node": ">=12" @@ -4553,9 +4601,9 @@ } }, "node_modules/tinyexec": { - "version": "1.0.4", - "resolved": "https://registry.npmmirror.com/tinyexec/-/tinyexec-1.0.4.tgz", - "integrity": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==", + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/tinyexec/-/tinyexec-1.2.4.tgz", + "integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==", "dev": true, "license": "MIT", "engines": { @@ -4874,18 +4922,18 @@ } }, "node_modules/wrap-ansi": { - "version": "9.0.2", - "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-9.0.2.tgz", - "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "version": "10.0.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-10.0.0.tgz", + "integrity": "sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" + "ansi-styles": "^6.2.3", + "string-width": "^8.2.0", + "strip-ansi": "^7.1.2" }, "engines": { - "node": ">=18" + "node": ">=20" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" @@ -4904,28 +4952,10 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmmirror.com/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/yaml": { - "version": "2.8.2", - "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.2.tgz", - "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", + "version": "2.9.0", + "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.9.0.tgz", + "integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==", "dev": true, "license": "ISC", "bin": { diff --git a/package.json b/package.json index e58324221..d7d43921a 100644 --- a/package.json +++ b/package.json @@ -26,19 +26,19 @@ } ], "devDependencies": { - "@eslint/json": "^1.2.0", - "@eslint/markdown": "^8.0.1", + "@eslint/json": "^2.0.0", + "@eslint/markdown": "^8.0.2", "@stylistic/eslint-plugin": "^5.10.0", - "cz-git": "^1.12.0", - "czg": "^1.12.0", + "cz-git": "^1.13.1", + "czg": "^1.13.1", "eslint": "^9.39.2", "eslint-plugin-import": "^2.32.0", - "eslint-plugin-regexp": "^3.1.0", + "eslint-plugin-regexp": "^3.1.1", "eslint-plugin-userscripts": "^0.5.6", - "eslint-plugin-yml": "^3.3.1", + "eslint-plugin-yml": "^3.5.0", "husky": "^9.1.7", - "lint-staged": "^16.4.0", - "prettier": "^3.8.1" + "lint-staged": "^17.0.8", + "prettier": "^3.9.4" }, "scripts": { "prepare": "husky", diff --git a/popup-window/README.md b/popup-window/README.md index 4c4abf2bd..7bfe7ba7e 100644 --- a/popup-window/README.md +++ b/popup-window/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -125,17 +125,17 @@ - + ## 功能介绍 🔗 拖拽即开小窗 — 拖拽网页链接,便捷地在小窗口中打开并预览,使用 Edge 的预读技术。小窗口后方有亚克力效果,提升视觉体验。 - + # 菜单选项说明 - + ## 选项列表 @@ -194,14 +194,14 @@ **每个选项后面都有一个对应的操作函数,这些函数用于更新菜单的设置。通过点击选项,用户可以直接改变相关配置,并立即看到效果。** - + ## 支持的网页 🌐 全网页适用 — 支持所有网页,随时随地享受便捷的链接预览与打开功能。 - + > ### 🔍你可能在找网页相关脚本 > @@ -217,7 +217,7 @@ > - [**MarkDown 云剪笔记**](https://greasyfork.org/scripts/530139): 将网页内容转换为 Markdown 格式的工具,支持复制、下载、发送到 GitHub 和 Obsidian 等功能。 - + ## 脚本亮点: @@ -227,7 +227,7 @@ 可调节模糊效果强度。 自定义小窗口尺寸。 - + ## 注意事项: @@ -235,7 +235,7 @@ 立即体验! 🚀 提升浏览效率 — 安装脚本,享受智能链接预览和美观小窗口! - + ## ☭ 感谢 @@ -244,7 +244,7 @@ - **[hmjz100](https://greasyfork.org/zh-CN/users/893941)** - **[tony0809](https://greasyfork.org/zh-CN/users/20361)** 为脚本添加了自定义域名设置的代码 - + ## 脚本演示 @@ -262,7 +262,7 @@ ![1.png](https://greasyfork.s3.us-east-2.amazonaws.com/45120umjmiqk1lfkh0116ad6pnui) - + ## 使用帮助 @@ -276,14 +276,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -296,7 +296,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -314,7 +314,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -337,7 +337,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -347,7 +347,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -366,7 +366,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -384,7 +384,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -395,7 +395,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -406,7 +406,7 @@ - +
diff --git a/popup-window/README_en.md b/popup-window/README_en.md index 8d1e0e827..f8103316e 100644 --- a/popup-window/README_en.md +++ b/popup-window/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -125,17 +125,17 @@ - + ## Feature Introduction 🔗 **Drag and Drop to Open Preview Window** — Easily open and preview web links in a small window by dragging them, utilizing Edge's pre-read technology. The background of the small window features an acrylic effect to enhance visual appeal. - + # Menu Options Description - + ## Options List @@ -193,13 +193,13 @@ **Each option is followed by a corresponding action function, which is used to update the menu settings. By clicking on an option, users can directly change the related configuration and see the effect immediately.** - + ## Supported Web Pages 🌐 **Applicable to All Web Pages** — Supports all web pages, allowing convenient link preview and opening functionality anytime, anywhere. - + ## Script Highlights: @@ -209,7 +209,7 @@ - Adjustable blur effect intensity. - Customizable small window size. - + ## Notes: @@ -223,14 +223,14 @@ ![1.png](https://greasyfork.s3.us-east-2.amazonaws.com/45120umjmiqk1lfkh0116ad6pnui) - + ## Original Author [hiisme](https://greasyfork.org/zh-CN/scripts/504567) - + > ### 🔍You may be looking for web-related scripts > @@ -247,7 +247,7 @@ - + ## Help @@ -261,14 +261,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -281,7 +281,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -299,7 +299,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -322,7 +322,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -332,7 +332,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -351,7 +351,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -369,7 +369,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -380,7 +380,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -391,7 +391,7 @@ Recommended browser and script manager: - +
diff --git a/popup-window/README_ko.md b/popup-window/README_ko.md index 48cd3f03c..a4edb9348 100644 --- a/popup-window/README_ko.md +++ b/popup-window/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -125,17 +125,17 @@ - + ## 기능적 소개 🔗 창을 끌고 떨어 뜨립니다 — 웹 링크를 드래그 앤 드롭합니다,작은 창에서 편리하게 열리고 미리보기,사용 Edge 독서 기술。작은 창 뒤에 아크릴 효과,시각적 경험을 향상시킵니다。 - + # 메뉴 옵션 설명 - + ## 옵션 목록 @@ -194,14 +194,14 @@ **각 옵션 후에 해당 조작 기능이 있습니다,이러한 기능은 메뉴 설정을 업데이트하는 데 사용됩니다。옵션을 클릭하여,사용자는 관련 구성을 직접 변경할 수 있습니다,그리고 그 효과를 즉시 확인하십시오。** - + ## 지원되는 웹 페이지 🌐 모든 페이지가 적용됩니다 — 모든 웹 페이지를 지원합니다,언제 어디서나 편리한 링크 미리보기 및 개방 기능을 즐기십시오。 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -217,7 +217,7 @@ > - [**마크 다운 클라우드 컷 메모**](https://greasyfork.org/scripts/530139): 웹 컨텐츠를 Markdown 형식으로 변환하는 도구는 복사, 다운로드 및 Github 및 Obsidian으로 전송과 같은 기능을 지원합니다. - + ## 스크립트 하이라이트: @@ -227,7 +227,7 @@ 조정 가능한 블러 효과 강도。 창 크기를 사용자 정의하십시오。 - + ## 주목해야 할 것: @@ -235,7 +235,7 @@ 지금 경험하십시오! 🚀 탐색 효율성을 향상시킵니다 — 설치 스크립트,스마트 링크 미리보기와 아름다운 창을 즐기십시오! - + ## ☭ 고마워하는 @@ -244,7 +244,7 @@ - **[hmjz100](https://greasyfork.org/zh-CN/users/893941)** - **[tony0809](https://greasyfork.org/zh-CN/users/20361)** 사용자 정의 도메인 이름 설정에 스크립트에 코드가 추가되었습니다. - + ## 스크립트 데모 @@ -262,7 +262,7 @@ ![1.png](https://greasyfork.s3.us-east-2.amazonaws.com/45120umjmiqk1lfkh0116ad6pnui) - + ## 돕다 @@ -276,14 +276,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -296,7 +296,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -314,7 +314,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -337,7 +337,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -347,7 +347,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -366,7 +366,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -384,7 +384,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -395,7 +395,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -406,7 +406,7 @@ - +
diff --git a/popup-window/README_vi.md b/popup-window/README_vi.md index 7744827b0..e303ebbb1 100644 --- a/popup-window/README_vi.md +++ b/popup-window/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -125,17 +125,17 @@ - + ## Giới thiệu chức năng 🔗 Kéo và thả cửa sổ — Kéo và thả liên kết web,Mở thuận tiện và xem trước trong các cửa sổ nhỏ,sử dụng Edge Công nghệ đọc。Hiệu ứng acrylic phía sau cửa sổ nhỏ,Cải thiện trải nghiệm hình ảnh。 - + # Mô tả tùy chọn menu - + ## Danh sách tùy chọn @@ -194,14 +194,14 @@ **Có một chức năng hoạt động tương ứng sau mỗi tùy chọn,Các chức năng này được sử dụng để cập nhật cài đặt menu。Bằng cách nhấp vào các tùy chọn,Người dùng có thể thay đổi trực tiếp cấu hình có liên quan,Và xem hiệu ứng ngay lập tức。** - + ## Các trang web được hỗ trợ 🌐 Tất cả các trang đều được áp dụng — Hỗ trợ tất cả các trang web,Thưởng thức xem trước liên kết thuận tiện và mở các chức năng mọi lúc, mọi nơi。 - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -217,7 +217,7 @@ > - [**Markdown Cloud Cut Ghi chú**](https://greasyfork.org/scripts/530139): Một công cụ chuyển đổi nội dung web thành định dạng đánh dấu, hỗ trợ các tính năng như sao chép, tải xuống và gửi đến GitHub và Obsidian. - + ## Kịch bản nổi bật: @@ -227,7 +227,7 @@ Cài đặt tùy chọn: Cường độ hiệu ứng mờ có thể điều chỉnh。 Tùy chỉnh kích thước của cửa sổ。 - + ## Những điều cần lưu ý: @@ -235,7 +235,7 @@ Khi nhấp hoặc cuộn một trang,Có thể tự động đóng các cửa Kinh nghiệm ngay bây giờ! 🚀 Cải thiện hiệu quả duyệt web — Tập lệnh cài đặt,Thưởng thức xem trước liên kết thông minh và cửa sổ đẹp! - + ## ☭ tri ân @@ -244,7 +244,7 @@ Kinh nghiệm ngay bây giờ! - **[hmjz100](https://greasyfork.org/zh-CN/users/893941)** - **[tony0809](https://greasyfork.org/zh-CN/users/20361)** Đã thêm mã vào tập lệnh vào cài đặt tên miền tùy chỉnh - + ## Tập lệnh demo @@ -262,7 +262,7 @@ Kịch bản báo chí dài,Kéo và kéo,Ghi lại vị trí cửa sổ trình ![1.png](https://greasyfork.s3.us-east-2.amazonaws.com/45120umjmiqk1lfkh0116ad6pnui) - + ## Giúp đỡ @@ -276,14 +276,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -296,7 +296,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -314,7 +314,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -337,7 +337,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -347,7 +347,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -366,7 +366,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -384,7 +384,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -395,7 +395,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -406,7 +406,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/popup-window/README_zh-TW.md b/popup-window/README_zh-TW.md index da370f054..b55982156 100644 --- a/popup-window/README_zh-TW.md +++ b/popup-window/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -125,17 +125,17 @@ - + ## 功能介紹 🔗 拖拽即開小窗 — 拖拽網頁鏈接,便捷地在小窗口中打開並預覽,使用 Edge 的預讀技術。小窗口後方有亞克力效果,提升視覺體驗。 - + # 菜單選項說明 - + ## 選項列表 @@ -194,14 +194,14 @@ **每個選項後面都有一個對應的操作函數,這些函數用於更新菜單的設置。通過點擊選項,用戶可以直接改變相關配置,並立即看到效果。** - + ## 支持的網頁 🌐 全網頁適用 — 支持所有網頁,隨時隨地享受便捷的鏈接預覽與打開功能。 - + > ### 🔍你可能在找網頁相關腳本 > @@ -217,7 +217,7 @@ > - [**MarkDown 雲剪筆記**](https://greasyfork.org/scripts/530139): 將網頁內容轉換為 Markdown 格式的工具,支持複製、下載、發送到 GitHub 和 Obsidian 等功能。 - + ## 腳本亮點: @@ -227,7 +227,7 @@ 可調節模糊效果強度。 自定義小窗口尺寸。 - + ## 注意事項: @@ -235,7 +235,7 @@ 立即體驗! 🚀 提升瀏覽效率 — 安裝腳本,享受智能鏈接預覽和美觀小窗口! - + ## ☭ 感謝 @@ -244,7 +244,7 @@ - **[hmjz100](https://greasyfork.org/zh-CN/users/893941)** - **[tony0809](https://greasyfork.org/zh-CN/users/20361)** 為腳本添加了自定義域名設置的代碼 - + ## 腳本演示 @@ -262,7 +262,7 @@ ![1.png](https://greasyfork.s3.us-east-2.amazonaws.com/45120umjmiqk1lfkh0116ad6pnui) - + ## 使用幫助 @@ -276,14 +276,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -296,7 +296,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -314,7 +314,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -337,7 +337,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -347,7 +347,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -366,7 +366,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -384,7 +384,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -395,7 +395,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -406,7 +406,7 @@ - +
diff --git a/pornhub-download/README.md b/pornhub-download/README.md index b3fdf9b92..fccc97348 100644 --- a/pornhub-download/README.md +++ b/pornhub-download/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -110,7 +110,7 @@ ![](https://greasyfork.s3.us-east-2.amazonaws.com/ekvnnglp08sc4cciiunnmwor3cef) ![](https://greasyfork.s3.us-east-2.amazonaws.com/xl7sqh5acft7a6fd2wu3ird3f1dw) - + > ### 🔍你可能在找成人脚本 > @@ -127,7 +127,7 @@ - + ## 使用帮助 @@ -141,13 +141,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -176,7 +176,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -198,7 +198,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -242,7 +242,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -252,7 +252,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -263,7 +263,7 @@ - +
diff --git a/pornhub-download/README_en.md b/pornhub-download/README_en.md index 159e952f7..4a450b001 100644 --- a/pornhub-download/README_en.md +++ b/pornhub-download/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍You might be looking for adult scripts > @@ -130,7 +130,7 @@ - + ## Help @@ -144,13 +144,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -162,7 +162,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -179,7 +179,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -201,7 +201,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -210,7 +210,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -245,7 +245,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -255,7 +255,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -266,7 +266,7 @@ Recommended browser and script manager: - +
diff --git a/pornhub-download/README_ko.md b/pornhub-download/README_ko.md index fe0c723f9..f715ce32a 100644 --- a/pornhub-download/README_ko.md +++ b/pornhub-download/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -130,7 +130,7 @@ - + ## 돕다 @@ -144,13 +144,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -162,7 +162,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -179,7 +179,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -201,7 +201,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -210,7 +210,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -228,7 +228,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -245,7 +245,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -255,7 +255,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ - +
diff --git a/pornhub-download/README_vi.md b/pornhub-download/README_vi.md index edd8b95ee..529d8cc81 100644 --- a/pornhub-download/README_vi.md +++ b/pornhub-download/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -112,7 +112,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -129,7 +129,7 @@ - + ## Giúp đỡ @@ -143,13 +143,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -161,7 +161,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -178,7 +178,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -200,7 +200,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -209,7 +209,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -227,7 +227,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -244,7 +244,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -254,7 +254,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -265,7 +265,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/pornhub-download/README_zh-TW.md b/pornhub-download/README_zh-TW.md index e0e0c3343..ad6baa1d6 100644 --- a/pornhub-download/README_zh-TW.md +++ b/pornhub-download/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -130,7 +130,7 @@ - + ## 使用幫助 @@ -144,13 +144,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -162,7 +162,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -179,7 +179,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -201,7 +201,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -210,7 +210,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -266,7 +266,7 @@ - +
diff --git a/remove-link-underlines/README.md b/remove-link-underlines/README.md index 194beb416..f2b2f2eaf 100644 --- a/remove-link-underlines/README.md +++ b/remove-link-underlines/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -68,22 +68,22 @@ - + # Remove Link Underlines - + ## Description This userscript removes underlines from all links on any website and dynamically handles new links. It ensures a cleaner and more visually appealing browsing experience. - + ## Description in Multiple Languages - + > ### 🔍你可能在找网页相关脚本 > @@ -99,75 +99,75 @@ This userscript removes underlines from all links on any website and dynamically > - [**MarkDown 云剪笔记**](https://greasyfork.org/scripts/530139): 将网页内容转换为 Markdown 格式的工具,支持复制、下载、发送到 GitHub 和 Obsidian 等功能。 - + ### 中文(简体) 这个用户脚本移除所有网站上的链接下划线,并动态处理新链接。它确保了更干净和更有视觉吸引力的浏览体验。 - + ### 中文(繁体) 这个使用者脚本移除所有网站上的连结底线,并动态处理新连结。它确保了更干净和更有视觉吸引力的浏览体验。 - + ### Français Ce script utilisateur supprime les soulignements de tous les liens sur n'importe quel site Web et gère dynamiquement les nouveaux liens. Il assure une expérience de navigation plus propre et plus attrayante visuellement. - + ### 日本语 このユーザースクリプトは、任意のWebサイト上のすべてのリンクの下线を削除し、新しいリンクを动的に処理します。これにより、よりクリーンで视覚的に魅力的なブラウジング体験が保証されます。 - + ### Deutsch Dieses Benutzerskript entfernt die Unterstreichungen aller Links auf jeder Website und behandelt neue Links dynamisch. Es sorgt für ein saubereres und optisch ansprechenderes Surferlebnis. - + ### 한국어 이 사용자 스크립트는 모든 웹사이트에서 모든 링크의 밑줄을 제거하고 새 링크를 동적으로 처리합니다. 이는 더 깨끗하고 시각적으로 매력적인 브라우징 경험을 보장합니다. - + ### Tiếng Việt Tập lệnh người dùng này xóa gạch chân khỏi tất cả các liên kết trên bất kỳ trang web nào và xử lý động các liên kết mới. Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn về mặt hình ảnh. - + ### العربية يقوم هذا النص البرمجي للمستخدم بإزالة التسطير من جميع الروابط على أي موقع ويب والتعامل ديناميكيًا مع الروابط الجديدة. يضمن تجربة تصفح أنظف وأكثر جاذبية بصريًا. - + ### हिंदी यह उपयोगकर्ता स्क्रिप्ट किसी भी वेबसाइट पर सभी लिंक से रेखांकन हटा देती है और नए लिंक को गतिशील रूप से संभालती है। यह एक क्लीनर और अधिक आकर्षक ब्राउज़िंग अनुभव सुनिश्चित करता है। - + ### Español Este script de usuario elimina los subrayados de todos los enlaces en cualquier sitio web y maneja dinámicamente los nuevos enlaces. Garantiza una experiencia de navegación más limpia y visualmente atractiva. - + ## Author 人民的勤务员 (Servant of the People) & ChatGPT -[toniaiwanowskiskr47@gmail.com](mailto:toniaiwanowskiskr47@gmail.com) +[china.qinwuyuan@gmail.com](mailto:china.qinwuyuan@gmail.com) - + ## 使用帮助 @@ -181,14 +181,14 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -201,7 +201,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找网页相关脚本 > @@ -219,7 +219,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找GitHub相关脚本 > @@ -242,7 +242,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找Google相关脚本 > @@ -252,7 +252,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -271,7 +271,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找成人脚本 > @@ -289,7 +289,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找自动翻译 > @@ -300,7 +300,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找社交媒体脚本 > @@ -311,7 +311,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - +
diff --git a/remove-link-underlines/README_en.md b/remove-link-underlines/README_en.md index 857374813..19faeeec4 100644 --- a/remove-link-underlines/README_en.md +++ b/remove-link-underlines/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -68,22 +68,22 @@ - + # Remove Link Underlines - + ## Description This userscript removes underlines from all links on any website and dynamically handles new links. It ensures a cleaner and more visually appealing browsing experience. - + ## Description in Multiple Languages - + > ### 🔍You may be looking for web-related scripts > @@ -99,75 +99,75 @@ This userscript removes underlines from all links on any website and dynamically > - [**MarkDown Cloud Cut Notes**](https://greasyfork.org/scripts/530139): A tool that converts web content to Markdown format, supports features such as copying, downloading, and sending to GitHub and Obsidian. - + ### Chinese(Simplified Chinese) This user script removes link underlines on all websites,And dynamically process new links。It ensures a cleaner and more visually appealing browsing experience。 - + ### Chinese(Traditional Chinese) This user script removes the links on all websites,And dynamically process new links。It ensures a cleaner and more visually appealing browsing experience。 - + ### Français Ce script utilisateur supprime les soulignements de tous les liens sur n'importe quel site Web et gère dynamiquement les nouveaux liens. Il assure une expérience de navigation plus propre et plus attrayante visuellement. - + ### Japanese このユーザースクリプトは、AnyのWebサイトsuperiorのすべてのリンクのOfflineをdeleteし、newしいリンクをMovingにprocessします。これにより、よりクリーンでVisionにCharmingなブラウジングExperienceがguaranteeされます。 - + ### Deutsch Dieses Benutzerskript entfernt die Unterstreichungen aller Links auf jeder Website und behandelt neue Links dynamisch. Es sorgt für ein saubereres und optisch ansprechenderes Surferlebnis. - + ### 한국어 이 사용자 스크립트는 모든 웹사이트에서 모든 링크의 밑줄을 제거하고 새 링크를 동적으로 처리합니다. 이는 더 깨끗하고 시각적으로 매력적인 브라우징 경험을 보장합니다. - + ### Tiếng Việt Tập lệnh người dùng này xóa gạch chân khỏi tất cả các liên kết trên bất kỳ trang web nào và xử lý động các liên kết mới. Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn về mặt hình ảnh. - + ### العربية يقوم هذا النص البرمجي للمستخدم بإزالة التسطير من جميع الروابط على أي موقع ويب والتعامل ديناميكيًا مع الروابط الجديدة. يضمن تجربة تصفح أنظف وأكثر جاذبية بصريًا. - + ### हिंदी यह उपयोगकर्ता स्क्रिप्ट किसी भी वेबसाइट पर सभी लिंक से रेखांकन हटा देती है और नए लिंक को गतिशील रूप से संभालती है। यह एक क्लीनर और अधिक आकर्षक ब्राउज़िंग अनुभव सुनिश्चित करता है। - + ### Español Este script de usuario elimina los subrayados de todos los enlaces en cualquier sitio web y maneja dinámicamente los nuevos enlaces. Garantiza una experiencia de navegación más limpia y visualmente atractiva. - + ## Author 人民的勤务员 (Servant of the People) & ChatGPT -[toniaiwanowskiskr47@gmail.com](mailto:toniaiwanowskiskr47@gmail.com) +[china.qinwuyuan@gmail.com](mailto:china.qinwuyuan@gmail.com) - + ## Help @@ -181,14 +181,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -201,7 +201,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -219,7 +219,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -242,7 +242,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -271,7 +271,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -289,7 +289,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -300,7 +300,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -311,7 +311,7 @@ Recommended browser and script manager: - +
diff --git a/remove-link-underlines/README_ko.md b/remove-link-underlines/README_ko.md index 93e5473f4..bf06ab3af 100644 --- a/remove-link-underlines/README_ko.md +++ b/remove-link-underlines/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -68,22 +68,22 @@ - + # Remove Link Underlines - + ## Description This userscript removes underlines from all links on any website and dynamically handles new links. It ensures a cleaner and more visually appealing browsing experience. - + ## Description in Multiple Languages - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -99,75 +99,75 @@ This userscript removes underlines from all links on any website and dynamically > - [**마크 다운 클라우드 컷 메모**](https://greasyfork.org/scripts/530139): 웹 컨텐츠를 Markdown 형식으로 변환하는 도구는 복사, 다운로드 및 Github 및 Obsidian으로 전송과 같은 기능을 지원합니다. - + ### 중국인(단순화 된 중국어) 이 사용자 스크립트는 모든 웹 사이트에서 링크가 강조됩니다,새로운 링크를 동적으로 처리합니다。그것은 더 깨끗하고 시각적으로 매력적인 탐색 경험을 보장합니다.。 - + ### 중국인(전통적인 중국어) 이 사용자 스크립트는 모든 웹 사이트의 링크를 제거합니다,새로운 링크를 동적으로 처리합니다。그것은 더 깨끗하고 시각적으로 매력적인 탐색 경험을 보장합니다.。 - + ### Français Ce script utilisateur supprime les soulignements de tous les liens sur n'importe quel site Web et gère dynamiquement les nouveaux liens. Il assure une expérience de navigation plus propre et plus attrayante visuellement. - + ### 일본어 このユーザースクリプトは、어느のWebサイト우수한のすべてのリンクの오프라인を삭제し、새로운しいリンクを움직이는に프로세스します。これにより、よりクリーンで비전に매력적인なブラウジング경험が보장하다されます。 - + ### Deutsch Dieses Benutzerskript entfernt die Unterstreichungen aller Links auf jeder Website und behandelt neue Links dynamisch. Es sorgt für ein saubereres und optisch ansprechenderes Surferlebnis. - + ### 한국어 이 사용자 스크립트는 모든 웹사이트에서 모든 링크의 밑줄을 제거하고 새 링크를 동적으로 처리합니다. 이는 더 깨끗하고 시각적으로 매력적인 브라우징 경험을 보장합니다. - + ### Tiếng Việt Tập lệnh người dùng này xóa gạch chân khỏi tất cả các liên kết trên bất kỳ trang web nào và xử lý động các liên kết mới. Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn về mặt hình ảnh. - + ### العربية يقوم هذا النص البرمجي للمستخدم بإزالة التسطير من جميع الروابط على أي موقع ويب والتعامل ديناميكيًا مع الروابط الجديدة. يضمن تجربة تصفح أنظف وأكثر جاذبية بصريًا. - + ### हिंदी यह उपयोगकर्ता स्क्रिप्ट किसी भी वेबसाइट पर सभी लिंक से रेखांकन हटा देती है और नए लिंक को गतिशील रूप से संभालती है। यह एक क्लीनर और अधिक आकर्षक ब्राउज़िंग अनुभव सुनिश्चित करता है। - + ### Español Este script de usuario elimina los subrayados de todos los enlaces en cualquier sitio web y maneja dinámicamente los nuevos enlaces. Garantiza una experiencia de navegación más limpia y visualmente atractiva. - + ## Author 人民的勤务员 (Servant of the People) & ChatGPT -[toniaiwanowskiskr47@gmail.com](mailto:toniaiwanowskiskr47@gmail.com) +[china.qinwuyuan@gmail.com](mailto:china.qinwuyuan@gmail.com) - + ## 돕다 @@ -181,14 +181,14 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -201,7 +201,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -219,7 +219,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -242,7 +242,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -252,7 +252,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -271,7 +271,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -289,7 +289,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -300,7 +300,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -311,7 +311,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - +
diff --git a/remove-link-underlines/README_vi.md b/remove-link-underlines/README_vi.md index f89f34ea3..2edc4458e 100644 --- a/remove-link-underlines/README_vi.md +++ b/remove-link-underlines/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -68,22 +68,22 @@ - + # Remove Link Underlines - + ## Description This userscript removes underlines from all links on any website and dynamically handles new links. It ensures a cleaner and more visually appealing browsing experience. - + ## Description in Multiple Languages - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -99,75 +99,75 @@ This userscript removes underlines from all links on any website and dynamically > - [**Markdown Cloud Cut Ghi chú**](https://greasyfork.org/scripts/530139): Một công cụ chuyển đổi nội dung web thành định dạng đánh dấu, hỗ trợ các tính năng như sao chép, tải xuống và gửi đến GitHub và Obsidian. - + ### Trung Quốc(Đơn giản hóa Trung Quốc) Tập lệnh người dùng này sẽ loại bỏ các liên kết gạch chân trên tất cả các trang web,Và tự động xử lý các liên kết mới。Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn。 - + ### Trung Quốc(Trung Quốc truyền thống) Tập lệnh người dùng này sẽ xóa các liên kết trên tất cả các trang web,Và tự động xử lý các liên kết mới。Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn。 - + ### Français Ce script utilisateur supprime les soulignements de tous les liens sur n'importe quel site Web et gère dynamiquement les nouveaux liens. Il assure une expérience de navigation plus propre et plus attrayante visuellement. - + ### Nhật Bản このユーザースクリプトは、Bất kìのWebサイトthượng đẳngのすべてのリンクのNgoại tuyếnをxóa bỏし、mớiしいリンクをDi chuyểnにquá trìnhします。これにより、よりクリーンでTầm nhìnにQuyến rũなブラウジングKinh nghiệmがbảo đảmされます。 - + ### Deutsch Dieses Benutzerskript entfernt die Unterstreichungen aller Links auf jeder Website und behandelt neue Links dynamisch. Es sorgt für ein saubereres und optisch ansprechenderes Surferlebnis. - + ### 한국어 이 사용자 스크립트는 모든 웹사이트에서 모든 링크의 밑줄을 제거하고 새 링크를 동적으로 처리합니다. 이는 더 깨끗하고 시각적으로 매력적인 브라우징 경험을 보장합니다. - + ### Tiếng Việt Tập lệnh người dùng này xóa gạch chân khỏi tất cả các liên kết trên bất kỳ trang web nào và xử lý động các liên kết mới. Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn về mặt hình ảnh. - + ### العربية يقوم هذا النص البرمجي للمستخدم بإزالة التسطير من جميع الروابط على أي موقع ويب والتعامل ديناميكيًا مع الروابط الجديدة. يضمن تجربة تصفح أنظف وأكثر جاذبية بصريًا. - + ### हिंदी यह उपयोगकर्ता स्क्रिप्ट किसी भी वेबसाइट पर सभी लिंक से रेखांकन हटा देती है और नए लिंक को गतिशील रूप से संभालती है। यह एक क्लीनर और अधिक आकर्षक ब्राउज़िंग अनुभव सुनिश्चित करता है। - + ### Español Este script de usuario elimina los subrayados de todos los enlaces en cualquier sitio web y maneja dinámicamente los nuevos enlaces. Garantiza una experiencia de navegación más limpia y visualmente atractiva. - + ## Author 人民的勤务员 (Servant of the People) & ChatGPT -[toniaiwanowskiskr47@gmail.com](mailto:toniaiwanowskiskr47@gmail.com) +[china.qinwuyuan@gmail.com](mailto:china.qinwuyuan@gmail.com) - + ## Giúp đỡ @@ -181,14 +181,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -201,7 +201,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -219,7 +219,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -242,7 +242,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -252,7 +252,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -271,7 +271,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -289,7 +289,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -300,7 +300,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -311,7 +311,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/remove-link-underlines/README_zh-TW.md b/remove-link-underlines/README_zh-TW.md index 37a1fa0eb..95645b37f 100644 --- a/remove-link-underlines/README_zh-TW.md +++ b/remove-link-underlines/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -68,22 +68,22 @@ - + # Remove Link Underlines - + ## Description This userscript removes underlines from all links on any website and dynamically handles new links. It ensures a cleaner and more visually appealing browsing experience. - + ## Description in Multiple Languages - + > ### 🔍你可能在找網頁相關腳本 > @@ -99,75 +99,75 @@ This userscript removes underlines from all links on any website and dynamically > - [**MarkDown 雲剪筆記**](https://greasyfork.org/scripts/530139): 將網頁內容轉換為 Markdown 格式的工具,支持複製、下載、發送到 GitHub 和 Obsidian 等功能。 - + ### 中文(簡體) 這個用戶腳本移除所有網站上的鏈接下劃線,並動態處理新鏈接。它確保了更乾淨和更有視覺吸引力的瀏覽體驗。 - + ### 中文(繁體) 這個使用者腳本移除所有網站上的連結底線,並動態處理新連結。它確保了更乾淨和更有視覺吸引力的瀏覽體驗。 - + ### Français Ce script utilisateur supprime les soulignements de tous les liens sur n'importe quel site Web et gère dynamiquement les nouveaux liens. Il assure une expérience de navigation plus propre et plus attrayante visuellement. - + ### 日本語 このユーザースクリプトは、任意のWebサイト上のすべてのリンクの下線を刪除し、新しいリンクを動態的に過程します。これにより、よりクリーンで視覺上に魅力的なブラウジング經驗が保證されます。 - + ### Deutsch Dieses Benutzerskript entfernt die Unterstreichungen aller Links auf jeder Website und behandelt neue Links dynamisch. Es sorgt für ein saubereres und optisch ansprechenderes Surferlebnis. - + ### 한국어 이 사용자 스크립트는 모든 웹사이트에서 모든 링크의 밑줄을 제거하고 새 링크를 동적으로 처리합니다. 이는 더 깨끗하고 시각적으로 매력적인 브라우징 경험을 보장합니다. - + ### Tiếng Việt Tập lệnh người dùng này xóa gạch chân khỏi tất cả các liên kết trên bất kỳ trang web nào và xử lý động các liên kết mới. Nó đảm bảo trải nghiệm duyệt web sạch hơn và hấp dẫn hơn về mặt hình ảnh. - + ### العربية يقوم هذا النص البرمجي للمستخدم بإزالة التسطير من جميع الروابط على أي موقع ويب والتعامل ديناميكيًا مع الروابط الجديدة. يضمن تجربة تصفح أنظف وأكثر جاذبية بصريًا. - + ### हिंदी यह उपयोगकर्ता स्क्रिप्ट किसी भी वेबसाइट पर सभी लिंक से रेखांकन हटा देती है और नए लिंक को गतिशील रूप से संभालती है। यह एक क्लीनर और अधिक आकर्षक ब्राउज़िंग अनुभव सुनिश्चित करता है। - + ### Español Este script de usuario elimina los subrayados de todos los enlaces en cualquier sitio web y maneja dinámicamente los nuevos enlaces. Garantiza una experiencia de navegación más limpia y visualmente atractiva. - + ## Author 人民的勤务员 (Servant of the People) & ChatGPT -[toniaiwanowskiskr47@gmail.com](mailto:toniaiwanowskiskr47@gmail.com) +[china.qinwuyuan@gmail.com](mailto:china.qinwuyuan@gmail.com) - + ## 使用幫助 @@ -181,14 +181,14 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -201,7 +201,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找網頁相關腳本 > @@ -219,7 +219,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找GitHub相關腳本 > @@ -234,7 +234,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier > - [**GitHub 倉庫快速跳轉助手**](https://greasyfork.org/scripts/515205): 🤠 GitHub 倉庫快速跳轉助手,專為幫助用戶快速存取自己在 GitHub 上的倉庫而設計 。它在導覽列頂部產生一個按鈕,點擊展開自己的所有倉庫,輕鬆跳到自己的 GitHub 倉庫頁面,而無需使用 GitHub 的二級選單 > - [**在Github上打開jsDelivr鏈接**](https://greasyfork.org/scripts/527870): 打開jsDelivr上的GitHub鏈接,用於快速下載文件 > - [**GitHub Gist 代碼片段複製與下載器**](https://greasyfork.org/scripts/529534): 向 Gist 文件添加複制按鈕,以便輕鬆複製代碼。 | 向 Gist 文件添加下載按鈕,以便輕鬆下載代碼。 -> - [**GitHub 快捷鍵翻譯助手**](https://greasyfork.org/scripts/530312): 監聽鍵盤快捷鍵 Ctrl + Q,實現對文本進行翻譯並將翻譯結果替換到原文本框中的功能 支持Issue和pull request 頁面. +> - [**GitHub 快捷鍵翻譯助手**](https://greasyfork.org/scripts/530312): 監聽鍵盤快捷鍵 Ctrl + Q,實現對文本進行翻譯並將翻譯結果替換到原文本框中的功能 支援Issue和pull request 頁面. > - [**GitHub 星標倉庫備註助手**](https://greasyfork.org/scripts/533511): 曾經 Star 過的倉庫是不是忘記了它們的用途? 這是一個可以給你收藏過的倉庫添加備註的的腳本,並且你備註的信息可以上傳下載到 GitHub Gist > - [**GitHub 跳轉到 DeepWiKi**](https://greasyfork.org/scripts/536279): GitHub 存儲庫跳轉到 DeepWiKi,支持電腦桌面端和移動端 > - [**GitHub 隱藏 Copilot**](https://greasyfork.org/scripts/536423): 在 GitHub 上隱藏愚蠢的 Copilot @@ -242,7 +242,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找Google相關腳本 > @@ -252,7 +252,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -271,7 +271,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找成人腳本 > @@ -289,7 +289,7 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找自動翻譯 > @@ -300,18 +300,18 @@ Este script de usuario elimina los subrayados de todos los enlaces en cualquier - + > ### 🔍你可能在找社交媒體腳本 > > - [**Twitter/X 隱藏轉發的帖子**](https://greasyfork.org/scripts/529450): 自動隱藏轉發轉發內容,並且在首次加載時隱藏轉發內容,移除煩人的廣告 -> - [**Twitter 媒體下載 (2025.04.28 修復)**](https://greasyfork.org/scripts/529453): 一鍵下載視頻/圖片,支持批量下載時自動打包為一個ZIP文件下載.支持新版API接口 +> - [**Twitter 媒體下載 (2025.04.28 修復)**](https://greasyfork.org/scripts/529453): 一鍵下載視頻/圖片,支持批量下載時自動打包為一個ZIP文件下載.支援新版API介面 > - [**YouTube 小助手**](https://greasyfork.org/scripts/529845): YouTube 1.視頻循環播放 2.截圖下載 3.主題進度條 - +
diff --git a/script-finder-plus/README.md b/script-finder-plus/README.md index cf009868a..d7b6a8260 100644 --- a/script-finder-plus/README.md +++ b/script-finder-plus/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -101,13 +101,13 @@ - + # Script Finder Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本。它提供了一种方便的方式来搜索和安装来自 Greasy Fork 的用户脚本。借助 Script Finder,你可以轻松地一键将自定义脚本添加到你喜爱的网站上,从而增强你的浏览体验。 - + ## 功能 @@ -116,7 +116,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - 一键安装用户脚本 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -134,7 +134,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + ## 使用方法 @@ -148,21 +148,21 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 **注意**:该用户脚本需要在浏览器中安装用户脚本管理器才能正常使用(可在最底部查看可以使用的管理器) - + ## 图片 ![fi.png](https://s2.loli.net/2024/08/05/WOkL8vV2oxRASYQ.png) ![show.png](https://s2.loli.net/2024/08/05/EBsldxGySe9Kf3w.png) - + ## 原作者 脚本修改自用户 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** 的脚本 [Script Finder](https://greasyfork.org/scripts/472056) 感谢原作者 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** 的**勤劳**与**智慧** - + ## 使用帮助 @@ -176,14 +176,14 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -196,7 +196,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找网页相关脚本 > @@ -214,7 +214,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找GitHub相关脚本 > @@ -237,7 +237,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找Google相关脚本 > @@ -247,7 +247,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -266,7 +266,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找成人脚本 > @@ -284,7 +284,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找自动翻译 > @@ -295,7 +295,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - + > ### 🔍你可能在找社交媒体脚本 > @@ -306,7 +306,7 @@ Script Finder 是一个用户脚本(userscript),它可以帮助你在任 - +
diff --git a/script-finder-plus/README_en.md b/script-finder-plus/README_en.md index e877b4d2b..f6ea28d33 100644 --- a/script-finder-plus/README_en.md +++ b/script-finder-plus/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -101,13 +101,13 @@ - + # Script Finder The Script Finder userscript allows you to find and manage user scripts on any website. It provides a convenient way to search and install userscripts from Greasy Fork. With Script Finder, you can easily enhance your browsing experience by adding custom scripts to your favorite websites easily. - + ## Features @@ -115,7 +115,7 @@ The Script Finder userscript allows you to find and manage user scripts on any w - View detailed information about each script, including author, description, installs, version and rating - Install userscripts with a single click - + ## How to Use @@ -129,22 +129,22 @@ The Script Finder userscript allows you to find and manage user scripts on any w **Note**: This userscript requires a userscript manager extension to be installed in your browser. - + ## Preview ![fi.png](https://s2.loli.net/2024/08/05/WOkL8vV2oxRASYQ.png) ![show.png](https://s2.loli.net/2024/08/05/EBsldxGySe9Kf3w.png) - + ## Aoriginal Author - + # [shiquda](https://greasyfork.org/zh-CN/scripts/472056-script-finder) - + ## Modify content @@ -153,7 +153,7 @@ The Script Finder userscript allows you to find and manage user scripts on any w - Cancel the default sorting and change to sorting by update time - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -171,7 +171,7 @@ The Script Finder userscript allows you to find and manage user scripts on any w - + ## Help @@ -185,14 +185,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -205,7 +205,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -223,7 +223,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -246,7 +246,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -256,7 +256,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -275,7 +275,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -293,7 +293,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -304,7 +304,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -315,7 +315,7 @@ Recommended browser and script manager: - +
diff --git a/script-finder-plus/README_ko.md b/script-finder-plus/README_ko.md index a884bfa81..322cc3b05 100644 --- a/script-finder-plus/README_ko.md +++ b/script-finder-plus/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -101,13 +101,13 @@ - + # Script Finder Script Finder 사용자 스크립트입니다(userscript),모든 웹 사이트에서 사용자 스크립트를 찾고 관리하는 데 도움이됩니다.。검색하고 설치하는 편리한 방법을 제공합니다. Greasy Fork 사용자 스크립트。도움으로 Script Finder,한 번의 클릭으로 좋아하는 웹 사이트에 사용자 정의 스크립트를 쉽게 추가 할 수 있습니다.,탐색 경험을 향상시키기 위해。 - + ## 기능 @@ -116,7 +116,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - 한 번의 클릭으로 사용자 스크립트를 설치하십시오 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -134,7 +134,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + ## 사용 방법 @@ -148,21 +148,21 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 **알아채다**:이 사용자 스크립트는 브라우저에 설치하여 정상적으로 사용해야합니다.(바닥에서 사용 가능한 관리자를 볼 수 있습니다) - + ## 그림 ![fi.png](https://s2.loli.net/2024/08/05/WOkL8vV2oxRASYQ.png) ![show.png](https://s2.loli.net/2024/08/05/EBsldxGySe9Kf3w.png) - + ## 오리지널 저자 사용자로부터 스크립트를 수정하십시오 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** ~의스크립트 [Script Finder](https://greasyfork.org/scripts/472056) 원래 저자에게 감사합니다 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** ~의**성실한**그리고**지혜** - + ## 돕다 @@ -176,14 +176,14 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -196,7 +196,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -214,7 +214,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -237,7 +237,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -247,7 +247,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -266,7 +266,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -284,7 +284,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -295,7 +295,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -306,7 +306,7 @@ Script Finder 사용자 스크립트입니다(userscript),모든 웹 사 - +
diff --git a/script-finder-plus/README_vi.md b/script-finder-plus/README_vi.md index d814e0be2..675d594ad 100644 --- a/script-finder-plus/README_vi.md +++ b/script-finder-plus/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -101,13 +101,13 @@ - + # Script Finder Script Finder Đó là một tập lệnh người dùng(userscript),Nó giúp bạn tìm và quản lý tập lệnh người dùng trên bất kỳ trang web nào。Nó cung cấp một cách thuận tiện để tìm kiếm và cài đặt từ Greasy Fork Kịch bản người dùng。Với sự giúp đỡ Script Finder,Bạn có thể dễ dàng thêm các tập lệnh tùy chỉnh vào các trang web yêu thích của mình chỉ bằng một cú nhấp chuột,Để nâng cao trải nghiệm duyệt của bạn。 - + ## Chức năng @@ -116,7 +116,7 @@ Script Finder Đó là một tập lệnh người dùng(userscript),Nó g - Cài đặt tập lệnh người dùng chỉ bằng một cú nhấp chuột - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -134,7 +134,7 @@ Script Finder Đó là một tập lệnh người dùng(userscript),Nó g - + ## Cách sử dụng @@ -148,21 +148,21 @@ Script Finder Đó là một tập lệnh người dùng(userscript),Nó g **Để ý**:Tập lệnh người dùng này cần được cài đặt trong trình duyệt để sử dụng nó bình thường(Bạn có thể xem các trình quản lý có sẵn ở phía dưới) - + ## hình ảnh ![fi.png](https://s2.loli.net/2024/08/05/WOkL8vV2oxRASYQ.png) ![show.png](https://s2.loli.net/2024/08/05/EBsldxGySe9Kf3w.png) - + ## Tác giả gốc Sửa đổi tập lệnh từ người dùng **[shiquda](https://greasyfork.org/zh-CN/users/935206)** củaKịch bản [Script Finder](https://greasyfork.org/scripts/472056) Cảm ơn tác giả ban đầu **[shiquda](https://greasyfork.org/zh-CN/users/935206)** của**Siêng năng**Và**khôn ngoan** - + ## Giúp đỡ @@ -176,14 +176,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -196,7 +196,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -237,7 +237,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -284,7 +284,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -295,7 +295,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -306,7 +306,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/script-finder-plus/README_zh-TW.md b/script-finder-plus/README_zh-TW.md index 214c7132a..8b8a0d1f1 100644 --- a/script-finder-plus/README_zh-TW.md +++ b/script-finder-plus/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -101,13 +101,13 @@ - + # Script Finder Script Finder 是一個用戶腳本(userscript),它可以幫助你在任何網站上查找和管理用戶腳本。它提供了一種方便的方式來搜索和安裝來自 Greasy Fork 的用戶腳本。借助 Script Finder,你可以輕鬆地一鍵將自定義腳本添加到你喜愛的網站上,從而增強你的瀏覽體驗。 - + ## 功能 @@ -116,7 +116,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - 一鍵安裝用戶腳本 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -134,7 +134,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + ## 使用方法 @@ -148,21 +148,21 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 **注意**:該用戶腳本需要在瀏覽器中安裝用戶腳本管理器才能正常使用(可在最底部查看可以使用的管理器) - + ## 圖片 ![fi.png](https://s2.loli.net/2024/08/05/WOkL8vV2oxRASYQ.png) ![show.png](https://s2.loli.net/2024/08/05/EBsldxGySe9Kf3w.png) - + ## 原始作者 腳本修改自用戶 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** 的腳本 [Script Finder](https://greasyfork.org/scripts/472056) 感謝原作者 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** 的**勤勞**與**智慧** - + ## 使用幫助 @@ -176,14 +176,14 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -196,7 +196,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找網頁相關腳本 > @@ -214,7 +214,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找GitHub相關腳本 > @@ -237,7 +237,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找Google相關腳本 > @@ -247,7 +247,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -266,7 +266,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找成人腳本 > @@ -284,7 +284,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找自動翻譯 > @@ -295,7 +295,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - + > ### 🔍你可能在找社交媒體腳本 > @@ -306,7 +306,7 @@ Script Finder 是一個用戶腳本(userscript),它可以幫助你在任 - +
diff --git a/scroll-button/README.md b/scroll-button/README.md index 65e584c4b..d994e64c4 100644 --- a/scroll-button/README.md +++ b/scroll-button/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -73,7 +73,7 @@ ![1.png](https://s2.loli.net/2024/08/24/nOVbHuZzvmdtRUc.png) - + > ### 🔍你可能在找网页相关脚本 > @@ -90,7 +90,7 @@ - + ## 使用帮助 @@ -104,14 +104,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -124,7 +124,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -142,7 +142,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -194,7 +194,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -212,7 +212,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -223,7 +223,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -234,7 +234,7 @@ - +
diff --git a/scroll-button/README_en.md b/scroll-button/README_en.md index fa0177ff7..8c34374be 100644 --- a/scroll-button/README_en.md +++ b/scroll-button/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -73,7 +73,7 @@ Add up and down buttons to the right of each page,Convenient scrolling。 ![1.png](https://s2.loli.net/2024/08/24/nOVbHuZzvmdtRUc.png) - + > ### 🔍You may be looking for web-related scripts > @@ -90,7 +90,7 @@ Add up and down buttons to the right of each page,Convenient scrolling。 - + ## Help @@ -104,14 +104,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -124,7 +124,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -142,7 +142,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -165,7 +165,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -175,7 +175,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -194,7 +194,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -212,7 +212,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -223,7 +223,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -234,7 +234,7 @@ Recommended browser and script manager: - +
diff --git a/scroll-button/README_ko.md b/scroll-button/README_ko.md index ea6b012af..e420a1b7a 100644 --- a/scroll-button/README_ko.md +++ b/scroll-button/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -73,7 +73,7 @@ ![1.png](https://s2.loli.net/2024/08/24/nOVbHuZzvmdtRUc.png) - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -90,7 +90,7 @@ - + ## 돕다 @@ -104,14 +104,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -124,7 +124,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -142,7 +142,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -165,7 +165,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -175,7 +175,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -194,7 +194,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -212,7 +212,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -223,7 +223,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -234,7 +234,7 @@ - +
diff --git a/scroll-button/README_vi.md b/scroll-button/README_vi.md index 379c3a97a..92fd9a170 100644 --- a/scroll-button/README_vi.md +++ b/scroll-button/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -73,7 +73,7 @@ Thêm các nút lên và xuống ở bên phải của mỗi trang,Cuộn thu ![1.png](https://s2.loli.net/2024/08/24/nOVbHuZzvmdtRUc.png) - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -90,7 +90,7 @@ Thêm các nút lên và xuống ở bên phải của mỗi trang,Cuộn thu - + ## Giúp đỡ @@ -104,14 +104,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -124,7 +124,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -142,7 +142,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -165,7 +165,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -175,7 +175,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -194,7 +194,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -212,7 +212,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -223,7 +223,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -234,7 +234,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/scroll-button/README_zh-TW.md b/scroll-button/README_zh-TW.md index 4a7e3a9d4..c955facc0 100644 --- a/scroll-button/README_zh-TW.md +++ b/scroll-button/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -73,7 +73,7 @@ ![1.png](https://s2.loli.net/2024/08/24/nOVbHuZzvmdtRUc.png) - + > ### 🔍你可能在找網頁相關腳本 > @@ -90,7 +90,7 @@ - + ## 使用幫助 @@ -104,14 +104,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -124,7 +124,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -142,7 +142,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -194,7 +194,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -212,7 +212,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -223,7 +223,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -234,7 +234,7 @@ - +
diff --git a/scroll-to-top-button/README.md b/scroll-to-top-button/README.md index 2b955ff12..d34ef7911 100644 --- a/scroll-to-top-button/README.md +++ b/scroll-to-top-button/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -74,7 +74,7 @@ 该脚本修改自 [金衍丞](https://greasyfork.org/scripts/498420/) - + ## 修改说明: @@ -82,7 +82,7 @@ - **处于滚动时,向下的按钮变成绿色。** - + > ### 🔍你可能在找网页相关脚本 > @@ -103,7 +103,7 @@ ![c.png](https://s2.loli.net/2024/08/26/UrwMu2lphEia3Q7.png) - + ## 使用帮助 @@ -117,14 +117,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -137,7 +137,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -155,7 +155,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -178,7 +178,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -188,7 +188,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -236,7 +236,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -247,7 +247,7 @@ - +
diff --git a/scroll-to-top-button/README_en.md b/scroll-to-top-button/README_en.md index a516243a4..a8dc137c2 100644 --- a/scroll-to-top-button/README_en.md +++ b/scroll-to-top-button/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -74,7 +74,7 @@ This script is modified from [Kim Yong-jo](https://greasyfork.org/scripts/498420/) - + ## Modification instructions: @@ -82,7 +82,7 @@ This script is modified from [Kim Yong-jo](https://greasyfork.org/scripts/498420 - **While scrolling,The down button turns green。** - + > ### 🔍You may be looking for web-related scripts > @@ -103,7 +103,7 @@ This script is modified from [Kim Yong-jo](https://greasyfork.org/scripts/498420 ![c.png](https://s2.loli.net/2024/08/26/UrwMu2lphEia3Q7.png) - + ## Help @@ -117,14 +117,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -137,7 +137,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -155,7 +155,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -178,7 +178,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -188,7 +188,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -207,7 +207,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -225,7 +225,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -236,7 +236,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -247,7 +247,7 @@ Recommended browser and script manager: - +
diff --git a/scroll-to-top-button/README_ko.md b/scroll-to-top-button/README_ko.md index b53fb94d2..b497bd4b5 100644 --- a/scroll-to-top-button/README_ko.md +++ b/scroll-to-top-button/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -74,7 +74,7 @@ 스크립트는 수정되었습니다 [진이 첸 (Jin Yancheng)](https://greasyfork.org/scripts/498420/) - + ## 수정 지침: @@ -82,7 +82,7 @@ - **스크롤하는 동안,아래쪽 버튼이 녹색으로 변합니다。** - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -103,7 +103,7 @@ ![c.png](https://s2.loli.net/2024/08/26/UrwMu2lphEia3Q7.png) - + ## 돕다 @@ -117,14 +117,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -137,7 +137,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -155,7 +155,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -178,7 +178,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -188,7 +188,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -207,7 +207,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -225,7 +225,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -236,7 +236,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -247,7 +247,7 @@ - +
diff --git a/scroll-to-top-button/README_vi.md b/scroll-to-top-button/README_vi.md index c09f2c51f..ecafc9e29 100644 --- a/scroll-to-top-button/README_vi.md +++ b/scroll-to-top-button/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -74,7 +74,7 @@ Tập lệnh được sửa đổi từ [Jin Yancheng](https://greasyfork.org/scripts/498420/) - + ## Hướng dẫn sửa đổi: @@ -82,7 +82,7 @@ Tập lệnh được sửa đổi từ [Jin Yancheng](https://greasyfork.org/sc - **Trong khi cuộn,Nút đi xuống chuyển sang màu xanh lá cây。** - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -103,7 +103,7 @@ Tập lệnh được sửa đổi từ [Jin Yancheng](https://greasyfork.org/sc ![c.png](https://s2.loli.net/2024/08/26/UrwMu2lphEia3Q7.png) - + ## Giúp đỡ @@ -117,14 +117,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -137,7 +137,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -155,7 +155,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -178,7 +178,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -188,7 +188,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -207,7 +207,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -225,7 +225,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -236,7 +236,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -247,7 +247,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/scroll-to-top-button/README_zh-TW.md b/scroll-to-top-button/README_zh-TW.md index 89e00f5af..b7df3399f 100644 --- a/scroll-to-top-button/README_zh-TW.md +++ b/scroll-to-top-button/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -74,7 +74,7 @@ 該腳本修改自 [金衍丞](https://greasyfork.org/scripts/498420/) - + ## 修改說明: @@ -82,7 +82,7 @@ - **處於滾動時,向下的按鈕變成綠色。** - + > ### 🔍你可能在找網頁相關腳本 > @@ -103,7 +103,7 @@ ![c.png](https://s2.loli.net/2024/08/26/UrwMu2lphEia3Q7.png) - + ## 使用幫助 @@ -117,14 +117,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -137,7 +137,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -155,7 +155,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -178,7 +178,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -188,7 +188,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -236,7 +236,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -247,7 +247,7 @@ - +
diff --git a/smart-translator-tool/README.md b/smart-translator-tool/README.md index 8c10d504c..575621599 100644 --- a/smart-translator-tool/README.md +++ b/smart-translator-tool/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -108,7 +108,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -118,7 +118,7 @@ - + ## 使用帮助 @@ -132,13 +132,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -150,7 +150,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -167,7 +167,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -189,7 +189,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -198,7 +198,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -233,7 +233,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -243,7 +243,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -254,7 +254,7 @@ - +
diff --git a/smart-translator-tool/README_en.md b/smart-translator-tool/README_en.md index f8ecabac1..3638a3eab 100644 --- a/smart-translator-tool/README_en.md +++ b/smart-translator-tool/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -108,7 +108,7 @@ - + > ### 🔍You may be looking for automatic translation > @@ -118,7 +118,7 @@ - + ## Help @@ -132,13 +132,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -150,7 +150,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -167,7 +167,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -189,7 +189,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -198,7 +198,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -216,7 +216,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -233,7 +233,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -243,7 +243,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -254,7 +254,7 @@ Recommended browser and script manager: - +
diff --git a/smart-translator-tool/README_ko.md b/smart-translator-tool/README_ko.md index 794427848..96fc97c21 100644 --- a/smart-translator-tool/README_ko.md +++ b/smart-translator-tool/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -108,7 +108,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -118,7 +118,7 @@ - + ## 돕다 @@ -132,13 +132,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -150,7 +150,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -167,7 +167,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -189,7 +189,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -198,7 +198,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -216,7 +216,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -233,7 +233,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -243,7 +243,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -254,7 +254,7 @@ - +
diff --git a/smart-translator-tool/README_vi.md b/smart-translator-tool/README_vi.md index 5b1b24422..3a572ae23 100644 --- a/smart-translator-tool/README_vi.md +++ b/smart-translator-tool/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -108,7 +108,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -118,7 +118,7 @@ - + ## Giúp đỡ @@ -132,13 +132,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -150,7 +150,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -167,7 +167,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -189,7 +189,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -198,7 +198,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -216,7 +216,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -233,7 +233,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -243,7 +243,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -254,7 +254,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/smart-translator-tool/README_zh-TW.md b/smart-translator-tool/README_zh-TW.md index e53ead281..5f1461f04 100644 --- a/smart-translator-tool/README_zh-TW.md +++ b/smart-translator-tool/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -108,7 +108,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -118,7 +118,7 @@ - + ## 使用幫助 @@ -132,13 +132,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -150,7 +150,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -167,7 +167,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -189,7 +189,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -198,7 +198,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -216,7 +216,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -233,7 +233,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -243,7 +243,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -254,7 +254,7 @@ - +
diff --git a/text-to-link/README.md b/text-to-link/README.md index f9b734c95..729411d2e 100644 --- a/text-to-link/README.md +++ b/text-to-link/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -84,7 +84,7 @@ - + ## 使用帮助 @@ -98,14 +98,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/text-to-link/README_en.md b/text-to-link/README_en.md index 4037f259a..ef3757836 100644 --- a/text-to-link/README_en.md +++ b/text-to-link/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -84,7 +84,7 @@ Modified from [Text To link](https://greasyfork.org/scripts/342) to only add a d - + ## Help @@ -98,14 +98,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/text-to-link/README_ko.md b/text-to-link/README_ko.md index b8739fe24..83be215c3 100644 --- a/text-to-link/README_ko.md +++ b/text-to-link/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -84,7 +84,7 @@ - + ## 돕다 @@ -98,14 +98,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/text-to-link/README_vi.md b/text-to-link/README_vi.md index e58d6a9d5..e2867e4cf 100644 --- a/text-to-link/README_vi.md +++ b/text-to-link/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -84,7 +84,7 @@ - + ## Giúp đỡ @@ -98,14 +98,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/text-to-link/README_zh-TW.md b/text-to-link/README_zh-TW.md index e76906de0..25beca750 100644 --- a/text-to-link/README_zh-TW.md +++ b/text-to-link/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -84,7 +84,7 @@ - + ## 使用幫助 @@ -98,14 +98,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/thisav-auto-login-helper/README.md b/thisav-auto-login-helper/README.md index 5c12b67b7..0f79f66a9 100644 --- a/thisav-auto-login-helper/README.md +++ b/thisav-auto-login-helper/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -69,13 +69,13 @@ - + # ThisAV AutoLogin Helper 这是一个用于ThisAV管理用户账户的脚本,主要功能自动登录以及检测用户是否已登录。 - + ## 功能 @@ -83,7 +83,7 @@ - **登录功能**: 使用用户提供的电子邮件和密码进行登录,并处理登录错误。 - **用户检测**: 检测用户是否已登录,如果未登录则尝试自动登录。 - + ## 安装和使用 @@ -101,7 +101,7 @@ - 脚本会自动检测用户是否已登录。如果检测到未登录状态,它将使用提供的账户信息尝试登录。 - + > ### 🔍你可能在找成人脚本 > @@ -118,7 +118,7 @@ - + ## 使用帮助 @@ -132,14 +132,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -152,7 +152,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -170,7 +170,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -240,7 +240,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -262,7 +262,7 @@ - +
diff --git a/thisav-auto-login-helper/README_en.md b/thisav-auto-login-helper/README_en.md index 24f4e85c6..0b79d9078 100644 --- a/thisav-auto-login-helper/README_en.md +++ b/thisav-auto-login-helper/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -69,13 +69,13 @@ - + # ThisAV AutoLogin Helper This script is used for managing user accounts on ThisAV. It provides functionalities for automatic login and checking if the user is already logged in. - + ## Features @@ -83,7 +83,7 @@ This script is used for managing user accounts on ThisAV. It provides functional - **Login Functionality**: Logs in using the provided email and password, and handles login errors. - **User Detection**: Checks if the user is logged in. If not, it attempts to log in automatically. - + ## Installation and Usage @@ -101,7 +101,7 @@ This script is used for managing user accounts on ThisAV. It provides functional - The script will automatically check if the user is logged in. If it detects that the user is not logged in, it will attempt to log in using the provided account information. - + > ### 🔍You might be looking for adult scripts > @@ -118,7 +118,7 @@ This script is used for managing user accounts on ThisAV. It provides functional - + ## Help @@ -132,14 +132,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -152,7 +152,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -170,7 +170,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -193,7 +193,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -203,7 +203,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -222,7 +222,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -240,7 +240,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -251,7 +251,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -262,7 +262,7 @@ Recommended browser and script manager: - +
diff --git a/thisav-auto-login-helper/README_ko.md b/thisav-auto-login-helper/README_ko.md index 8c1320fff..ffeabb33d 100644 --- a/thisav-auto-login-helper/README_ko.md +++ b/thisav-auto-login-helper/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -69,13 +69,13 @@ - + # ThisAV AutoLogin Helper 이것은ThisAV사용자 계정을 관리하는 스크립트,주요 기능은 자동으로 로그인하고 사용자가 로그인되는지 여부를 감지합니다.。 - + ## 기능 @@ -83,7 +83,7 @@ - **로그인 기능**: 사용자 제공 이메일 및 비밀번호를 사용하여 로그인하십시오,로그인 오류를 처리합니다。 - **사용자 탐지**: 사용자가 로그인되었는지 확인하십시오,로그인하지 않으면 자동으로 로그인하십시오。 - + ## 설치 및 사용 @@ -101,7 +101,7 @@ - 스크립트는 사용자가 로그인되었는지 자동으로 감지합니다.。로그인 상태가 감지 된 경우,제공된 계정 정보를 사용하여 로그인하려고합니다.。 - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -118,7 +118,7 @@ - + ## 돕다 @@ -132,14 +132,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -152,7 +152,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -170,7 +170,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -193,7 +193,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -203,7 +203,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -222,7 +222,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -240,7 +240,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -251,7 +251,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -262,7 +262,7 @@ - +
diff --git a/thisav-auto-login-helper/README_vi.md b/thisav-auto-login-helper/README_vi.md index 4517fbde9..7b49178f6 100644 --- a/thisav-auto-login-helper/README_vi.md +++ b/thisav-auto-login-helper/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -69,13 +69,13 @@ - + # ThisAV AutoLogin Helper Đây là choThisAVTập lệnh để quản lý tài khoản người dùng,Các chức năng chính tự động đăng nhập và phát hiện xem người dùng có đăng nhập không。 - + ## Chức năng @@ -83,7 +83,7 @@ - **Hàm đăng nhập**: Đăng nhập bằng cách sử dụng email và mật khẩu do người dùng cung cấp,Và xử lý các lỗi đăng nhập。 - **Phát hiện người dùng**: Kiểm tra xem người dùng có đăng nhập không,Nếu không đăng nhập, hãy thử đăng nhập tự động。 - + ## Cài đặt và sử dụng @@ -101,7 +101,7 @@ - Tập lệnh sẽ tự động phát hiện xem người dùng có đăng nhập không。Nếu trạng thái đăng nhập được phát hiện,Nó sẽ cố gắng đăng nhập bằng cách sử dụng thông tin tài khoản được cung cấp。 - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -118,7 +118,7 @@ - + ## Giúp đỡ @@ -132,14 +132,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -152,7 +152,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -170,7 +170,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -193,7 +193,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -203,7 +203,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -222,7 +222,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -240,7 +240,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -251,7 +251,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -262,7 +262,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/thisav-auto-login-helper/README_zh-TW.md b/thisav-auto-login-helper/README_zh-TW.md index f923f7790..4afcdbc7e 100644 --- a/thisav-auto-login-helper/README_zh-TW.md +++ b/thisav-auto-login-helper/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -69,13 +69,13 @@ - + # ThisAV AutoLogin Helper 這是一個用於ThisAV管理用戶賬戶的腳本,主要功能自動登錄以及檢測用戶是否已登錄。 - + ## 功能 @@ -83,7 +83,7 @@ - **登錄功能**: 使用用戶提供的電子郵件和密碼進行登錄,並處理登錄錯誤。 - **用戶檢測**: 檢測用戶是否已登錄,如果未登錄則嘗試自動登錄。 - + ## 安裝和使用 @@ -101,7 +101,7 @@ - 腳本會自動檢測用戶是否已登錄。如果檢測到未登錄狀態,它將使用提供的賬戶信息嘗試登錄。 - + > ### 🔍你可能在找成人腳本 > @@ -118,7 +118,7 @@ - + ## 使用幫助 @@ -132,14 +132,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -152,7 +152,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -170,7 +170,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -193,7 +193,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -203,7 +203,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -240,7 +240,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -251,7 +251,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -262,7 +262,7 @@ - +
diff --git a/tiktok-user-info/README.md b/tiktok-user-info/README.md index 55ff2ff87..0ea714ee4 100644 --- a/tiktok-user-info/README.md +++ b/tiktok-user-info/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -155,7 +155,7 @@ - + ## 使用帮助 @@ -169,14 +169,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/tiktok-user-info/README_en.md b/tiktok-user-info/README_en.md index 81da0fef8..9ac52368b 100644 --- a/tiktok-user-info/README_en.md +++ b/tiktok-user-info/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -155,7 +155,7 @@ The message box contains the following content: - + ## Help @@ -169,14 +169,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/tiktok-user-info/README_ko.md b/tiktok-user-info/README_ko.md index a94027eaa..cbfff6322 100644 --- a/tiktok-user-info/README_ko.md +++ b/tiktok-user-info/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -155,7 +155,7 @@ - + ## 돕다 @@ -169,14 +169,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/tiktok-user-info/README_vi.md b/tiktok-user-info/README_vi.md index 5cac21690..7734016f4 100644 --- a/tiktok-user-info/README_vi.md +++ b/tiktok-user-info/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -155,7 +155,7 @@ Hộp thông báo chứa nội dung sau: - + ## Giúp đỡ @@ -169,14 +169,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/tiktok-user-info/README_zh-TW.md b/tiktok-user-info/README_zh-TW.md index 265da935e..77688d8d5 100644 --- a/tiktok-user-info/README_zh-TW.md +++ b/tiktok-user-info/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -155,7 +155,7 @@ - + ## 使用幫助 @@ -169,14 +169,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/translate-only-chinese/README.md b/translate-only-chinese/README.md index a6e9fed6c..c82efd993 100644 --- a/translate-only-chinese/README.md +++ b/translate-only-chinese/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -132,7 +132,7 @@ - + ## 使用帮助 @@ -146,14 +146,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -166,7 +166,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -184,7 +184,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -236,7 +236,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -254,7 +254,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -276,7 +276,7 @@ - +
diff --git a/translate-only-chinese/README_en.md b/translate-only-chinese/README_en.md index de72af69e..ac4e5c488 100644 --- a/translate-only-chinese/README_en.md +++ b/translate-only-chinese/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍You may be looking for automatic translation > @@ -132,7 +132,7 @@ - + ## Help @@ -146,14 +146,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -166,7 +166,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -184,7 +184,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -207,7 +207,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -217,7 +217,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -236,7 +236,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -254,7 +254,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -265,7 +265,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -276,7 +276,7 @@ Recommended browser and script manager: - +
diff --git a/translate-only-chinese/README_ko.md b/translate-only-chinese/README_ko.md index 0f579b55a..febbaebeb 100644 --- a/translate-only-chinese/README_ko.md +++ b/translate-only-chinese/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -132,7 +132,7 @@ - + ## 돕다 @@ -146,14 +146,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -166,7 +166,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -184,7 +184,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -207,7 +207,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -217,7 +217,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -236,7 +236,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -254,7 +254,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -265,7 +265,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -276,7 +276,7 @@ - +
diff --git a/translate-only-chinese/README_vi.md b/translate-only-chinese/README_vi.md index 2b478eac8..1b3a4dff6 100644 --- a/translate-only-chinese/README_vi.md +++ b/translate-only-chinese/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -132,7 +132,7 @@ - + ## Giúp đỡ @@ -146,14 +146,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -166,7 +166,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -184,7 +184,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -207,7 +207,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -217,7 +217,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -236,7 +236,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -254,7 +254,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -265,7 +265,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -276,7 +276,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/translate-only-chinese/README_zh-TW.md b/translate-only-chinese/README_zh-TW.md index 7cc86cf44..76d129c92 100644 --- a/translate-only-chinese/README_zh-TW.md +++ b/translate-only-chinese/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -70,7 +70,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -132,7 +132,7 @@ - + ## 使用幫助 @@ -146,14 +146,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -166,7 +166,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -184,7 +184,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -207,7 +207,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -217,7 +217,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -236,7 +236,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -254,7 +254,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -265,7 +265,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -276,7 +276,7 @@ - +
diff --git a/twitter(X)-plus/README.md b/twitter(X)-plus/README.md index de27e7e6c..013ca63d3 100644 --- a/twitter(X)-plus/README.md +++ b/twitter(X)-plus/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -107,7 +107,7 @@ - + ## 使用帮助 @@ -121,14 +121,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/twitter(X)-plus/README_en.md b/twitter(X)-plus/README_en.md index ef5f2817b..c4da779ee 100644 --- a/twitter(X)-plus/README_en.md +++ b/twitter(X)-plus/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The above list of script managers and browsers is not exhaustive
The script runs fine in the following environment
Passed
- +
@@ -107,7 +107,7 @@ Provides several useful enhancements: - + ## Help @@ -121,14 +121,14 @@ Recommended browsers and script managers: **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View graphic teaching!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-script%20list) - +
diff --git a/twitter(X)-plus/README_ko.md b/twitter(X)-plus/README_ko.md index 4e02a695e..1a12bb56a 100644 --- a/twitter(X)-plus/README_ko.md +++ b/twitter(X)-plus/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
추천:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위의 스크립트 관리자 및 브라우저 목록은 완전한 것이 아닙니다.
스크립트는 다음 환경에서 정상적으로 실행됩니다.
Passed
- +
@@ -107,7 +107,7 @@ - + ## 돕다 @@ -121,14 +121,14 @@ **사용자 스크립트 설치 방법에 대해 더 알고 싶다면,[나를 클릭하세요](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그래픽 교육 보기!** - + ### [모든 게시 스크립트 보기](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%20%EB%AA%A9%EB%A1%9D) - +
diff --git a/twitter(X)-plus/README_vi.md b/twitter(X)-plus/README_vi.md index 402203f59..fb35276e6 100644 --- a/twitter(X)-plus/README_vi.md +++ b/twitter(X)-plus/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Khuyến khích:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Danh sách trình quản lý tập lệnh và trình duyệt ở trên không đầy đủ
Tập lệnh chạy tốt trong môi trường sau
Passed
- +
@@ -107,7 +107,7 @@ Cung cấp một số cải tiến hữu ích: - + ## Giúp đỡ @@ -121,14 +121,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần biết thêm về cách cài đặt userscript,[bấm vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem giảng dạy đồ họa!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-danh%20s%C3%A1ch%20k%E1%BB%8Bch%20b%E1%BA%A3n) - +
diff --git a/twitter(X)-plus/README_zh-TW.md b/twitter(X)-plus/README_zh-TW.md index a8cd6e4ca..b78e032cc 100644 --- a/twitter(X)-plus/README_zh-TW.md +++ b/twitter(X)-plus/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運作正常
Passed
- +
@@ -107,7 +107,7 @@ - + ## 使用幫助 @@ -121,14 +121,14 @@ **如果你需要了解更多關於如何安裝使用者腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/twitter-download-blocklist/README.md b/twitter-download-blocklist/README.md index 940b77944..7eff167f4 100644 --- a/twitter-download-blocklist/README.md +++ b/twitter-download-blocklist/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -130,7 +130,7 @@ No. Account Name - + ## 使用帮助 @@ -144,14 +144,14 @@ No. Account Name **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/twitter-download-blocklist/README_en.md b/twitter-download-blocklist/README_en.md index 3ab2e9869..6a2605e88 100644 --- a/twitter-download-blocklist/README_en.md +++ b/twitter-download-blocklist/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -130,7 +130,7 @@ No. Account Name - + ## Help @@ -144,14 +144,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/twitter-download-blocklist/README_ko.md b/twitter-download-blocklist/README_ko.md index 320725c8e..a9dd1644e 100644 --- a/twitter-download-blocklist/README_ko.md +++ b/twitter-download-blocklist/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -130,7 +130,7 @@ No. Account Name - + ## 돕다 @@ -144,14 +144,14 @@ No. Account Name **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/twitter-download-blocklist/README_vi.md b/twitter-download-blocklist/README_vi.md index a0b21ddd1..a245b9f33 100644 --- a/twitter-download-blocklist/README_vi.md +++ b/twitter-download-blocklist/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -130,7 +130,7 @@ No. Account Name - + ## Giúp đỡ @@ -144,14 +144,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/twitter-download-blocklist/README_zh-TW.md b/twitter-download-blocklist/README_zh-TW.md index 0aa1a93c6..1d9de53c8 100644 --- a/twitter-download-blocklist/README_zh-TW.md +++ b/twitter-download-blocklist/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -130,7 +130,7 @@ No. Account Name - + ## 使用幫助 @@ -144,14 +144,14 @@ No. Account Name **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/twitter-hide-reposts/README.md b/twitter-hide-reposts/README.md index f25946ed1..af1c948c0 100644 --- a/twitter-hide-reposts/README.md +++ b/twitter-hide-reposts/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -162,7 +162,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -172,7 +172,7 @@ - + ## 使用帮助 @@ -186,13 +186,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -204,7 +204,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -221,7 +221,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -243,7 +243,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -252,7 +252,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -270,7 +270,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -287,7 +287,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -297,7 +297,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -308,7 +308,7 @@ - +
diff --git a/twitter-hide-reposts/README_en.md b/twitter-hide-reposts/README_en.md index b50ef0719..1b609d29f 100644 --- a/twitter-hide-reposts/README_en.md +++ b/twitter-hide-reposts/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -162,7 +162,7 @@ See details [GitHub Project gallery](https://github.com/ChinaGodMan/UserScripts) - + > ### 🔍You might be looking for social media scripts > @@ -172,7 +172,7 @@ See details [GitHub Project gallery](https://github.com/ChinaGodMan/UserScripts) - + ## Help @@ -186,13 +186,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -204,7 +204,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -221,7 +221,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -243,7 +243,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -270,7 +270,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -287,7 +287,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -297,7 +297,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -308,7 +308,7 @@ Recommended browser and script manager: - +
diff --git a/twitter-hide-reposts/README_ko.md b/twitter-hide-reposts/README_ko.md index 56fac7354..d78f0695c 100644 --- a/twitter-hide-reposts/README_ko.md +++ b/twitter-hide-reposts/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -162,7 +162,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -172,7 +172,7 @@ - + ## 돕다 @@ -186,13 +186,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -204,7 +204,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -221,7 +221,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -243,7 +243,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -252,7 +252,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -270,7 +270,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -287,7 +287,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -297,7 +297,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -308,7 +308,7 @@ - +
diff --git a/twitter-hide-reposts/README_vi.md b/twitter-hide-reposts/README_vi.md index 7f4976af9..cce1f3343 100644 --- a/twitter-hide-reposts/README_vi.md +++ b/twitter-hide-reposts/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -162,7 +162,7 @@ Xem chi tiết [GitHub Phòng trưng bày dự án](https://github.com/ChinaGodM - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -172,7 +172,7 @@ Xem chi tiết [GitHub Phòng trưng bày dự án](https://github.com/ChinaGodM - + ## Giúp đỡ @@ -186,13 +186,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -204,7 +204,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -221,7 +221,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -243,7 +243,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -252,7 +252,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -270,7 +270,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -287,7 +287,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -297,7 +297,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -308,7 +308,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/twitter-hide-reposts/README_zh-TW.md b/twitter-hide-reposts/README_zh-TW.md index 2bf1ee26f..9536d43f4 100644 --- a/twitter-hide-reposts/README_zh-TW.md +++ b/twitter-hide-reposts/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -162,7 +162,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -172,7 +172,7 @@ - + ## 使用幫助 @@ -186,13 +186,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -204,7 +204,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -221,7 +221,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -243,7 +243,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -252,7 +252,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -270,7 +270,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -287,7 +287,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -297,7 +297,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -308,7 +308,7 @@ - +
diff --git a/twitter-media-downloader/README.md b/twitter-media-downloader/README.md index 52bebe65d..02688c857 100644 --- a/twitter-media-downloader/README.md +++ b/twitter-media-downloader/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -199,7 +199,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -209,7 +209,7 @@ - + ## 使用帮助 @@ -223,13 +223,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -258,7 +258,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -280,7 +280,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -289,7 +289,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -307,7 +307,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -324,7 +324,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -334,7 +334,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -345,7 +345,7 @@ - +
diff --git a/twitter-media-downloader/README_en.md b/twitter-media-downloader/README_en.md index 97f8ad4cd..dba6f9ef0 100644 --- a/twitter-media-downloader/README_en.md +++ b/twitter-media-downloader/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -199,7 +199,7 @@ See details [GitHub Project gallery](https://github.com/ChinaGodMan/UserScripts) - + > ### 🔍You might be looking for social media scripts > @@ -209,7 +209,7 @@ See details [GitHub Project gallery](https://github.com/ChinaGodMan/UserScripts) - + ## Help @@ -223,13 +223,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -241,7 +241,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -258,7 +258,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -280,7 +280,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -289,7 +289,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -307,7 +307,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -324,7 +324,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -334,7 +334,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -345,7 +345,7 @@ Recommended browser and script manager: - +
diff --git a/twitter-media-downloader/README_ko.md b/twitter-media-downloader/README_ko.md index 752813402..6a9771e65 100644 --- a/twitter-media-downloader/README_ko.md +++ b/twitter-media-downloader/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -199,7 +199,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -209,7 +209,7 @@ - + ## 돕다 @@ -223,13 +223,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -241,7 +241,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -258,7 +258,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -280,7 +280,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -289,7 +289,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -307,7 +307,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -324,7 +324,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -334,7 +334,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -345,7 +345,7 @@ - +
diff --git a/twitter-media-downloader/README_vi.md b/twitter-media-downloader/README_vi.md index 350d5983b..22471e7f0 100644 --- a/twitter-media-downloader/README_vi.md +++ b/twitter-media-downloader/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -199,7 +199,7 @@ Xem chi tiết [GitHub Phòng trưng bày dự án](https://github.com/ChinaGodM - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -209,7 +209,7 @@ Xem chi tiết [GitHub Phòng trưng bày dự án](https://github.com/ChinaGodM - + ## Giúp đỡ @@ -223,13 +223,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -241,7 +241,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -258,7 +258,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -280,7 +280,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -289,7 +289,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -307,7 +307,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -324,7 +324,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -334,7 +334,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -345,7 +345,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/twitter-media-downloader/README_zh-TW.md b/twitter-media-downloader/README_zh-TW.md index 60da45ad4..bc802885a 100644 --- a/twitter-media-downloader/README_zh-TW.md +++ b/twitter-media-downloader/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -199,7 +199,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -209,7 +209,7 @@ - + ## 使用幫助 @@ -223,13 +223,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -258,7 +258,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -280,7 +280,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -289,7 +289,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -307,7 +307,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -324,7 +324,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -334,7 +334,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -345,7 +345,7 @@ - +
diff --git a/twitter-show-date-normally/README.md b/twitter-show-date-normally/README.md index 985860f25..86d9cc269 100644 --- a/twitter-show-date-normally/README.md +++ b/twitter-show-date-normally/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -88,7 +88,7 @@ - + ## 使用帮助 @@ -102,14 +102,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/twitter-show-date-normally/README_en.md b/twitter-show-date-normally/README_en.md index 2a3595d65..99db5d073 100644 --- a/twitter-show-date-normally/README_en.md +++ b/twitter-show-date-normally/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -88,7 +88,7 @@ - + ## Help @@ -102,14 +102,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/twitter-show-date-normally/README_ko.md b/twitter-show-date-normally/README_ko.md index ffaa58b77..ea0ff1a56 100644 --- a/twitter-show-date-normally/README_ko.md +++ b/twitter-show-date-normally/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -88,7 +88,7 @@ - + ## 돕다 @@ -102,14 +102,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/twitter-show-date-normally/README_vi.md b/twitter-show-date-normally/README_vi.md index 238b45297..ff39fedce 100644 --- a/twitter-show-date-normally/README_vi.md +++ b/twitter-show-date-normally/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -88,7 +88,7 @@ - + ## Giúp đỡ @@ -102,14 +102,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/twitter-show-date-normally/README_zh-TW.md b/twitter-show-date-normally/README_zh-TW.md index 0c83fce16..d137bff53 100644 --- a/twitter-show-date-normally/README_zh-TW.md +++ b/twitter-show-date-normally/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -88,7 +88,7 @@ - + ## 使用幫助 @@ -102,14 +102,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/utils/docs/settings.json b/utils/docs/settings.json index 22596de46..c2d3475ed 100644 --- a/utils/docs/settings.json +++ b/utils/docs/settings.json @@ -2,5 +2,5 @@ "repository": "ChinaGodMan/UserScripts", "sub_repository": "ChinaGodMan/UserScriptsHistory", "greasyfork_user_id": 1169082, - "separator": "https://media.chatgptautorefresh.com/images/separators/gradient-aqua.png?latest" + "separator": "https://raw.githubusercontent.com/ChinaGodMan/UserScriptsHistory/main/images/separators/gradient-aqua.png" } diff --git a/utils/fix_toc.py b/utils/fix_toc.py index acfdfaee8..6bb219b02 100644 --- a/utils/fix_toc.py +++ b/utils/fix_toc.py @@ -1,7 +1,8 @@ import re +import sys from content_snippet import get_file_description -from helper import is_file_modified, read_json +from helper import is_file_modified, is_file_updated_more_than, read_json from writer import process_file start_tag = "" @@ -19,6 +20,10 @@ return_link_template = '' readme_toc_template = "({})" +if is_file_updated_more_than("docs/README.md", 15): + print("[SKIP] README.md 没有新提交,跳过处理TOC。") + sys.exit(0) + docs = read_json("utils/docs/translate_readme.json") diff --git a/web-clipper/README.md b/web-clipper/README.md index 08800204e..23f731246 100644 --- a/web-clipper/README.md +++ b/web-clipper/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -125,7 +125,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -142,7 +142,7 @@ - + ## 使用帮助 @@ -156,13 +156,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -174,7 +174,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -191,7 +191,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -213,7 +213,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -222,7 +222,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -240,7 +240,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -257,7 +257,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -267,7 +267,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -278,7 +278,7 @@ - +
diff --git a/web-clipper/README_en.md b/web-clipper/README_en.md index f7a45ec19..31e4527fd 100644 --- a/web-clipper/README_en.md +++ b/web-clipper/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -126,7 +126,7 @@ You can jump to view it after creation:
- + > ### 🔍You may be looking for web-related scripts > @@ -143,7 +143,7 @@ You can jump to view it after creation:
- + ## Help @@ -157,13 +157,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -175,7 +175,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -192,7 +192,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -214,7 +214,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -223,7 +223,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -241,7 +241,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -258,7 +258,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -268,7 +268,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -279,7 +279,7 @@ Recommended browser and script manager: - +
diff --git a/web-clipper/README_ko.md b/web-clipper/README_ko.md index 2d7281836..daf47f5b6 100644 --- a/web-clipper/README_ko.md +++ b/web-clipper/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -126,7 +126,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -143,7 +143,7 @@ - + ## 돕다 @@ -157,13 +157,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -175,7 +175,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -192,7 +192,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -214,7 +214,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -223,7 +223,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -241,7 +241,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -258,7 +258,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -268,7 +268,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -279,7 +279,7 @@ - +
diff --git a/web-clipper/README_vi.md b/web-clipper/README_vi.md index 39e01859c..94c810afd 100644 --- a/web-clipper/README_vi.md +++ b/web-clipper/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -126,7 +126,7 @@ Bạn có thể nhảy để xem nó sau khi sáng tạo:
- + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -143,7 +143,7 @@ Bạn có thể nhảy để xem nó sau khi sáng tạo:
- + ## Giúp đỡ @@ -157,13 +157,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -175,7 +175,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -192,7 +192,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -223,7 +223,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -241,7 +241,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -258,7 +258,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -268,7 +268,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -279,7 +279,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/web-clipper/README_zh-TW.md b/web-clipper/README_zh-TW.md index 87d2e9f5f..041effd39 100644 --- a/web-clipper/README_zh-TW.md +++ b/web-clipper/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -126,7 +126,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -143,7 +143,7 @@ - + ## 使用幫助 @@ -157,13 +157,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -175,7 +175,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -192,7 +192,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -223,7 +223,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -258,7 +258,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -268,7 +268,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -279,7 +279,7 @@ - +
diff --git a/wechat-black/README.md b/wechat-black/README.md index ac269d415..29cd91a56 100644 --- a/wechat-black/README.md +++ b/wechat-black/README.md @@ -38,7 +38,7 @@ Gmail - +
推荐使用:
Support
@@ -47,7 +47,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -96,7 +96,7 @@ - + ## 使用帮助 @@ -110,14 +110,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/weibo-mobile-redirect/README.md b/weibo-mobile-redirect/README.md index 51bd70918..d10dd9d84 100644 --- a/weibo-mobile-redirect/README.md +++ b/weibo-mobile-redirect/README.md @@ -38,7 +38,7 @@ Gmail - +
推荐使用:
Support
@@ -47,7 +47,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -115,7 +115,7 @@ - + ## 使用帮助 @@ -129,14 +129,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/xhamster-downloader/README.md b/xhamster-downloader/README.md index c90442fa2..34d429bee 100644 --- a/xhamster-downloader/README.md +++ b/xhamster-downloader/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -118,7 +118,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -135,7 +135,7 @@ - + ## 使用帮助 @@ -149,13 +149,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -167,7 +167,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -184,7 +184,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -215,7 +215,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -233,7 +233,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -250,7 +250,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -260,7 +260,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -271,7 +271,7 @@ - +
diff --git a/xhamster-downloader/README_en.md b/xhamster-downloader/README_en.md index 3121be132..445a2eaf3 100644 --- a/xhamster-downloader/README_en.md +++ b/xhamster-downloader/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -118,7 +118,7 @@ - + > ### 🔍You might be looking for adult scripts > @@ -135,7 +135,7 @@ - + ## Help @@ -149,13 +149,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -167,7 +167,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -184,7 +184,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -206,7 +206,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -215,7 +215,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -233,7 +233,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -250,7 +250,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -260,7 +260,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -271,7 +271,7 @@ Recommended browser and script manager: - +
diff --git a/xhamster-downloader/README_ko.md b/xhamster-downloader/README_ko.md index d6fd4ba09..ec3af0609 100644 --- a/xhamster-downloader/README_ko.md +++ b/xhamster-downloader/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -118,7 +118,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -135,7 +135,7 @@ - + ## 돕다 @@ -149,13 +149,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -167,7 +167,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -184,7 +184,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -206,7 +206,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -215,7 +215,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -233,7 +233,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -250,7 +250,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -260,7 +260,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -271,7 +271,7 @@ - +
diff --git a/xhamster-downloader/README_vi.md b/xhamster-downloader/README_vi.md index c8b6fefb1..e5fdec240 100644 --- a/xhamster-downloader/README_vi.md +++ b/xhamster-downloader/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -118,7 +118,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -135,7 +135,7 @@ - + ## Giúp đỡ @@ -149,13 +149,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -167,7 +167,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -184,7 +184,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -206,7 +206,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -215,7 +215,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -233,7 +233,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -250,7 +250,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -260,7 +260,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -271,7 +271,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/xhamster-downloader/README_zh-TW.md b/xhamster-downloader/README_zh-TW.md index 19647361a..e12d0730a 100644 --- a/xhamster-downloader/README_zh-TW.md +++ b/xhamster-downloader/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -118,7 +118,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -135,7 +135,7 @@ - + ## 使用幫助 @@ -149,13 +149,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -167,7 +167,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -184,7 +184,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -206,7 +206,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -215,7 +215,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -233,7 +233,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -250,7 +250,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -260,7 +260,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -271,7 +271,7 @@ - +
diff --git a/xnxx-downloader/README.md b/xnxx-downloader/README.md index 951aa39ef..0a2f8d37c 100644 --- a/xnxx-downloader/README.md +++ b/xnxx-downloader/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -130,7 +130,7 @@ - + ## 使用帮助 @@ -144,13 +144,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -162,7 +162,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -179,7 +179,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -201,7 +201,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -210,7 +210,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -266,7 +266,7 @@ - +
diff --git a/xnxx-downloader/README_en.md b/xnxx-downloader/README_en.md index eff4fcd8e..562d652ff 100644 --- a/xnxx-downloader/README_en.md +++ b/xnxx-downloader/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍You might be looking for adult scripts > @@ -130,7 +130,7 @@ - + ## Help @@ -144,13 +144,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -162,7 +162,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -179,7 +179,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -201,7 +201,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -210,7 +210,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -228,7 +228,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -245,7 +245,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -255,7 +255,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -266,7 +266,7 @@ Recommended browser and script manager: - +
diff --git a/xnxx-downloader/README_ko.md b/xnxx-downloader/README_ko.md index 224e2abc6..b58c97f66 100644 --- a/xnxx-downloader/README_ko.md +++ b/xnxx-downloader/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -130,7 +130,7 @@ - + ## 돕다 @@ -144,13 +144,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -162,7 +162,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -179,7 +179,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -201,7 +201,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -210,7 +210,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -228,7 +228,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -245,7 +245,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -255,7 +255,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -266,7 +266,7 @@ - +
diff --git a/xnxx-downloader/README_vi.md b/xnxx-downloader/README_vi.md index e7ea8e8b5..d97637207 100644 --- a/xnxx-downloader/README_vi.md +++ b/xnxx-downloader/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -130,7 +130,7 @@ - + ## Giúp đỡ @@ -144,13 +144,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -162,7 +162,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -179,7 +179,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -201,7 +201,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -210,7 +210,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -228,7 +228,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -245,7 +245,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -255,7 +255,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -266,7 +266,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/xnxx-downloader/README_zh-TW.md b/xnxx-downloader/README_zh-TW.md index c9998dc66..560d67e3f 100644 --- a/xnxx-downloader/README_zh-TW.md +++ b/xnxx-downloader/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -113,7 +113,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -130,7 +130,7 @@ - + ## 使用幫助 @@ -144,13 +144,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -162,7 +162,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -179,7 +179,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -201,7 +201,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -210,7 +210,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -228,7 +228,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -245,7 +245,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -255,7 +255,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -266,7 +266,7 @@ - +
diff --git a/xvideos-enhance/README.md b/xvideos-enhance/README.md index 924bbe59f..9d52be1ae 100644 --- a/xvideos-enhance/README.md +++ b/xvideos-enhance/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -93,7 +93,7 @@ ![](https://greasyfork.s3.us-east-2.amazonaws.com/n5gszupnqiigj78b72756pvp1xx6) - + > ### 🔍你可能在找成人脚本 > @@ -110,7 +110,7 @@ - + ## 使用帮助 @@ -124,13 +124,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -142,7 +142,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -208,7 +208,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -246,7 +246,7 @@ - +
diff --git a/xvideos-enhance/README_en.md b/xvideos-enhance/README_en.md index dd1d4c4fa..cdaeb2a0c 100644 --- a/xvideos-enhance/README_en.md +++ b/xvideos-enhance/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -93,7 +93,7 @@ This script focuses on improving the viewing effect and video download experienc ![](https://greasyfork.s3.us-east-2.amazonaws.com/n5gszupnqiigj78b72756pvp1xx6) - + > ### 🔍You might be looking for adult scripts > @@ -110,7 +110,7 @@ This script focuses on improving the viewing effect and video download experienc - + ## Help @@ -124,13 +124,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -142,7 +142,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -159,7 +159,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -181,7 +181,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -190,7 +190,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -208,7 +208,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -225,7 +225,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -235,7 +235,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -246,7 +246,7 @@ Recommended browser and script manager: - +
diff --git a/xvideos-enhance/README_ko.md b/xvideos-enhance/README_ko.md index a1846fec6..a68f7e71d 100644 --- a/xvideos-enhance/README_ko.md +++ b/xvideos-enhance/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -93,7 +93,7 @@ ![](https://greasyfork.s3.us-east-2.amazonaws.com/n5gszupnqiigj78b72756pvp1xx6) - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -110,7 +110,7 @@ - + ## 돕다 @@ -124,13 +124,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -142,7 +142,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -159,7 +159,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -181,7 +181,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -190,7 +190,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -208,7 +208,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -225,7 +225,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -235,7 +235,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -246,7 +246,7 @@ - +
diff --git a/xvideos-enhance/README_vi.md b/xvideos-enhance/README_vi.md index 12f396798..e4717c4c0 100644 --- a/xvideos-enhance/README_vi.md +++ b/xvideos-enhance/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -93,7 +93,7 @@ Kịch bản này tập trung vào việc cải thiện hiệu ứng xem và tr ![](https://greasyfork.s3.us-east-2.amazonaws.com/n5gszupnqiigj78b72756pvp1xx6) - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -110,7 +110,7 @@ Kịch bản này tập trung vào việc cải thiện hiệu ứng xem và tr - + ## Giúp đỡ @@ -124,13 +124,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -142,7 +142,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -159,7 +159,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -181,7 +181,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -190,7 +190,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -208,7 +208,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -225,7 +225,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -235,7 +235,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -246,7 +246,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/xvideos-enhance/README_zh-TW.md b/xvideos-enhance/README_zh-TW.md index d650dedf1..97f4822fe 100644 --- a/xvideos-enhance/README_zh-TW.md +++ b/xvideos-enhance/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -93,7 +93,7 @@ ![](https://greasyfork.s3.us-east-2.amazonaws.com/n5gszupnqiigj78b72756pvp1xx6) - + > ### 🔍你可能在找成人腳本 > @@ -110,7 +110,7 @@ - + ## 使用幫助 @@ -124,13 +124,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -142,7 +142,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -159,7 +159,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -181,7 +181,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -190,7 +190,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -208,7 +208,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -225,7 +225,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -235,7 +235,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -246,7 +246,7 @@ - +
diff --git a/youtube-better-volume-control/README.md b/youtube-better-volume-control/README.md index 6c6ba2da6..723ac82d0 100644 --- a/youtube-better-volume-control/README.md +++ b/youtube-better-volume-control/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -107,7 +107,7 @@ YouTube 的视频页面和 Shorts 页面提供自定义音量滑块功能,使 - + ## 使用帮助 @@ -121,14 +121,14 @@ YouTube 的视频页面和 Shorts 页面提供自定义音量滑块功能,使 **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-better-volume-control/README_en.md b/youtube-better-volume-control/README_en.md index a51c3d8e8..9802822ed 100644 --- a/youtube-better-volume-control/README_en.md +++ b/youtube-better-volume-control/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -107,7 +107,7 @@ YouTube Video page and Shorts The page provides custom volume slider function, - + ## Help @@ -121,14 +121,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/youtube-better-volume-control/README_ko.md b/youtube-better-volume-control/README_ko.md index 63c28f29b..806761e3a 100644 --- a/youtube-better-volume-control/README_ko.md +++ b/youtube-better-volume-control/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -107,7 +107,7 @@ YouTube 비디오 페이지 및 Shorts 이 페이지는 사용자 정의 볼륨 - + ## 돕다 @@ -121,14 +121,14 @@ YouTube 비디오 페이지 및 Shorts 이 페이지는 사용자 정의 볼륨 **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/youtube-better-volume-control/README_vi.md b/youtube-better-volume-control/README_vi.md index 059056adc..f1e2f5589 100644 --- a/youtube-better-volume-control/README_vi.md +++ b/youtube-better-volume-control/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -107,7 +107,7 @@ YouTube Trang video và Shorts Trang cung cấp chức năng thanh trượt kh - + ## Giúp đỡ @@ -121,14 +121,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/youtube-better-volume-control/README_zh-TW.md b/youtube-better-volume-control/README_zh-TW.md index 265ede93d..8bdb4841f 100644 --- a/youtube-better-volume-control/README_zh-TW.md +++ b/youtube-better-volume-control/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -107,7 +107,7 @@ YouTube 的視頻頁面和 Shorts 頁面提供自定義音量滑塊功能,使 - + ## 使用幫助 @@ -121,14 +121,14 @@ YouTube 的視頻頁面和 Shorts 頁面提供自定義音量滑塊功能,使 **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-dynamic-grid/README.md b/youtube-dynamic-grid/README.md index 2b06c195f..bab1157e8 100644 --- a/youtube-dynamic-grid/README.md +++ b/youtube-dynamic-grid/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -123,7 +123,7 @@ - + ## 使用帮助 @@ -137,14 +137,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-dynamic-grid/README_en.md b/youtube-dynamic-grid/README_en.md index c87265696..9d0fdc5f3 100644 --- a/youtube-dynamic-grid/README_en.md +++ b/youtube-dynamic-grid/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -123,7 +123,7 @@ This script calculates the best number of videos(Between3arrive12between), - + ## Help @@ -137,14 +137,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/youtube-dynamic-grid/README_ko.md b/youtube-dynamic-grid/README_ko.md index 90e4216df..895a713a5 100644 --- a/youtube-dynamic-grid/README_ko.md +++ b/youtube-dynamic-grid/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -123,7 +123,7 @@ - + ## 돕다 @@ -137,14 +137,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/youtube-dynamic-grid/README_vi.md b/youtube-dynamic-grid/README_vi.md index 31159c613..80c2dd9d5 100644 --- a/youtube-dynamic-grid/README_vi.md +++ b/youtube-dynamic-grid/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -123,7 +123,7 @@ Tập lệnh này tính toán số lượng video tốt nhất(Giữa3đến12 - + ## Giúp đỡ @@ -137,14 +137,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/youtube-dynamic-grid/README_zh-TW.md b/youtube-dynamic-grid/README_zh-TW.md index d094cfe02..dd16a3a55 100644 --- a/youtube-dynamic-grid/README_zh-TW.md +++ b/youtube-dynamic-grid/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -123,7 +123,7 @@ - + ## 使用幫助 @@ -137,14 +137,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-helper/README.md b/youtube-helper/README.md index 5d315c577..f626fe2f1 100644 --- a/youtube-helper/README.md +++ b/youtube-helper/README.md @@ -40,7 +40,7 @@ Gmail - +
推荐使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -106,7 +106,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -116,7 +116,7 @@ - + ## 使用帮助 @@ -130,13 +130,13 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相关脚本 > @@ -148,7 +148,7 @@ - + > ### 🔍你可能在找网页相关脚本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找GitHub相关脚本 > @@ -187,7 +187,7 @@ - + > ### 🔍你可能在找Google相关脚本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找GreasyFork相关脚本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找成人脚本 > @@ -231,7 +231,7 @@ - + > ### 🔍你可能在找自动翻译 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找社交媒体脚本 > @@ -252,7 +252,7 @@ - +
diff --git a/youtube-helper/README_en.md b/youtube-helper/README_en.md index 8d96813b1..90aa97e5b 100644 --- a/youtube-helper/README_en.md +++ b/youtube-helper/README_en.md @@ -40,7 +40,7 @@ Gmail - +
Recommended use:
Support
@@ -49,7 +49,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -106,7 +106,7 @@ - + > ### 🔍You might be looking for social media scripts > @@ -116,7 +116,7 @@ - + ## Help @@ -130,13 +130,13 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - + > ### 🔍You may be looking forChatGPTRelated scripts > @@ -148,7 +148,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for web-related scripts > @@ -165,7 +165,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGitHubRelated scripts > @@ -187,7 +187,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGoogleRelated scripts > @@ -196,7 +196,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking forGreasyForkRelated scripts > @@ -214,7 +214,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for adult scripts > @@ -231,7 +231,7 @@ Recommended browser and script manager: - + > ### 🔍You may be looking for automatic translation > @@ -241,7 +241,7 @@ Recommended browser and script manager: - + > ### 🔍You might be looking for social media scripts > @@ -252,7 +252,7 @@ Recommended browser and script manager: - +
diff --git a/youtube-helper/README_ko.md b/youtube-helper/README_ko.md index f313e4747..719a84361 100644 --- a/youtube-helper/README_ko.md +++ b/youtube-helper/README_ko.md @@ -40,7 +40,7 @@ Gmail - +
권장 사용:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -106,7 +106,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -116,7 +116,7 @@ - + ## 돕다 @@ -130,13 +130,13 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - + > ### 🔍당신은 찾고있을 수 있습니다ChatGPT관련 스크립트 > @@ -148,7 +148,7 @@ - + > ### 🔍웹 관련 스크립트를 찾고있을 수 있습니다 > @@ -165,7 +165,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트 > @@ -187,7 +187,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다Google관련 스크립트 > @@ -196,7 +196,7 @@ - + > ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트 > @@ -214,7 +214,7 @@ - + > ### 🔍성인 스크립트를 찾고있을 수 있습니다 > @@ -231,7 +231,7 @@ - + > ### 🔍자동 번역을 찾고있을 수 있습니다 > @@ -241,7 +241,7 @@ - + > ### 🔍소셜 미디어 스크립트를 찾고있을 수 있습니다 > @@ -252,7 +252,7 @@ - +
diff --git a/youtube-helper/README_vi.md b/youtube-helper/README_vi.md index 4337d209d..4b4edf7a3 100644 --- a/youtube-helper/README_vi.md +++ b/youtube-helper/README_vi.md @@ -40,7 +40,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -49,7 +49,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -106,7 +106,7 @@ - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -116,7 +116,7 @@ - + ## Giúp đỡ @@ -130,13 +130,13 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - + > ### 🔍Bạn có thể đang tìm kiếmChatGPTTập lệnh liên quan > @@ -148,7 +148,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các tập lệnh liên quan đến web > @@ -165,7 +165,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGitHubTập lệnh liên quan > @@ -187,7 +187,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGoogleTập lệnh liên quan > @@ -196,7 +196,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếmGreasyForkTập lệnh liên quan > @@ -214,7 +214,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm kịch bản người lớn > @@ -231,7 +231,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm bản dịch tự động > @@ -241,7 +241,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - + > ### 🔍Bạn có thể đang tìm kiếm các kịch bản truyền thông xã hội > @@ -252,7 +252,7 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: - +
diff --git a/youtube-helper/README_zh-TW.md b/youtube-helper/README_zh-TW.md index b86faf47b..fc239cd6a 100644 --- a/youtube-helper/README_zh-TW.md +++ b/youtube-helper/README_zh-TW.md @@ -40,7 +40,7 @@ Gmail - +
推薦使用:
Support
@@ -49,7 +49,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -106,7 +106,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -116,7 +116,7 @@ - + ## 使用幫助 @@ -130,13 +130,13 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - + > ### 🔍你可能在找ChatGPT相關腳本 > @@ -148,7 +148,7 @@ - + > ### 🔍你可能在找網頁相關腳本 > @@ -165,7 +165,7 @@ - + > ### 🔍你可能在找GitHub相關腳本 > @@ -187,7 +187,7 @@ - + > ### 🔍你可能在找Google相關腳本 > @@ -196,7 +196,7 @@ - + > ### 🔍你可能在找GreasyFork相關腳本 > @@ -214,7 +214,7 @@ - + > ### 🔍你可能在找成人腳本 > @@ -231,7 +231,7 @@ - + > ### 🔍你可能在找自動翻譯 > @@ -241,7 +241,7 @@ - + > ### 🔍你可能在找社交媒體腳本 > @@ -252,7 +252,7 @@ - +
diff --git a/youtube-pro-audio-ambient/README.md b/youtube-pro-audio-ambient/README.md index 5fbc2e41e..f7413c78b 100644 --- a/youtube-pro-audio-ambient/README.md +++ b/youtube-pro-audio-ambient/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -161,7 +161,7 @@ MIT License - + ## 使用帮助 @@ -175,14 +175,14 @@ MIT License **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-pro-audio-ambient/README_en.md b/youtube-pro-audio-ambient/README_en.md index 6df55a74f..2092e8ce7 100644 --- a/youtube-pro-audio-ambient/README_en.md +++ b/youtube-pro-audio-ambient/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The above list of script managers and browsers is not exhaustive
The script runs fine in the following environment
Passed
- +
@@ -161,7 +161,7 @@ For study and personal use only,Please use it reasonably。 - + ## Help @@ -175,14 +175,14 @@ Recommended browsers and script managers: **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View graphic teaching!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-script-list) - +
diff --git a/youtube-pro-audio-ambient/README_ko.md b/youtube-pro-audio-ambient/README_ko.md index 49a3fb206..d1ac07df9 100644 --- a/youtube-pro-audio-ambient/README_ko.md +++ b/youtube-pro-audio-ambient/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
추천:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위의 스크립트 관리자 및 브라우저 목록은 완전한 것이 아닙니다.
스크립트는 다음 환경에서 정상적으로 실행됩니다.
Passed
- +
@@ -161,7 +161,7 @@ MIT License - + ## 돕다 @@ -175,14 +175,14 @@ MIT License **사용자 스크립트 설치 방법에 대해 더 알고 싶다면,[나를 클릭하세요](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그래픽 교육 보기!** - + ### [모든 게시 스크립트 보기](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/youtube-pro-audio-ambient/README_vi.md b/youtube-pro-audio-ambient/README_vi.md index 5d910e850..5704ae1f2 100644 --- a/youtube-pro-audio-ambient/README_vi.md +++ b/youtube-pro-audio-ambient/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Khuyến khích:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Danh sách trình quản lý tập lệnh và trình duyệt ở trên không đầy đủ
Tập lệnh chạy tốt trong môi trường sau
Passed
- +
@@ -161,7 +161,7 @@ Chỉ dành cho học tập và sử dụng cá nhân,Hãy sử dụng nó m - + ## Giúp đỡ @@ -175,14 +175,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần biết thêm về cách cài đặt userscript,[bấm vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem giảng dạy đồ họa!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-danh-s%C3%A1ch-k%E1%BB%8Bch-b%E1%BA%A3n) - +
diff --git a/youtube-pro-audio-ambient/README_zh-TW.md b/youtube-pro-audio-ambient/README_zh-TW.md index e6d0d536c..dac359c51 100644 --- a/youtube-pro-audio-ambient/README_zh-TW.md +++ b/youtube-pro-audio-ambient/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -161,7 +161,7 @@ MIT License - + ## 使用幫助 @@ -175,14 +175,14 @@ MIT License **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-watch-later-shortcut/README.md b/youtube-watch-later-shortcut/README.md index a2b82c0b6..832d6ee88 100644 --- a/youtube-watch-later-shortcut/README.md +++ b/youtube-watch-later-shortcut/README.md @@ -42,7 +42,7 @@ Gmail - +
推荐使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -89,7 +89,7 @@ - + ## 使用帮助 @@ -103,14 +103,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/youtube-watch-later-shortcut/README_en.md b/youtube-watch-later-shortcut/README_en.md index 87943a0cb..f59c1de20 100644 --- a/youtube-watch-later-shortcut/README_en.md +++ b/youtube-watch-later-shortcut/README_en.md @@ -42,7 +42,7 @@ Gmail - +
Recommended use:
Support
@@ -51,7 +51,7 @@ 💡 Tip: The script manager and browser listed above do not represent all
The script runs normally in the following environment
Passed
- +
@@ -89,7 +89,7 @@ - + ## Help @@ -103,14 +103,14 @@ Recommended browser and script manager: **If you need to learn more about how to install user scripts,[Click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/en#readme)View the teaching of pictures and texts!** - + ### [View all publish scripts](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/en#-Script-List) - +
diff --git a/youtube-watch-later-shortcut/README_ko.md b/youtube-watch-later-shortcut/README_ko.md index 3cfa8e2f5..b272e396d 100644 --- a/youtube-watch-later-shortcut/README_ko.md +++ b/youtube-watch-later-shortcut/README_ko.md @@ -42,7 +42,7 @@ Gmail - +
권장 사용:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 위에 나열된 스크립트 관리자와 브라우저가 모두를 나타내지는 않습니다.
스크립트는 정상적으로 다음 환경에서 실행됩니다
Passed
- +
@@ -89,7 +89,7 @@ - + ## 돕다 @@ -103,14 +103,14 @@ **사용자 스크립트를 설치하는 방법에 대해 자세히 알아야 할 경우,[나를 클릭하십시오](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/ko#readme)그림과 텍스트의 가르침을보십시오!** - + ### [모든 게시 스크립트를보십시오](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/ko#-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EB%AA%A9%EB%A1%9D) - +
diff --git a/youtube-watch-later-shortcut/README_vi.md b/youtube-watch-later-shortcut/README_vi.md index 87ee1449e..07edbdd68 100644 --- a/youtube-watch-later-shortcut/README_vi.md +++ b/youtube-watch-later-shortcut/README_vi.md @@ -42,7 +42,7 @@ Gmail - +
Sử dụng được đề xuất:
Support
@@ -51,7 +51,7 @@ 💡 Tip: Trình quản lý tập lệnh và trình duyệt được liệt kê ở trên không đại diện cho tất cả
Tập lệnh chạy bình thường trong môi trường sau
Passed
- +
@@ -89,7 +89,7 @@ - + ## Giúp đỡ @@ -103,14 +103,14 @@ Trình duyệt và trình quản lý tập lệnh được đề xuất: **Nếu bạn cần tìm hiểu thêm về cách cài đặt tập lệnh người dùng,[Nhấp vào tôi](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/vi#readme)Xem việc dạy hình ảnh và văn bản!** - + ### [Xem tất cả các tập lệnh xuất bản](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/vi#-Danh-s%C3%A1ch-t%E1%BA%ADp-l%E1%BB%87nh) - +
diff --git a/youtube-watch-later-shortcut/README_zh-TW.md b/youtube-watch-later-shortcut/README_zh-TW.md index 7db2f1b2a..0d7653f6a 100644 --- a/youtube-watch-later-shortcut/README_zh-TW.md +++ b/youtube-watch-later-shortcut/README_zh-TW.md @@ -42,7 +42,7 @@ Gmail - +
推薦使用:
Support
@@ -51,7 +51,7 @@ 💡 Tip: 以上已列出的腳本管理器和瀏覽器不代表全部
腳本在以下環境中運行正常
Passed
- +
@@ -89,7 +89,7 @@ - + ## 使用幫助 @@ -103,14 +103,14 @@ **如果你需要了解更多關於如何安裝用戶腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/zh-TW#readme)查看圖文教學!** - + ### [查看所有發布腳本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/zh-TW#-%E8%85%B3%E6%9C%AC%E5%88%97%E8%A1%A8) - +
diff --git a/zhihu-black/README.md b/zhihu-black/README.md index c301f57a7..5c11ff065 100644 --- a/zhihu-black/README.md +++ b/zhihu-black/README.md @@ -38,7 +38,7 @@ Gmail - +
推荐使用:
Support
@@ -47,7 +47,7 @@ 💡 Tip: 以上已列出的脚本管理器和浏览器不代表全部
脚本在以下环境中运行正常
Passed
- +
@@ -162,7 +162,7 @@ - + ## 使用帮助 @@ -176,14 +176,14 @@ **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/#readme)查看图文教学!** - + ### [查看所有发布脚本](https://github.com/ChinaGodMan/UserScripts/tree/main/docs/#-%E8%84%9A%E6%9C%AC%E5%88%97%E8%A1%A8) - +