diff --git a/.codeac.yml b/.codeac.yml
new file mode 100644
index 000000000..4df326e1a
--- /dev/null
+++ b/.codeac.yml
@@ -0,0 +1,5 @@
+version: "1"
+
+tools:
+ eslint:
+ enabled: false
diff --git a/.flake8 b/.flake8
new file mode 100644
index 000000000..583272a8c
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,3 @@
+[flake8]
+ignore = E501
+exclude = node_modules/*
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 000000000..5f48ccff2
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,7 @@
+* text eol=lf
+*.png binary
+*.svg binary
+*.mp4 binary
+*.ico binary
+*.img binary
+*.gif binary
\ No newline at end of file
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 000000000..83c105d4b
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,3 @@
+github: ChinaGodMan
+ko_fi: ChinaGodMan
+custom: ["http://www.chinacharityfederation.org", "https://www.redcross.org.cn"]
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 5e1cd528e..cd26a5cb9 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -1,10 +1,9 @@
---
name: 错误报告md
about: 创建一个关于此项目的 Bug 报告
-title: ''
+title: ""
labels: bug
-assignees: ''
-
+assignees: ""
---
## Bug 描述
@@ -36,10 +35,10 @@ assignees: ''
请提供以下信息:
-- 操作系统:Windows 10 / macOS Catalina / Ubuntu 20.04
-- 浏览器:Chrome 91 / Firefox 89 / Safari 14
-- 应用版本:[例如 v1.2.3]
-- 其他相关信息:
+- 操作系统:Windows 10 / macOS Catalina / Ubuntu 20.04
+- 浏览器:Chrome 91 / Firefox 89 / Safari 14
+- 应用版本:[例如 v1.2.3]
+- 其他相关信息:
## 其他信息
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 000000000..dd348d504
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,24 @@
+### 变更内容
+
+请简要描述本次提交的变更内容(修复了什么问题、增加了什么功能等)。
+
+### 相关问题
+
+请列出本次 PR 相关的 issue 编号(例如:#123)。
+
+### 变更类型
+
+- [ ] 修复 Bug
+- [ ] 新功能
+- [ ] 代码优化
+- [ ] 文档更新
+- [ ] 其他(请描述)
+- [ ] QA
+
+### 测试情况
+
+请描述本次提交的变更是否经过测试,以及测试的方式和结果。
+
+### 注意事项
+
+是否有需要注意的内容或潜在问题(例如,兼容性、依赖项等)?
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..6ebae6b8e
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ - package-ecosystem: "npm"
+ directory: "/"
+ schedule:
+ interval: "daily"
diff --git a/.github/pr-badge.yml b/.github/pr-badge.yml
new file mode 100644
index 000000000..8f35b2cb8
--- /dev/null
+++ b/.github/pr-badge.yml
@@ -0,0 +1,28 @@
+- label: "Waiting for"
+ message: "QA"
+ color: yellow
+ when: "$payload.pull_request.body.includes('- [ ] QA')"
+
+- label: "预览"
+ message: "PR-$prNumber"
+ color: "blue"
+ url: "https://pr-$prNumber.company.com"
+
+- label: "Passed"
+ message: "QA"
+ color: green
+ when: "$payload.pull_request.body.includes('- [x] QA')"
+
+- label: "PR Size"
+ message: "Large"
+ color: "red"
+ when: "$additions >= 500"
+
+- label: "PR Size"
+ message: "Medium"
+ color: "yellow"
+ when: "$additions > 200 && $additions < 500"
+
+- message: "Work in Progress"
+ color: "yellow"
+ when: "$payload.pull_request.title.includes('WIP')"
diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml
new file mode 100644
index 000000000..150cc3e65
--- /dev/null
+++ b/.github/pr-labeler.yml
@@ -0,0 +1,88 @@
+# .github/pr-labeler.yml
+# The bot always updates the labels, add/remove as necessary [default: false]
+alwaysReplace: false
+# Treats the text and labels as case sensitive [default: true]
+caseSensitive: true
+# Array of labels to be applied to the PR [default: []]
+customLabels:
+ # Finds the `text` within the PR title and body and applies the `label`
+ - text: "#新增"
+ label: "新功能"
+ - text: "#feature"
+ label: "feature"
+
+ - text: "#修复"
+ label: "修复"
+ - text: "#fix"
+ label: "fix"
+
+ - text: "#优化"
+ label: "优化"
+ - text: "#improvement"
+ label: "improvement"
+
+ - text: "#重构"
+ label: "重构"
+ - text: "#refactor"
+ label: "refactor"
+
+ - text: "#文档"
+ label: "文档"
+ - text: "#docs"
+ label: "docs"
+
+ - text: "#测试"
+ label: "测试"
+ - text: "#test"
+ label: "test"
+
+ - text: "#弃用"
+ label: "弃用"
+ - text: "#deprecate"
+ label: "deprecate"
+
+ - text: "#安全"
+ label: "安全"
+ - text: "#security"
+ label: "security"
+
+ - text: "#性能"
+ label: "性能"
+ - text: "#performance"
+ label: "performance"
+
+ - text: "#CI"
+ label: "CI"
+ - text: "#ci"
+ label: "ci"
+
+ - text: "#杂项"
+ label: "杂项"
+ - text: "#chore"
+ label: "chore"
+
+ - text: "#回滚"
+ label: "回滚"
+ - text: "#rollback"
+ label: "rollback"
+
+ - text: "#依赖"
+ label: "依赖"
+ - text: "#dependencies"
+ label: "dependencies"
+
+ - text: "#样式"
+ label: "样式"
+ - text: "#style"
+ label: "style"
+ - text: "#日志"
+ label: "日志"
+ - text: "#log"
+ label: "log"
+
+# Search the body of the PR for the `text` [default: true]
+searchBody: true
+# Search the title of the PR for the `text` [default: true]
+searchTitle: true
+# Search for whole words only [default: false]
+wholeWords: false
diff --git a/.github/workflows-bak/1.yml.off b/.github/workflows-bak/1.yml.off
deleted file mode 100644
index d78e95afc..000000000
--- a/.github/workflows-bak/1.yml.off
+++ /dev/null
@@ -1,16 +0,0 @@
-name: Output All Matching Paths
-
-on:
- workflow_dispatch:
-
-jobs:
- output-paths:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v3
-
- - name: Find and output all matching paths
- run: |
- find ./Script\ details/*/Change\ history/README.md
diff --git a/.github/workflows-bak/Updated-replaceText.yml.off b/.github/workflows-bak/Updated-replaceText.yml.off
deleted file mode 100644
index 2932fd59d..000000000
--- a/.github/workflows-bak/Updated-replaceText.yml.off
+++ /dev/null
@@ -1,40 +0,0 @@
-name: Github 替换md文件字符串
-
-on:
-# schedule:
-# - cron: '*/6 * * * *' # 每 6 分钟运行一次
-
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- find-and-replace:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- name: 检出代码
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 寻找并替换字符串
- run: |
- echo "遍历并替换 .md 文件中的字符串"
- find . -name "*.md" -print0 | xargs -0 sed -i 's/qinwuyuan-cn/ChinaGodMan/g'
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- # 添加更改
- git add .
- git commit -m '更新 .md 文件中的字符串' || echo "没有需要提交的更改"
- git push origin ${{ env.branch }}
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows-bak/actions-clear.yml b/.github/workflows-bak/actions-clear.yml
deleted file mode 100644
index df4861801..000000000
--- a/.github/workflows-bak/actions-clear.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-name: Cleanup Actions Runs
-
-on:
- workflow_dispatch: # 允许手动触发
- schedule: # 可以定时触发,比如每周清理一次
- - cron: "0 0 * * 0" # 每周日00:00执行
-
-jobs:
- cleanup:
- runs-on: ubuntu-latest
-
- steps:
- # Checkout 仓库代码
- - name: Checkout repository
- uses: actions/checkout@v4
-
- # 设置 Python 环境
- - name: Setup Python
- uses: actions/setup-python@v2
- with:
- python-version: 3.x
-
- # 安装依赖
- - name: Install dependencies
- run: |
- pip install requests
-
- # 运行清理脚本
- - name: cleanup UserScripts
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 将 GITHUB_TOKEN 传递到脚本环境变量
- REPO_OWNER: ${{ github.repository_owner }} # 仓库所有者
- REPO_NAME: ${{ github.event.repository.name }} # 仓库名称
- run: |
- python pythonscr/cleanup_actions.py
-
- - name: cleanup UserScriptsHistory
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 将 GITHUB_TOKEN 传递到脚本环境变量
- REPO_OWNER: ${{ github.repository_owner }} # 仓库所有者
- REPO_NAME: 'UserScriptsHistory'
- run: |
- python pythonscr/cleanup_actions.py
diff --git a/.github/workflows-bak/auto-close-issue.yml b/.github/workflows-bak/auto-close-issue.yml
deleted file mode 100644
index 02fb9969d..000000000
--- a/.github/workflows-bak/auto-close-issue.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: auto-close-and-comment-issue
-
-on:
- push:
- paths:
- - "Script details/**/*.js" #新的脚本被提交或者被修改了.
- workflow_dispatch: # 你可以指定其他分支
-
-jobs:
- close_issue:
- runs-on: ubuntu-latest
-
- steps:
- - name: Check out the code
- uses: actions/checkout@v3
-
- - name: Extract commit messages
- run: |
- # 提取最近一次提交的提交信息
- git log -1 --pretty=format:"%s" > commit_message.txt
- id: extract_commit
-
- - name: Find issue references in commit message
- id: find_issues
- run: |
- # 使用正则表达式找到提交信息中的 #issue 号
- issues=$(grep -oE '#[0-9]+' commit_message.txt | sed 's/#//g')
- echo "Found issues: $issues"
- echo "issues=$issues" >> $GITHUB_ENV
-
- - name: Close and comment on issues
- if: ${{ env.issues != '' }}
- run: |
- for issue in $issues; do
- echo "Closing and commenting on issue #$issue"
- # 使用 GitHub CLI 来关闭 Issue 并添加评论
- gh issue comment $issue -b "This issue is being closed by commit: ${{ github.sha }}. Commit message: $(cat commit_message.txt)"
- gh issue close $issue
- done
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
diff --git a/.github/workflows-bak/auto-close-stale-issues.yml b/.github/workflows-bak/auto-close-stale-issues.yml
deleted file mode 100644
index f4f26b4c1..000000000
--- a/.github/workflows-bak/auto-close-stale-issues.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: Close Stale Issues
-
-on:
- schedule:
- - cron: "0 0 */7 * *" # 每15天午夜运行一次
- workflow_dispatch: # 手动触发
-
-jobs:
- stale:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/stale@v8 # 使用官方的 stale action
- with:
- repo-token: ${{ secrets.MY_GITHUB_TOKEN }}
- stale-issue-message: "🕒 Discussion Activity Reminder 🕒\n\nThis Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions:\n\n1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as out of date at the bottom of the page.\n\n2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own.\n\n3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution.\n\nNote: This dormant notification will only apply to Discussions with the Question label. To learn more, see our recent announcement.\n\nThank you for helping bring this Discussion to a resolution! 💬"
- stale-pr-message: "This pull request or issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
- days-before-stale: 60 # 30天没有活动的 issue 会被标记为陈旧
- days-before-close: 7 # 被标记为陈旧后再经过7天没有活动的 issue 会被自动关闭
- stale-issue-label: "action-stale" # 标记陈旧 issue 的标签
- close-issue-label: "not-completed"
- exempt-issue-labels: "keep-open" # 带有这个标签的 issue 不会被标记为陈旧
-
diff --git a/.github/workflows-bak/check.yml.off b/.github/workflows-bak/check.yml.off
deleted file mode 100644
index 8207a8131..000000000
--- a/.github/workflows-bak/check.yml.off
+++ /dev/null
@@ -1,44 +0,0 @@
-name: Check for Sensitive Info
-
-on: [push, pull_request]
-
-jobs:
- check_sensitive_info:
- runs-on: ubuntu-latest
- env:
- GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.name }}
- GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }}
- GIT_COMMITTER_NAME: qinwuyuan-sync-bot
- GIT_COMMITTER_EMAIL: qinwuyuan-sync-bot@users.noreply.github.com
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- token: ${{ secrets.MY_GITHUB_TOKEN }}
-
- - name: Check for email
- id: check_email
- run: |
- git pull
- FILES=$(git diff --name-only HEAD^ HEAD)
- FOUND=false
- for FILE in $FILES; do
- if grep -q '123456@gmail.com' "$FILE"; then
- echo "Sensitive info found in $FILE!"
- FOUND=true
- fi
- done
- if [ "$FOUND" = true ]; then
- echo "Sensitive info found, restoring to parent commit."
- git reset --hard HEAD^
- # git add .
- # git commit -m "Reverted commit due to sensitive information detected"
- git push origin HEAD --force
- exit 1
- else
- echo "No sensitive info found."
- fi
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
diff --git a/.github/workflows-bak/format-js.yml.off b/.github/workflows-bak/format-js.yml.off
deleted file mode 100644
index a4f206572..000000000
--- a/.github/workflows-bak/format-js.yml.off
+++ /dev/null
@@ -1,44 +0,0 @@
-name: format-js-branch
-
-on:
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- format-js:
- runs-on: ubuntu-latest
-
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你的 GitHub Token
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 创建新分支
- run: |
- git checkout -b format-js-${{ env.branch }}
- echo "新分支: format-js-${{ env.branch }}"
-
- - name: 安装 Prettier 格式化工具
- run: |
- npm install -g prettier
-
- - name: 格式化所有 JS 文件
- run: |
- npx prettier --write "**/*.js"
-
- - name: 提交和推送更改
- run: |
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- git add .
- git commit -m "格式化所有 JavaScript 文件"
- git push origin format-js-${{ env.branch }}
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你的 Token 推送更改
diff --git a/.github/workflows-bak/format-userscripts.yml b/.github/workflows-bak/format-userscripts.yml
deleted file mode 100644
index 17ecdb7e3..000000000
--- a/.github/workflows-bak/format-userscripts.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-name: format-userscripts
-
-on:
- # schedule:
- # - cron: "0 2 * * 2" # 每周二的 UTC 时间 2 点,即北京时间的早上 10 点
- workflow_dispatch: # 允许手动触发工作流
-
-
-jobs:
- format-js:
- runs-on: ubuntu-latest
-
- steps:
- # Step 1: Checkout the repository from bak branch
- - name: Checkout repository
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }}
-
- # Step 2: Set up Node.js environment
- - name: Set up Node.js
- uses: actions/setup-node@v3
- with:
- node-version: '16' # 可以根据需要调整
-
- # Step 3: Run the custom formatting script (1.js)
- - name: Run format script
- run: node utils/format-monkey-meta.js
-
- # Step 4: Commit and push changes back to the bak branch (if any)
- - name: Commit and push changes
- # 在推送时使用 GitHub Token
- run: |
- git config --global user.name "github-actions[bot]"
- git config --global user.email "github-actions[bot]@users.noreply.github.com"
- git add .
- git commit -m "Auto-format UserScripts" || echo "No changes to commit"
-
-
- git push
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
diff --git a/.github/workflows-bak/merge-change-history.yml b/.github/workflows-bak/merge-change-history.yml
deleted file mode 100644
index 171c9c59a..000000000
--- a/.github/workflows-bak/merge-change-history.yml
+++ /dev/null
@@ -1,87 +0,0 @@
-name: merge-change-history
-
-on:
- push:
- paths:
- - "Script details/**/Change history/README.md" # 增加了新历史说明
- #- 'docs/ScriptsPath.json' # 也在 docs/ScriptsPath.json 文件发生变动时触发 修改了新说明.
- workflow_dispatch: # 允许手动触发工作流
-
-concurrency:
- group: update-qinwuyuan-UserScripts # 将所有运行中的实例放到同一个并发组中
- cancel-in-progress: false # 如果有正在执行的工作流,不取消,而是排队
-
-jobs:
- run-python:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 设置 Python 环境
- uses: actions/setup-python@v2
- with:
- python-version: "3.x"
-
- - name: 安装依赖
- run: |
- python -m pip install --upgrade pip
- pip install markdown # 安装 markdown 库
- # 如果有其他依赖项,请在这里添加
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
- - name: 更新相关脚本
- run: |
- python pythonscr/update-about-script/main.py
-
- - name: 更新小徽章
- run: |
- python pythonscr/update-shields/main.py
-
- - name: 更新帮助
- run: |
- python pythonscr/update-help/main.py
-
- - name: 所有脚本添加到readme
- run: |
- python pythonscr/update-all-script/main.py
-
- - name: 更新变更日志
- run: |
- python pythonscr/merge-change-history/main.py
- continue-on-error: true # 让这个步骤即使出错也不会终止整个工作流
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
- git config --global user.name 'qinwuyuan-sync-bot'
- git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
- git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
-
- git pull
-
- # 添加更改
- git add .
- git commit -S -m "集中修改脚本[*.md]文件" \
- -m "合并日志→Script details/**/Change history/README.md → Script details/**/*.md" \
- -m "刷新徽章→pythonscr/update-shields/SHIELDS.md → Script details/**/*.md" \
- -m "刷新帮助→pythonscr/update-help/HELP.md → Script details/**/*.md" \
- -m "作者推荐→docs/ScriptsPath.json[script.relatedscripts] → Script details/**/*.md" \
- -m "作者所有脚本→docs/ScriptsPath.json[script.relatedscripts] → Script details/**/*.md" \
- || echo "没有需要提交的更改"
- git push origin ${{ env.branch }}
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows-bak/test-auto.yml.off b/.github/workflows-bak/test-auto.yml.off
deleted file mode 100644
index ac8cf3086..000000000
--- a/.github/workflows-bak/test-auto.yml.off
+++ /dev/null
@@ -1,39 +0,0 @@
-name: Create Random Folder Structure
-
-on:
- # 仅允许手动触发
- workflow_dispatch:
-
-jobs:
- create:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }}
-
- - name: Create random folder and files
- run: |
- FOLDER_NAME=$(head /dev/urandom | tr -dc a-z0-9 | head -c 8)
- mkdir -p "Script details/$FOLDER_NAME"
- FILE_NAME=$(head /dev/urandom | tr -dc a-z0-9 | head -c 8)
- touch "Script details/$FOLDER_NAME/$FILE_NAME.js"
- mkdir -p "Script details/$FOLDER_NAME/Change history"
- echo "# Change History" > "Script details/$FOLDER_NAME/Change history/README.md"
-
- - name: Modify ScriptsPath.json
- run: |
- RANDOM_STRING=$(head /dev/urandom | tr -dc a-z0-9 | head -c 8)
- jq --arg rand "$RANDOM_STRING" '.scripts[0].description += " " + $rand' docs/ScriptsPath.json > tmp.json && mv tmp.json docs/ScriptsPath.json
-
- - name: Push changes
- run: |
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
- git add .
- git commit -m "Add random folder structure and update description in ScriptsPath.json"
- git push
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
diff --git a/.github/workflows-bak/update-Script-version.yml.off b/.github/workflows-bak/update-Script-version.yml.off
deleted file mode 100644
index 269600716..000000000
--- a/.github/workflows-bak/update-Script-version.yml.off
+++ /dev/null
@@ -1,170 +0,0 @@
-name: update-Sc2222ript-version
-
-on:
- schedule:
- - cron: '0 2 * * 2' # 每周二的 UTC 时间 2 点,即北京时间的早上 10 点
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- update-versions:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- name: 检出代码
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
- - name: 初始化记录文件
- run: |
- echo "[]" > modified_files.json # 初始化记录文件为 JSON 数组
-
- - name: 提取当前版本
- id: extract_version
- run: |
- jq -c '.scripts[] | select(.isUpdated == true) | .path' docs/ScriptsPath.json | while IFS= read -r file; do
- file=$(echo "$file" | tr -d '"') # 去除 JSON 中的双引号
- echo "处理文件: \"$file\""
- if [ -f "$file" ]; then
- current_version=$(awk '/^\/\/ @version/ {print $NF}' "$file")
- echo "文件 $file 的当前版本: $current_version"
-
- if [ -z "$current_version" ]; then
- echo "在脚本文件 $file 中未找到版本号"
- exit 1
- fi
-
- version_number=$(echo "$current_version" | sed 's/\./ /g')
- echo "版本号(转换为数字): $version_number"
-
- version_number=$(echo $version_number | awk '{printf "%d", ($1*1000000 + $2*10000 + $3*100 + $4 + 1)}')
- echo "版本号(加1后的数字): $version_number"
-
- major=$((version_number / 1000000))
- minor=$(( (version_number % 1000000) / 10000 ))
- patch=$(( (version_number % 10000) / 100 ))
- build=$(( version_number % 100 ))
-
- new_version="$major.$minor.$patch.$build"
- echo "文件 $file 的新版本号: $new_version"
-
- # 更新文件版本号
- sed -i "s|// @version[ ]\+[0-9]*\([.][0-9]*\)*|// @version $new_version|" "$file"
-
- # 记录原文件修改信息
- jq --arg file "$file" --arg old_version "$current_version" --arg new_version "$new_version" \
- '. += [{"file": $file, "old_version": $old_version, "new_version": $new_version}]' \
- modified_files.json > modified_files_tmp.json && mv modified_files_tmp.json modified_files.json
-
- # 读取 backuppath 并复制文件
- backup_path=$(jq -r --arg file "$file" '.scripts[] | select(.path == $file) | .backuppath' docs/ScriptsPath.json)
- if [ -n "$backup_path" ]; then
- echo "备份路径: $backup_path"
- mkdir -p "$backup_path" # 创建备份目录
- cp -f "$file" "$backup_path" # 强制覆盖文件
- echo "文件 $file 备份到 $backup_path"
-
- # 记录备份文件修改信息(与原文件相同版本)
- backup_file="$backup_path/$(basename "$file")"
- jq --arg backup_file "$backup_file" --arg old_version "$current_version" --arg new_version "$new_version" \
- '. += [{"file": $backup_file, "old_version": $old_version, "new_version": $new_version}]' \
- modified_files.json > modified_files_tmp.json && mv modified_files_tmp.json modified_files.json
- else
- echo "未为文件 $file 指定备份路径"
- fi
- else
- echo "未找到脚本文件: $file"
- exit 1
- fi
- done
-
- - name: 检查 @version 是否已更新
- run: |
- jq -c '.scripts[] | select(.isUpdated == true) | .path' docs/ScriptsPath.json | while IFS= read -r file; do
- file=$(echo "$file" | tr -d '"')
- echo "检查文件中的版本号: $file"
- grep '^// @version' "$file"
- done
-
- - name: 调试环境变量
- run: |
- echo "当前环境变量:"
- cat $GITHUB_ENV # 打印环境变量以进行调试
-
-
- - name: 记录操作日志
- run: |
- # 获取更新的文件数量
- updated_files_count=$(jq -c '.scripts[] | select(.isUpdated == true) | .path' docs/ScriptsPath.json | wc -l)
- echo "Updated files count: $updated_files_count"
-
- # 获取当前日期和时间,精确到秒,24小时制
- current_date=$(TZ='Asia/Shanghai' date '+%Y-%m-%d %H:%M:%S')
- echo "当前日期和时间: $current_date"
-
- # 如果文件不存在,则创建并初始化为空数组
- if [ ! -f docs/log/updatedUserScripts.json ]; then
- echo "[]" > docs/log/updatedUserScripts.json
- fi
-
- # 更新 JSON 文件,先添加新记录
- jq --arg date "$current_date" --argjson count "$updated_files_count" \
- '. += [{"date": $date, "updated_files_count": $count}]' \
- docs/log/updatedUserScripts.json > docs/log/updatedUserScripts.json.tmp
- if [ $? -ne 0 ]; then
- echo "jq 命令失败"
- exit 1
- fi
-
- # 计算现有成员数量,排除 member_count 字段
- member_count=$(jq '[.[] | select(has("member_count") | not)] | length' docs/log/updatedUserScripts.json.tmp)
- echo "当前成员数量: $member_count"
-
- # 更新 JSON 文件,修改或添加 member_count 字段
- jq --argjson member_count "$member_count" \
- 'if .[0] | has("member_count") then
- .[0].member_count = $member_count
- else
- [{"member_count": $member_count}] + .
- end' \
- docs/log/updatedUserScripts.json.tmp > docs/log/updatedUserScripts.json
- if [ $? -ne 0 ]; then
- echo "jq 命令失败"
- exit 1
- fi
- rm docs/log/updatedUserScripts.json.tmp
- # 输出最终结果用于调试
- echo "更新后的 docs/log/updatedUserScripts.json 内容:"
- cat docs/log/updatedUserScripts.json
-
-
- - name: 提交和推送更改
- run: |
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- # 逐个添加文件到 Git
- jq -c '.[] | select(.file and .old_version and .new_version)' modified_files.json | while IFS= read -r record; do
- file=$(echo "$record" | jq -r '.file')
- old_version=$(echo "$record" | jq -r '.old_version')
- new_version=$(echo "$record" | jq -r '.new_version')
-
- echo "添加文件到 Git: $file"
- git add "$file"
- git commit -m "$old_version → $new_version" || echo "没有需要提交的更改"
- done
- git add "docs/log/updatedUserScripts.json"
- git commit -m "p"
- git push origin ${{ env.branch }} # 推送到当前分支
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
-
diff --git a/.github/workflows-bak/update-chinagodman-commit.yml b/.github/workflows-bak/update-chinagodman-commit.yml
deleted file mode 100644
index fe54bbb35..000000000
--- a/.github/workflows-bak/update-chinagodman-commit.yml
+++ /dev/null
@@ -1,94 +0,0 @@
-name: 人民的勤务员更新脚本
-
-on:
- push:
- paths:
- - "Script details/**/*.js" #新的脚本被提交或者被修改了.
- workflow_dispatch: # 允许手动触发工作流
-
-concurrency:
- group: u1pdate-qinwuyuan-UserScripts # 将所有运行中的实例放到同一个并发组中
- cancel-in-progress: false # 如果有正在执行的工作流,不取消,而是排队
-
-jobs:
- update-chinagodman-commit:
- runs-on: ubuntu-latest
- env:
- GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.name }}
- GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }}
- GIT_COMMITTER_NAME: qinwuyuan-sync-bot
- GIT_COMMITTER_EMAIL: "${{ secrets.GPG_PRIVATE_EMAIL }}"
-
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- token: ${{ secrets.MY_GITHUB_TOKEN }}
-
- - name: 获取提交者用户名
- id: get_git_username
- run: |
- git_username=$(git log -1 --pretty=format:'%cn') # 获取最后一次提交的用户名
- echo "git_username=$git_username" >> $GITHUB_ENV # 将用户名存入环境变量
- echo "最新的提交者用户名是: $git_username"
-
- - name: 检查提交者是否为 github-actions[bot]
- if: ${{ env.git_username != 'github-actions[bot]' }} # 只有当提交者不是 github-actions[bot] 时才执行 自己提交时触发此任务.用于更新触发更新仓库列表流程
- run: echo "提交者不是 github-actions[bot],继续执行工作流。"
-
- - name: Set up Node.js
- uses: actions/setup-node@v3
- with:
- node-version: '16'
-
- - name: 设置 Python 环境
- if: ${{ env.git_username != 'github-actions[bot]' }} # 只有当提交者不是 github-actions[bot] 时才执行
- uses: actions/setup-python@v2
- with:
- python-version: "3.x"
-
- - name: 获取当前分支
- if: ${{ env.git_username != 'github-actions[bot]' }} # 只有当提交者不是 github-actions[bot] 时才执行
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- if: ${{ env.git_username != 'github-actions[bot]' }} # 只有当提交者不是 github-actions[bot] 时才执行
- run: |
- git pull origin ${{ env.branch }}
-
- - name: Escape backticks in commit msg
- env:
- COMMIT_MSG: ${{ github.event.head_commit.message }}
- run: |
- echo "ESCAPED_MSG< 「 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮 」 Download:Github | ⭐Greasy
- Fork 修复: • 新发送内容也会错误添加按钮,改为添加时判断元素是否存在以下子元素 新增: •增加一个导出代码的按钮,新增的代码来自脚本 →ChatGPT Code Export Button 新增: •兼容新版的 ChatGPT 官网 「 exist chatgpt.com Add an animation in the lower right corner of the upper code block“Copy code”button 」 Download:Github | ⭐Greasy
- Fork repair: • Newly sent content also incorrectly adds a button,Change to determine whether the element has the following sub-elements when adding New: •Add a button to export code,The added code comes from the script →ChatGPT Code Export Button New: •Compatible with new version ChatGPT Official website More user scripts /
-back to top↑ 「 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。) 」 Download:Github | ⭐Greasy
- Fork 修复: 无法在新开聊天或切换聊天时显示计数器的问题,以及发送后计数器不清零的问题 「 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。) 」 Download:Github | ⭐Greasy
- Fork repair: The counter cannot be displayed when opening a new chat or switching chats,And the problem of the counter not clearing after sending More user scripts /
-back to top↑ 「 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。 」 Download:Github | ⭐Greasy
- Fork 新增: 兼容新 ChatGPT 官网,设置最大宽度失败时,自动重新添加. 新增: 增加在移动设备回车键发送。代码来自ChatGPT.com Mobile Layout Enter Key Fix 「 Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。 」 Download:Github | ⭐Greasy
- Fork New: Compatible with new ChatGPT Official website,When setting the maximum width fails,Automatically re-add. New: Added the ability to send the Enter key on mobile devices。code fromChatGPT.com Mobile Layout Enter Key Fix More user scripts /
-back to top↑ 「 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。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。 」 Download:Github | ⭐Greasy
- Fork Mới: Tương thích với mới ChatGPT Trang web chính thức,Khi cài đặt chiều rộng tối đa không thành công,Tự động thêm lại. Mới: Đã thêm khả năng gửi phím Enter trên thiết bị di động。mã từChatGPT.com Mobile Layout Enter Key Fix Nhiều tập lệnh người dùng hơn /
-trở lại đầu trang↑ 「 自動折疊由你發送的長訊息,節省螢幕空間。允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。 」 Download:Github | ⭐Greasy
- Fork 新增: 相容新 ChatGPT 官網,設定最大寬度失敗時,自動重新新增. 新增: 增加在行動裝置回車鍵發送。代碼來自ChatGPT.com Mobile Layout Enter Key Fix 「 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向 」 Download:Github | ⭐Greasy
- Fork 修复: •复制函数 新增: •监听 「 Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions 」 Download:Github | ⭐Greasy
- Fork repair: •copy function New: •monitor More user scripts /
-back to top↑ 「 自动为网页上的表格所有列应用颜色渐变美化. 」 Download:Github | ⭐Greasy
- Fork 修改: 修改为自动渐变色..... 「 Automatically apply color gradient beautification to all columns of tables on web pages. 」 Download:Github | ⭐Greasy
- Fork Revise: Change to automatic gradient color..... More user scripts /
-back to top↑ 「 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。 」 Download:Github | ⭐Greasy
- Fork 「 This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。 」 Download:Github | ⭐Greasy
- Fork More user scripts /
-back to top↑ 「 在GitHub授权页面自动输入授权码与自动确认。 」 Download:Github | ⭐Greasy
- Fork 新增: •仅仅处理授权码行为,方便自用罢了. 「 existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。 」 Download:Github | ⭐Greasy
- Fork New: •Only handle authorization code behavior,Just for personal use. More user scripts /
-back to top↑ 「 GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。 」 Download:Github | ⭐Greasy
- Fork 新增: 增加了对文件增加图标,增加了自定义文件颜色和图标。 「 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。 」 Download:Github | ⭐Greasy
- Fork New: Added icons for files,Added custom file colors and icons。 More user scripts /
-back to top↑ 「 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。 」 Download:Github | ⭐Greasy
- Fork 优化: 移出原脚本的检测链接发生变化的监听器,添加新的监听器用于支持在仓库主页跳转目录时显示按钮 修复: 替换失效的选择器 「 Add a download button,Allows easy downloading of specific GitHub folder。 」 Download:Github | ⭐Greasy
- Fork optimization: Remove the listener for detecting link changes in the original script,Add a new listener to support displaying buttons when jumping to directories on the warehouse homepage repair: Replace broken selectors More user scripts /
-back to top↑ 「 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下 」 Download:Github | ⭐Greasy
- Fork 修复: •修复元素失效问题 「 Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down 」 Download:Github | ⭐Greasy
- Fork repair: •Fix element failure issue More user scripts /
-back to top↑ 「 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件 」 Download:Github | ⭐Greasy
- Fork 新增: 增加下载功能。 「 Add button at the end of each file line,to copy the original file URL and download files 」 Download:Github | ⭐Greasy
- Fork New: Add download function。 More user scripts /
-back to top↑ 「 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。 」 Download:Github | ⭐Greasy
- Fork 「 Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。 」 Download:Github | ⭐Greasy
- Fork More user scripts /
-back to top↑ 「 창고 목록 파일 정렬 방식을 날짜 내림차순으로 변경,최신 업데이트 파일을 편리하게 확인하세요。 」 Download:Github | ⭐Greasy
- Fork 「 Thay đổi cách sắp xếp file danh sách kho theo thứ tự ngày giảm dần,Xem thuận tiện các tập tin cập nhật mới nhất。 」 Download:Github | ⭐Greasy
- Fork Nhiều tập lệnh người dùng hơn /
-trở lại đầu trang↑ 「 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。 」 Download:Github | ⭐Greasy
- Fork 新增: 增加脚本图标 问题: 移动设备无法显示高级搜索框。人民的勤务员(UTC+8) $current_date Fix BUG"
- echo "提交信息: $commit_message"
- git commit -m "FIX" || echo "没有需要提交的更改"
-
- git push origin ${{ env.branch }} # 推送到当前分支
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows-bak/update-shields.yml.off b/.github/workflows-bak/update-shields.yml.off
deleted file mode 100644
index 2668cde68..000000000
--- a/.github/workflows-bak/update-shields.yml.off
+++ /dev/null
@@ -1,53 +0,0 @@
-name: update-shields
-
-on:
-# schedule:
-# - cron: '0 0 * * *' # 每天午夜运行一次,也可以调整为其他频率
-
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- update-shields:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 设置 Python 环境
- uses: actions/setup-python@v2
- with:
- python-version: '3.x'
-
-
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
-
-
- - name: 运行更新
- run: |
- python pythonscr/update-shields/main.py
- continue-on-error: true # 让这个步骤即使出错也不会终止整个工作流
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- # 添加更改
- git add .
- git commit -m '刷新徽章→pythonscr/update-shields/SHIELDS.md → Script details/**/*.md' || echo "没有需要提交的更改"
- git push origin ${{ env.branch }}
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows-bak/update-translate-repo-md.yml b/.github/workflows-bak/update-translate-repo-md.yml
deleted file mode 100644
index 0dcc1204d..000000000
--- a/.github/workflows-bak/update-translate-repo-md.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-name: translate-repo-md
-
-on:
- workflow_run:
- workflows: ["update-docs-readme-list"] # 更新了仓库自述文件,触发翻译
- types:
- - completed # 在 A 流程完成后触发
- workflow_dispatch: # 添加手动触发
-
-jobs:
- translate-readme:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 设置 Python 环境
- uses: actions/setup-python@v2
- with:
- python-version: "3.x"
-
- - name: 安装依赖
- run: |
- python -m pip install --upgrade pip
- pip install googletrans==4.0.0-rc1 # 安装 Google Translate API 的 Python 包
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
- - name: 读取并翻译 README
- run: |
- python pythonscr/translate-force-chinese-to-lang/main.py
- continue-on-error: true # 让这个步骤即使出错也不会终止整个工作流
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
- git config --global user.name 'qinwuyuan-sync-bot'
- git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
- git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
-
- git pull
-
- # 添加更改
- git add .
- git commit -S -m "仓库[README.md]更新" \
- -m "GoogleTranslate→[docs/README.md]↓" \
- -m "[docs/README_xx.md {vi,ko,en,jp,zh-TW}]" \
- || echo "没有需要提交的更改"
- git push origin ${{ env.branch }}
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows-bak/update-translate-script-md.yml b/.github/workflows-bak/update-translate-script-md.yml
deleted file mode 100644
index 795cb6fc8..000000000
--- a/.github/workflows-bak/update-translate-script-md.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-name: translate-script-readme
-##最后触发更新整个所有脚本的其他语言文档.
-on:
- workflow_run:
- workflows: ["merge-change-history"] # 指定 A 流程的名称
- types:
- - completed # 在 A 流程完成后触发
- workflow_dispatch:
-
-jobs:
- translate-script-readme:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 设置 Python 环境
- uses: actions/setup-python@v2
- with:
- python-version: "3.x"
-
- - name: 安装依赖
- run: |
- python -m pip install --upgrade pip
- pip install googletrans==4.0.0-rc1 # 安装 Google Translate API 的 Python 包
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
- - name: 读取并翻译 README
- run: |
- python pythonscr/translate-chinese-to-filelang/main.py
- continue-on-error: true # 让这个步骤即使出错也不会终止整个工作流
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
- git config --global user.name 'qinwuyuan-sync-bot'
- git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
- git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
-
- git pull
-
- # 添加更改
- git add .
- git commit -S -m "脚本[README{_xx}.md]翻译" \
- -m "GoogleTranslate→[Script details/**/README{_xx}.md]↓" \
- -m "[Script details/**/README{_xx}.md]" \
- || echo "没有更改"
- git push origin ${{ env.branch }}
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows-bak/uphis.yml.off b/.github/workflows-bak/uphis.yml.off
deleted file mode 100644
index f84e66fec..000000000
--- a/.github/workflows-bak/uphis.yml.off
+++ /dev/null
@@ -1,53 +0,0 @@
-name: update-hissssss
-
-on:
-# schedule:
-# - cron: '0 0 * * *' # 每天午夜运行一次,也可以调整为其他频率
-
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- update-help:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 设置 Python 环境
- uses: actions/setup-python@v2
- with:
- python-version: '3.x'
-
-
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
-
-
- - name: Delete statshistory.png
- run: |
- find "Script details" -type f -path "*/preview/statshistory.png" -delete
-
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- # 添加更改
- git add .
- git commit -m '删除历史图片statshistory.png' || echo "没有需要提交的更改"
- git push origin ${{ env.branch }}
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml
new file mode 100644
index 000000000..8bb3fdc6a
--- /dev/null
+++ b/.github/workflows/actionlint.yml
@@ -0,0 +1,25 @@
+# Copied from https://github.com/rhysd/actionlint/blob/048c97d90b98b832450d3adf00fc7757b0ed9953/docs/usage.md#use-actionlint-on-github-actions
+name: actionlint
+
+on:
+ push:
+ paths:
+ - .github/workflows/*.yml
+ pull_request:
+ paths:
+ - .github/workflows/*.yml
+
+jobs:
+ actionlint:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ persist-credentials: false # Disable git write access
+ - name: Download actionlint
+ id: get_actionlint
+ run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
+ shell: bash
+ - name: Check workflow files
+ run: ${{ steps.get_actionlint.outputs.executable }} -color
+ shell: bash
diff --git a/.github/workflows/actions-clear.yml b/.github/workflows/actions-clear.yml
index d4b6f41cd..1234e2831 100644
--- a/.github/workflows/actions-clear.yml
+++ b/.github/workflows/actions-clear.yml
@@ -1,34 +1,36 @@
name: Cleanup Actions Runs
on:
- workflow_dispatch:
- schedule:
- - cron: "0 0 * * 0" # 每周日00:00执行
+ workflow_dispatch:
+ schedule:
+ - cron: "0 0 * * 0" # 每周日00:00执行
jobs:
- cleanup:
- runs-on: ubuntu-latest
+ cleanup:
+ runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ with:
+ sparse-checkout: "utils/cleanup_actions.py"
- - name: Install dependencies
- run: |
- pip install requests
+ - name: Install dependencies
+ run: |
+ pip install requests
- - name: cleanup UserScripts
- env:
- GITHUB_TOKEN: ${{ secrets.DELETE_ACTIONS_RUNS }}
- REPO_OWNER: ${{ github.repository_owner }}
- REPO_NAME: ${{ github.event.repository.name }}
- run: |
- python pythonscr/cleanup_actions.py
+ - name: cleanup UserScripts
+ env:
+ GITHUB_TOKEN: ${{ secrets.DELETE_ACTIONS_RUNS }}
+ REPO_OWNER: ${{ github.repository_owner }}
+ REPO_NAME: ${{ github.event.repository.name }}
+ run: |
+ python utils/cleanup_actions.py
- - name: cleanup UserScriptsHistory
- env:
- GITHUB_TOKEN: ${{ secrets.DELETE_ACTIONS_RUNS }}
- REPO_OWNER: ${{ github.repository_owner }}
- REPO_NAME: "UserScriptsHistory"
- run: |
- python pythonscr/cleanup_actions.py
+ - name: cleanup UserScriptsHistory
+ env:
+ GITHUB_TOKEN: ${{ secrets.DELETE_ACTIONS_RUNS }}
+ REPO_OWNER: ${{ github.repository_owner }}
+ REPO_NAME: "UserScriptsHistory"
+ run: |
+ python utils/cleanup_actions.py
diff --git a/.github/workflows/add-reviewed-by.yml b/.github/workflows/add-reviewed-by.yml
new file mode 100644
index 000000000..77eef4be0
--- /dev/null
+++ b/.github/workflows/add-reviewed-by.yml
@@ -0,0 +1,16 @@
+name: add-reviewed-by
+on:
+ pull_request_review:
+ types:
+ - submitted
+
+jobs:
+ approved:
+ if: github.event.review.state == 'approved'
+ runs-on: ubuntu-latest
+ permissions:
+ pull-requests: write
+ steps:
+ - uses: ChinaGodMan/add-reviewed-by-action@main
+ with:
+ github-token: ${{ secrets.BOT_TOKEN }}
diff --git a/.github/workflows/assign-issue-to-creator.yml b/.github/workflows/assign-issue-to-creator.yml
new file mode 100644
index 000000000..d6bc54b91
--- /dev/null
+++ b/.github/workflows/assign-issue-to-creator.yml
@@ -0,0 +1,22 @@
+name: assign-issue-to-creator
+
+on:
+ issues:
+ types: [opened]
+
+jobs:
+ assign-issue:
+ runs-on: ubuntu-latest
+ steps:
+ - name: 自动分配人民的勤务员
+ uses: actions/github-script@v7
+ with:
+ #github-token: ${{ secrets.BOT_TOKEN }}
+ script: |
+ const issueOwner = context.repo.owner;
+ github.rest.issues.addAssignees({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: context.issue.number,
+ assignees: [issueOwner]
+ });
diff --git a/.github/workflows/assign-pr-to-creator.yml b/.github/workflows/assign-pr-to-creator.yml
new file mode 100644
index 000000000..d209cc0c4
--- /dev/null
+++ b/.github/workflows/assign-pr-to-creator.yml
@@ -0,0 +1,53 @@
+name: assign-pr-to-creator
+
+on:
+ pull_request_target:
+ types: [opened]
+
+permissions:
+ pull-requests: write
+ contents: read
+ issues: read
+ checks: read
+ actions: read
+
+jobs:
+ assign-pr:
+ runs-on: ubuntu-latest
+ steps:
+ - name: 自动分配审查和受理至人民的勤务员
+ uses: actions/github-script@v7
+ with:
+ #github-token: ${{ secrets.BO_TOKEN }}
+ script: |
+ const prOwner = context.repo.owner;
+ const pullRequest = context.payload.pull_request;
+ const pull_number = pullRequest.number;
+ const prAuthor = pullRequest.user.login;
+
+ // 添加受理人
+ await github.rest.issues.addAssignees({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: pull_number,
+ assignees: [prOwner]
+ });
+
+ // 请求审阅
+ if (prOwner !== prAuthor) {
+ await github.rest.pulls.requestReviewers({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ pull_number: pull_number,
+ reviewers: [prOwner]
+ });
+ } else {
+ console.log(`跳过请求审阅,因为 PR 的作者是 ${prAuthor},也是仓库拥有者,无需审查!`);
+ }
+
+ await github.rest.issues.createComment({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: pull_number,
+ body: `@${prAuthor} 你好,人民的勤务员将尽快审查合并此次请求!🚀 [自动回复,请勿跟帖] `
+ });
diff --git a/.github/workflows/auto-close-issue.yml b/.github/workflows/auto-close-issue.yml
deleted file mode 100644
index e7defc481..000000000
--- a/.github/workflows/auto-close-issue.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: auto-close-and-comment-issue
-
-on:
- push:
- paths:
- - "Script details/**/*.js" #新的脚本被提交或者被修改了.
- workflow_dispatch: # 你可以指定其他分支
-
-jobs:
- close_issue:
- runs-on: ubuntu-latest
-
- steps:
- - name: Check out the code
- uses: actions/checkout@v3
-
- - name: Extract commit messages
- run: |
- # 提取最近一次提交的提交信息
- git log -1 --pretty=format:"%s" > commit_message.txt
- id: extract_commit
-
- - name: Find issue references in commit message
- id: find_issues
- run: |
- # 使用正则表达式找到提交信息中的 #issue 号
- issues=$(grep -oE '#[0-9]+' commit_message.txt | sed 's/#//g')
- echo "Found issues: $issues"
- echo "issues=$issues" >> $GITHUB_ENV
-
- - name: Close and comment on issues
- if: ${{ env.issues != '' }}
- run: |
- for issue in $issues; do
- echo "Closing and commenting on issue #$issue"
- # 使用 GitHub CLI 来关闭 Issue 并添加评论
- gh issue comment $issue -b "This issue is being closed by commit: ${{ github.sha }}. Commit message: $(cat commit_message.txt)"
- gh issue close $issue
- done
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/auto-close-stale-issues.yml b/.github/workflows/auto-close-stale-issues.yml
index 7dcdf2bca..4a755da5a 100644
--- a/.github/workflows/auto-close-stale-issues.yml
+++ b/.github/workflows/auto-close-stale-issues.yml
@@ -1,22 +1,21 @@
name: Close Stale Issues
on:
- schedule:
- - cron: "0 0 */7 * *" # 每15天午夜运行一次
- workflow_dispatch: # 手动触发
+ schedule:
+ - cron: "0 0 */7 * *" # 每15天午夜运行一次
+ workflow_dispatch: # 手动触发
jobs:
- stale:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/stale@v8 # 使用官方的 stale action
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- stale-issue-message: "🕒 Discussion Activity Reminder 🕒\n\nThis Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions:\n\n1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as out of date at the bottom of the page.\n\n2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own.\n\n3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution.\n\nNote: This dormant notification will only apply to Discussions with the Question label. To learn more, see our recent announcement.\n\nThank you for helping bring this Discussion to a resolution! 💬"
- stale-pr-message: "This pull request or issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
- days-before-stale: 60 # 30天没有活动的 issue 会被标记为陈旧
- days-before-close: 7 # 被标记为陈旧后再经过7天没有活动的 issue 会被自动关闭
- stale-issue-label: "action-stale" # 标记陈旧 issue 的标签
- close-issue-label: "not-completed"
- exempt-issue-labels: "keep-open" # 带有这个标签的 issue 不会被标记为陈旧
-
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/stale@v9 # 使用官方的 stale action
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-message: "🕒 Discussion Activity Reminder 🕒\n\nThis Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions:\n\n1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as out of date at the bottom of the page.\n\n2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own.\n\n3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution.\n\nNote: This dormant notification will only apply to Discussions with the Question label. To learn more, see our recent announcement.\n\nThank you for helping bring this Discussion to a resolution! 💬"
+ stale-pr-message: "This pull request or issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
+ days-before-stale: 60 # 30天没有活动的 issue 会被标记为陈旧
+ days-before-close: 7 # 被标记为陈旧后再经过7天没有活动的 issue 会被自动关闭
+ stale-issue-label: "action-stale" # 标记陈旧 issue 的标签
+ close-issue-label: "not-completed"
+ exempt-issue-labels: "keep-open" # 带有这个标签的 issue 不会被标记为陈旧
diff --git a/.github/workflows/check.yml.off b/.github/workflows/check.yml.off
deleted file mode 100644
index 8207a8131..000000000
--- a/.github/workflows/check.yml.off
+++ /dev/null
@@ -1,44 +0,0 @@
-name: Check for Sensitive Info
-
-on: [push, pull_request]
-
-jobs:
- check_sensitive_info:
- runs-on: ubuntu-latest
- env:
- GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.name }}
- GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }}
- GIT_COMMITTER_NAME: qinwuyuan-sync-bot
- GIT_COMMITTER_EMAIL: qinwuyuan-sync-bot@users.noreply.github.com
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
- token: ${{ secrets.MY_GITHUB_TOKEN }}
-
- - name: Check for email
- id: check_email
- run: |
- git pull
- FILES=$(git diff --name-only HEAD^ HEAD)
- FOUND=false
- for FILE in $FILES; do
- if grep -q '123456@gmail.com' "$FILE"; then
- echo "Sensitive info found in $FILE!"
- FOUND=true
- fi
- done
- if [ "$FOUND" = true ]; then
- echo "Sensitive info found, restoring to parent commit."
- git reset --hard HEAD^
- # git add .
- # git commit -m "Reverted commit due to sensitive information detected"
- git push origin HEAD --force
- exit 1
- else
- echo "No sensitive info found."
- fi
- env:
- GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
diff --git a/.github/workflows/chinagodman-commit.yml b/.github/workflows/chinagodman-commit.yml
new file mode 100644
index 000000000..8133fb716
--- /dev/null
+++ b/.github/workflows/chinagodman-commit.yml
@@ -0,0 +1,47 @@
+name: 人民的勤务员更新脚本
+
+on:
+ push:
+ paths:
+ - "**/*.js" # 新的脚本被提交或者被修改了.
+ workflow_dispatch:
+
+concurrency:
+ group: u1pdate-qinwuyuan-UserScripts # 将所有运行中的实例放到同一个并发组中
+ cancel-in-progress: false # 如果有正在执行的工作流,不取消,而是排队
+
+jobs:
+ update-chinagodman-commit:
+ if: ${{ github.event.commits[0].committer.username != 'qinwuyuan-sync-bot' }}
+ runs-on: ubuntu-latest
+ env:
+ GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.name }}
+ GIT_AUTHOR_EMAIL: ${{ github.event.commits[0].author.email }}
+ GIT_COMMITTER_NAME: qinwuyuan-sync-bot
+ GIT_COMMITTER_EMAIL: "${{ secrets.GPG_PRIVATE_EMAIL }}"
+
+ steps:
+ - name: 检出代码
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ - name: Escape backticks in commit msg
+ env:
+ COMMIT_MSG: ${{ github.event.head_commit.message }}
+ run: |
+ ESCAPED_MSG="$COMMIT_MSG"
+ echo "ESCAPED_MSG=$ESCAPED_MSG" >> "$GITHUB_ENV"
+
+ - name: 根目录脚本__更新py
+ run: |
+ python utils/copy_js_files.py
+
+ - name: 提交和推送更改
+ run: |
+ gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
+ git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
+ git pull
+ git add .
+ git commit -n -S -m "$ESCAPED_MSG" || echo "没有需要提交的更改"
+ git push
diff --git a/.github/workflows/codacy-analysis.yaml b/.github/workflows/codacy-analysis.yaml
new file mode 100644
index 000000000..9c7d5fe5a
--- /dev/null
+++ b/.github/workflows/codacy-analysis.yaml
@@ -0,0 +1,14 @@
+name: Codacy Analysis CLI
+
+on: [push, pull_request]
+
+jobs:
+ codacy-analysis-cli:
+ name: Codacy Analysis CLI
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@main
+
+ - name: Run Codacy Analysis CLI
+ uses: codacy/codacy-analysis-cli-action@master
diff --git a/.github/workflows/eslint-on-push-pr.yml b/.github/workflows/eslint-on-push-pr.yml
new file mode 100644
index 000000000..9e97f8d3f
--- /dev/null
+++ b/.github/workflows/eslint-on-push-pr.yml
@@ -0,0 +1,22 @@
+name: Lint pushes/PRs
+
+on: [push, pull_request]
+
+jobs:
+ js-json-md-yaml-lint:
+ name: JavaScript + JSON + Markdown + YAML
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository code
+ uses: actions/checkout@v4
+
+ - name: Set up Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: "lts/*"
+
+ - name: Install dependencies
+ run: npm ci # instead of install to ensure consistency and determinism in CI/CD workflow
+
+ - name: Run ESLint
+ run: npm run lint
diff --git a/.github/workflows/format-userscripts.yml b/.github/workflows/format-userscripts.yml
deleted file mode 100644
index 3aaf54a0e..000000000
--- a/.github/workflows/format-userscripts.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-name: format-userscripts
-
-on:
- # schedule:
- # - cron: "0 2 * * 2" # 每周二的 UTC 时间 2 点,即北京时间的早上 10 点
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- format-js:
- runs-on: ubuntu-latest
-
- steps:
- # Step 1: Checkout the repository from bak branch
- - name: Checkout repository
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }}
-
- # Step 2: Set up Node.js environment
- - name: Set up Node.js
- uses: actions/setup-node@v3
- with:
- node-version: "16" # 可以根据需要调整
-
- # Step 3: Run the custom formatting script (1.js)
- - name: Run format script
- run: node utils/format-monkey-meta.js
-
- # Step 4: Commit and push changes back to the bak branch (if any)
- - name:
- Commit and push changes
- # 在推送时使用 GitHub Token
- run: |
- git config --global user.name "github-actions[bot]"
- git config --global user.email "github-actions[bot]@users.noreply.github.com"
- git add .
- git commit -m "Auto-format UserScripts" || echo "No changes to commit"
-
-
- git push
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
diff --git a/.github/workflows/merge-change-history.yml b/.github/workflows/merge-change-history.yml
index 2dc56727a..633d9a56c 100644
--- a/.github/workflows/merge-change-history.yml
+++ b/.github/workflows/merge-change-history.yml
@@ -1,64 +1,73 @@
name: merge-change-history
on:
- push:
- paths:
- - "Script details/**/Change history/README.md" # 增加了新历史说明
- #- 'docs/ScriptsPath.json' # 也在 docs/ScriptsPath.json 文件发生变动时触发 修改了新说明.
- workflow_dispatch:
+ push:
+ paths:
+ - "**/Change history/README.md" # 增加了新历史说明
+ #- 'docs/ScriptsPath.json' # 也在 docs/ScriptsPath.json 文件发生变动时触发 修改了新说明.
+ workflow_dispatch:
concurrency:
- group: update-qinwuyuan-UserScripts # 将所有运行中的实例放到同一个并发组中
- cancel-in-progress: false
+ group: update-qinwuyuan-UserScripts
+ cancel-in-progress: false
jobs:
- run-python:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
+ run-python:
+ runs-on: ubuntu-latest
+ steps:
+ - name: 检出代码
+ uses: actions/checkout@v4
- - name: 安装依赖
- run: |
- pip install markdown
+ - name: 安装依赖
+ run: |
+ pip install markdown
+ pip install beautifulsoup4
- - name: 更新相关脚本
- run: |
- python pythonscr/update-about-script/main.py
+ - name: 检查新脚本
+ run: |
+ python utils/script-import-sync.py
+ env:
+ GFU: ${{ secrets.GFU }}
+ GFP: ${{ secrets.GFP }}
- - name: 更新小徽章
- run: |
- python pythonscr/update-shields/main.py
+ - name: 相关脚本
+ run: |
+ python utils/update_related_scripts.py
- - name: 更新帮助
- run: |
- python pythonscr/update-help/main.py
+ - name: 导航栏
+ run: |
+ python utils/navigation.py
- - name: 所有脚本添加到readme
- run: |
- python pythonscr/update-all-script/main.py
+ - name: 徽章信息
+ run: |
+ python utils/update_shields.py
- - name: 更新变更日志
- run: |
- python pythonscr/merge-change-history/main.py
- continue-on-error: true # 让这个步骤即使出错也不会终止整个工作流
+ - name: 帮助信息
+ run: |
+ python utils/update_help.py
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
- git config --global user.name 'qinwuyuan-sync-bot'
- git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
- git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- git pull
- git add .
- git commit -S -m "集中修改脚本[*.md]文件" \
- -m "合并日志→Script details/**/Change history/README.md → Script details/**/*.md" \
- -m "刷新徽章→pythonscr/update-shields/SHIELDS.md → Script details/**/*.md" \
- -m "刷新帮助→pythonscr/update-help/HELP.md → Script details/**/*.md" \
- -m "作者推荐→docs/ScriptsPath.json[script.relatedscripts] → Script details/**/*.md" \
- -m "作者所有脚本→docs/ScriptsPath.json[script.relatedscripts] → Script details/**/*.md" \
- || echo "没有需要提交的更改"
- git push
+ - name: 所有脚本
+ run: |
+ python utils/update_related_all_scripts.py
+
+ - name: 变更日志
+ run: |
+ python utils/merge_change_history.py
+
+ - name: 提交和推送更改
+ run: |
+ gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
+ git config --global user.name 'qinwuyuan-sync-bot'
+ git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
+ git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
+ git pull
+ git add .
+ git commit -n -S -m "docs: 更新[\`脚本自述\`]" \
+ -m "合并日志:Change history/README.md → **/*.md" \
+ -m "刷新徽章:SHIELDS.md → **/*.md" \
+ -m "刷新帮助:HELP.md → **/*.md" \
+ -m "相关脚本:ScriptsPath.json[script.relatedscripts] → **/*.md" \
+ -m "所有脚本:ScriptsPath.json[script.relatedscripts] → **/*.md" \
+ -m "语言导航:**/*.md → xx|xx" \
+ || echo "没有需要提交的更改"
+ git push
diff --git a/.github/workflows/translate-repo-md.yml b/.github/workflows/translate-repo-md.yml
new file mode 100644
index 000000000..cc7f86ae6
--- /dev/null
+++ b/.github/workflows/translate-repo-md.yml
@@ -0,0 +1,33 @@
+name: translate-repo-md
+
+on:
+ workflow_run:
+ workflows: ["update-docs-readme-list"] # 更新了仓库自述文件,触发翻译
+ types:
+ - completed
+ workflow_dispatch:
+
+jobs:
+ translate-readme:
+ if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run.head_branch == 'main' && github.event.workflow_run.conclusion == 'success') }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: 检出代码
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ - name: 读取并翻译 README
+ run: |
+ python utils/translate_force_chinese_to_lang.py
+
+ - name: 提交和推送更改
+ run: |
+ gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
+ git config --global user.name 'qinwuyuan-sync-bot'
+ git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
+ git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
+ git pull
+ git add .
+ git commit -n -S -m "docs: 谷歌翻译[\`README.md\`]→[\`{vi,ko,en,jp,zh-TW}/README.md\`]" || echo "没有需要提交的更改"
+ git push
diff --git a/.github/workflows/translate-scripts-md.yml b/.github/workflows/translate-scripts-md.yml
new file mode 100644
index 000000000..e87f63b23
--- /dev/null
+++ b/.github/workflows/translate-scripts-md.yml
@@ -0,0 +1,33 @@
+name: translate-script-readme
+##最后触发更新整个所有脚本的其他语言文档.
+on:
+ workflow_run:
+ workflows: ["merge-change-history"]
+ types:
+ - completed
+ workflow_dispatch:
+
+jobs:
+ translate-script-readme:
+ if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run.head_branch == 'main' && github.event.workflow_run.conclusion == 'success') }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: 检出代码
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ - name: 读取并翻译 README
+ run: |
+ python utils/translate_chinese_to_filelang.py
+
+ - name: 提交和推送更改
+ run: |
+ gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
+ git config --global user.name 'qinwuyuan-sync-bot'
+ git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
+ git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
+ git pull
+ git add .
+ git commit -n -S -m "docs: 谷歌翻译[\`README{_xx}.md\`]" || echo "没有需要提交的更改"
+ git push
diff --git a/.github/workflows/update-Script-version.yml.off b/.github/workflows/update-Script-version.yml.off
deleted file mode 100644
index 269600716..000000000
--- a/.github/workflows/update-Script-version.yml.off
+++ /dev/null
@@ -1,170 +0,0 @@
-name: update-Sc2222ript-version
-
-on:
- schedule:
- - cron: '0 2 * * 2' # 每周二的 UTC 时间 2 点,即北京时间的早上 10 点
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- update-versions:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- name: 检出代码
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
- - name: 初始化记录文件
- run: |
- echo "[]" > modified_files.json # 初始化记录文件为 JSON 数组
-
- - name: 提取当前版本
- id: extract_version
- run: |
- jq -c '.scripts[] | select(.isUpdated == true) | .path' docs/ScriptsPath.json | while IFS= read -r file; do
- file=$(echo "$file" | tr -d '"') # 去除 JSON 中的双引号
- echo "处理文件: \"$file\""
- if [ -f "$file" ]; then
- current_version=$(awk '/^\/\/ @version/ {print $NF}' "$file")
- echo "文件 $file 的当前版本: $current_version"
-
- if [ -z "$current_version" ]; then
- echo "在脚本文件 $file 中未找到版本号"
- exit 1
- fi
-
- version_number=$(echo "$current_version" | sed 's/\./ /g')
- echo "版本号(转换为数字): $version_number"
-
- version_number=$(echo $version_number | awk '{printf "%d", ($1*1000000 + $2*10000 + $3*100 + $4 + 1)}')
- echo "版本号(加1后的数字): $version_number"
-
- major=$((version_number / 1000000))
- minor=$(( (version_number % 1000000) / 10000 ))
- patch=$(( (version_number % 10000) / 100 ))
- build=$(( version_number % 100 ))
-
- new_version="$major.$minor.$patch.$build"
- echo "文件 $file 的新版本号: $new_version"
-
- # 更新文件版本号
- sed -i "s|// @version[ ]\+[0-9]*\([.][0-9]*\)*|// @version $new_version|" "$file"
-
- # 记录原文件修改信息
- jq --arg file "$file" --arg old_version "$current_version" --arg new_version "$new_version" \
- '. += [{"file": $file, "old_version": $old_version, "new_version": $new_version}]' \
- modified_files.json > modified_files_tmp.json && mv modified_files_tmp.json modified_files.json
-
- # 读取 backuppath 并复制文件
- backup_path=$(jq -r --arg file "$file" '.scripts[] | select(.path == $file) | .backuppath' docs/ScriptsPath.json)
- if [ -n "$backup_path" ]; then
- echo "备份路径: $backup_path"
- mkdir -p "$backup_path" # 创建备份目录
- cp -f "$file" "$backup_path" # 强制覆盖文件
- echo "文件 $file 备份到 $backup_path"
-
- # 记录备份文件修改信息(与原文件相同版本)
- backup_file="$backup_path/$(basename "$file")"
- jq --arg backup_file "$backup_file" --arg old_version "$current_version" --arg new_version "$new_version" \
- '. += [{"file": $backup_file, "old_version": $old_version, "new_version": $new_version}]' \
- modified_files.json > modified_files_tmp.json && mv modified_files_tmp.json modified_files.json
- else
- echo "未为文件 $file 指定备份路径"
- fi
- else
- echo "未找到脚本文件: $file"
- exit 1
- fi
- done
-
- - name: 检查 @version 是否已更新
- run: |
- jq -c '.scripts[] | select(.isUpdated == true) | .path' docs/ScriptsPath.json | while IFS= read -r file; do
- file=$(echo "$file" | tr -d '"')
- echo "检查文件中的版本号: $file"
- grep '^// @version' "$file"
- done
-
- - name: 调试环境变量
- run: |
- echo "当前环境变量:"
- cat $GITHUB_ENV # 打印环境变量以进行调试
-
-
- - name: 记录操作日志
- run: |
- # 获取更新的文件数量
- updated_files_count=$(jq -c '.scripts[] | select(.isUpdated == true) | .path' docs/ScriptsPath.json | wc -l)
- echo "Updated files count: $updated_files_count"
-
- # 获取当前日期和时间,精确到秒,24小时制
- current_date=$(TZ='Asia/Shanghai' date '+%Y-%m-%d %H:%M:%S')
- echo "当前日期和时间: $current_date"
-
- # 如果文件不存在,则创建并初始化为空数组
- if [ ! -f docs/log/updatedUserScripts.json ]; then
- echo "[]" > docs/log/updatedUserScripts.json
- fi
-
- # 更新 JSON 文件,先添加新记录
- jq --arg date "$current_date" --argjson count "$updated_files_count" \
- '. += [{"date": $date, "updated_files_count": $count}]' \
- docs/log/updatedUserScripts.json > docs/log/updatedUserScripts.json.tmp
- if [ $? -ne 0 ]; then
- echo "jq 命令失败"
- exit 1
- fi
-
- # 计算现有成员数量,排除 member_count 字段
- member_count=$(jq '[.[] | select(has("member_count") | not)] | length' docs/log/updatedUserScripts.json.tmp)
- echo "当前成员数量: $member_count"
-
- # 更新 JSON 文件,修改或添加 member_count 字段
- jq --argjson member_count "$member_count" \
- 'if .[0] | has("member_count") then
- .[0].member_count = $member_count
- else
- [{"member_count": $member_count}] + .
- end' \
- docs/log/updatedUserScripts.json.tmp > docs/log/updatedUserScripts.json
- if [ $? -ne 0 ]; then
- echo "jq 命令失败"
- exit 1
- fi
- rm docs/log/updatedUserScripts.json.tmp
- # 输出最终结果用于调试
- echo "更新后的 docs/log/updatedUserScripts.json 内容:"
- cat docs/log/updatedUserScripts.json
-
-
- - name: 提交和推送更改
- run: |
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- # 逐个添加文件到 Git
- jq -c '.[] | select(.file and .old_version and .new_version)' modified_files.json | while IFS= read -r record; do
- file=$(echo "$record" | jq -r '.file')
- old_version=$(echo "$record" | jq -r '.old_version')
- new_version=$(echo "$record" | jq -r '.new_version')
-
- echo "添加文件到 Git: $file"
- git add "$file"
- git commit -m "$old_version → $new_version" || echo "没有需要提交的更改"
- done
- git add "docs/log/updatedUserScripts.json"
- git commit -m "p"
- git push origin ${{ env.branch }} # 推送到当前分支
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
-
diff --git a/.github/workflows/update-chinagodman-commit.yml b/.github/workflows/update-chinagodman-commit.yml
deleted file mode 100644
index 3ca9ef0bf..000000000
--- a/.github/workflows/update-chinagodman-commit.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-name: 人民的勤务员更新脚本
-
-on:
- push:
- paths:
- - "Script details/**/*.js" #新的脚本被提交或者被修改了.
- workflow_dispatch:
-
-concurrency:
- group: u1pdate-qinwuyuan-UserScripts # 将所有运行中的实例放到同一个并发组中
- cancel-in-progress: false # 如果有正在执行的工作流,不取消,而是排队
-
-jobs:
- update-chinagodman-commit:
- runs-on: ubuntu-latest
- env:
- GIT_AUTHOR_NAME: ${{ github.event.commits[0].author.name }}
- GIT_AUTHOR_EMAIL: toniaiwanowskiskr47@gmail.com
- GIT_COMMITTER_NAME: qinwuyuan-sync-bot
- GIT_COMMITTER_EMAIL: "${{ secrets.GPG_PRIVATE_EMAIL }}"
-
- steps:
- - name: 检出代码
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
-
- - name: 获取提交者用户名
- id: get_git_username
- run: |
- git_username=$(git log -1 --pretty=format:'%cn')
- echo "git_username=$git_username" >> $GITHUB_ENV
- echo "最新的提交者用户名是: $git_username"
-
- - name: Escape backticks in commit msg
- env:
- COMMIT_MSG: ${{ github.event.head_commit.message }}
- run: |
- echo "ESCAPED_MSG<
人民的勤务员(UTC+8) $current_date Fix BUG"
- echo "提交信息: $commit_message"
- git commit -m "FIX" || echo "没有需要提交的更改"
- git push
diff --git a/.github/workflows/update-shields.yml.off b/.github/workflows/update-shields.yml.off
deleted file mode 100644
index 2668cde68..000000000
--- a/.github/workflows/update-shields.yml.off
+++ /dev/null
@@ -1,53 +0,0 @@
-name: update-shields
-
-on:
-# schedule:
-# - cron: '0 0 * * *' # 每天午夜运行一次,也可以调整为其他频率
-
- workflow_dispatch: # 允许手动触发工作流
-
-jobs:
- update-shields:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v3
- with:
- token: ${{ secrets.MY_GITHUB_TOKEN }} # 使用你创建的 Token
-
- - name: 设置 Python 环境
- uses: actions/setup-python@v2
- with:
- python-version: '3.x'
-
-
-
- - name: 获取当前分支
- id: get_branch
- run: |
- echo "当前分支: $(git rev-parse --abbrev-ref HEAD)"
- echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
-
- - name: 拉取最新更改
- run: |
- git pull origin ${{ env.branch }} # 拉取最新的远程更改
-
-
-
- - name: 运行更新
- run: |
- python pythonscr/update-shields/main.py
- continue-on-error: true # 让这个步骤即使出错也不会终止整个工作流
-
- - name: 提交和推送更改
- run: |
- # 配置 Git 用户
- git config --global user.name 'github-actions[bot]'
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
-
- # 添加更改
- git add .
- git commit -m '刷新徽章→pythonscr/update-shields/SHIELDS.md → Script details/**/*.md' || echo "没有需要提交的更改"
- git push origin ${{ env.branch }}
- env:
- MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # 传递 Token 到 Git 环境变量中
diff --git a/.github/workflows/update-translate-repo-md.yml b/.github/workflows/update-translate-repo-md.yml
deleted file mode 100644
index 236867f57..000000000
--- a/.github/workflows/update-translate-repo-md.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: translate-repo-md
-
-on:
- workflow_run:
- workflows: ["update-docs-readme-list"] # 更新了仓库自述文件,触发翻译
- types:
- - completed # 在 A 流程完成后触发
- workflow_dispatch:
-
-jobs:
- translate-readme:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
-
- - name: 读取并翻译 README
- run: |
- python pythonscr/translate-force-chinese-to-lang/main.py
-
- - name: 提交和推送更改
- run: |
- gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
- git config --global user.name 'qinwuyuan-sync-bot'
- git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
- git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- git pull
- git add .
- git commit -S -m "仓库[README.md]更新" \
- -m "GoogleTranslate→[docs/README.md]↓" \
- -m "[docs/README_xx.md {vi,ko,en,jp,zh-TW}]" \
- || echo "没有需要提交的更改"
- git push
diff --git a/.github/workflows/update-translate-script-md.yml b/.github/workflows/update-translate-script-md.yml
deleted file mode 100644
index acf4283b7..000000000
--- a/.github/workflows/update-translate-script-md.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: translate-script-readme
-##最后触发更新整个所有脚本的其他语言文档.
-on:
- workflow_run:
- workflows: ["merge-change-history"]
- types:
- - completed
- workflow_dispatch:
-
-jobs:
- translate-script-readme:
- runs-on: ubuntu-latest
- steps:
- - name: 检出代码
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
-
- - name: 读取并翻译 README
- run: |
- python pythonscr/translate-chinese-to-filelang/main.py
-
- - name: 提交和推送更改
- run: |
- gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
- git config --global user.name 'qinwuyuan-sync-bot'
- git config --global user.email "${{ secrets.GPG_PRIVATE_EMAIL }}"
- git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
- git pull
- git add .
- git commit -S -m "脚本[README{_xx}.md]翻译" \
- -m "GoogleTranslate→[Script details/**/README{_xx}.md]↓" \
- -m "[Script details/**/README{_xx}.md]" \
- || echo "没有更改"
- git push
diff --git a/.gitignore b/.gitignore
index c6c1fa311..fe8d2e63d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,13 +1,10 @@
-
-
-script_bak
-.vscode
+qwy_*
launch.json
-folder_tree.html
-pwshscr
-1.user.js
-CHANGE.TXT
-CHANGE.HTML
-GitHub commit
-1.txt
-read.md
\ No newline at end of file
+*.txt
+node_modules/
+.eslintcache
+.messages
+.codewait
+__pycache__/
+.history/
+changelog.config.js
\ No newline at end of file
diff --git a/.husky/pre-commit b/.husky/pre-commit
new file mode 100644
index 000000000..79ce79571
--- /dev/null
+++ b/.husky/pre-commit
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+RED="\033[1;31m" ; NC="\033[0m"
+
+if npm ls -g eslint &> /dev/null || npm ls eslint &> /dev/null ; then
+ npm run lint
+else
+ PROJECT_ROOT=$(
+ cd "$(dirname "$0")/.." && # 导航到根目录
+ [ "$OSTYPE" == "msys" ] && pwd -W || pwd # 获取绝对路径
+ )
+ echo -e "\n${RED}警告:未安装 eslint${NC}"
+ echo -e " 要添加缺少的依赖,请在"
+ echo -e " $PROJECT_ROOT 目录下运行 'npm install'\n"
+fi
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 000000000..1b19cda82
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,2 @@
+*.js
+*.mjs
\ No newline at end of file
diff --git a/.prettierrc b/.prettierrc
index 14225fab9..aa02c5ba4 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -1,4 +1,26 @@
{
- "tabWidth": 4,
- "useTabs": false
+ "tabWidth": 4,
+ "useTabs": false,
+ "overrides": [
+ {
+ "files": "*.json",
+ "options": {
+ "tabWidth": 2,
+ "useTabs": false
+ }
+ },
+ {
+ "files": "*.yml",
+ "options": {
+ "tabWidth": 2,
+ "useTabs": false
+ }
+ },
+ {
+ "files": "*.js",
+ "options": {
+ "singleQuote": true
+ }
+ }
+ ]
}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 000000000..bf6a94595
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,18 @@
+{
+ "[json]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
+ },
+ "[markdown]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
+ "editor.wordWrap": "off"
+ },
+ "[javascript]": {
+ "editor.defaultFormatter": "vscode.typescript-language-features"
+ },
+ "[jsonc]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
+ },
+ "[python]": {
+ "editor.wordWrap": "off"
+ }
+}
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 000000000..203b6dd99
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,65 @@
+
+
+
+
简体中文 |
- English
+ English
diff --git a/Script details/chatgpt-code-styling/README.md b/Script details/chatgpt-code-styling/README.md
deleted file mode 100644
index 7b0a45a90..000000000
--- a/Script details/chatgpt-code-styling/README.md
+++ /dev/null
@@ -1,151 +0,0 @@
-
-
-
-
-
-
-
-
-> ### 🔍你可能在找ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-
-ChatGPT 聊天复制代码按钮
-
-
-
更新记录
🛠️ ChatGPT 聊天复制代码按钮 更新日志
-📅 2024-09-23 08:58:07- Ver 1.2.0.0
-querySelector('div.flex.items-center.text-token-text-secondary')
-修复: •导出代码检测代码类型出错的问题var languageDiv = elem.parentElement.parentElement.querySelector('div.flex.items-center.text-token-text-secondary') →var languageDiv = elem.querySelector('div.flex.items-center.text-token-text-secondary')
-📅 2024-09-22 10:44:07- Ver 1.1.0.0
-
-📅 2024-09-22 07:06:07- Ver 1.0.0.0
-
-
-
-> ### 🔍你可能在找ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-
-
-
-
-
-## 使用帮助
-
-推荐浏览器和脚本管理器:
-
-- **Greasemonkey + Waterfox**
-- **Tampermonkey/Violentmonkey + Firefox**
-- **Tampermonkey/Violentmonkey + Chrome**
-- **Userscripts + ios Safari**
-- **Violentmonkey/KiWiBrowser + Android**
-
-**如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-
-ChatGPT Chat copy code button
-
-
-
Update record
🛠️ ChatGPT Chat copy code button Change log
-📅 2024-09-23 08:58:07- Ver 1.2.0.0
-querySelector('div.flex.items-center.text-token-text-secondary')
-repair: •Problem with export code detection code type errorvar languageDiv = elem.parentElement.parentElement.querySelector('div.flex.items-center.text-token-text-secondary') →var languageDiv = elem.querySelector('div.flex.items-center.text-token-text-secondary')
-📅 2024-09-22 10:44:07- Ver 1.1.0.0
-
-📅 2024-09-22 07:06:07- Ver 1.0.0.0
-
-
-
-> ### 🔍you may be looking forChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-
-
-
-
-
-## Help
-
-Recommended browsers and script managers:
-
-- **Greasemonkey + Waterfox**
-- **Tampermonkey/Violentmonkey + Firefox**
-- **Tampermonkey/Violentmonkey + Chrome**
-- **Userscripts + ios Safari**
-- **Violentmonkey/KiWiBrowser + Android**
-
-**If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-ChatGPT 字符计数器
-
-
-
更新记录
🛠️ ChatGPT 字符计数器 更新日志
-📅 2024/9/1 09:37 - Ver 1.3.1
-
-
-
-## 描述
-
-ChatGPT Character Counter Limit (CCCL) 是一个用户脚本,旨在为 ChatGPT 的输入框添加一个字符计数器,限制为 32732 个字符。这个脚本可以帮助用户在输入时实时查看已输入字符的数量,并在超出限制时给出视觉提示。.
-
-
-
-## 功能
-
-- 在 ChatGPT 输入框下方添加一个字符计数器。
-- 实时更新计数器,显示已输入字符数和字符限制。
-- 当字符数超出限制时,计数器文本颜色变为红色,提示用户。
-- 当字符数接近限制时,计数器文本颜色变为绿色,显示警告。
-
-
-
-
-> ### 🔍你可能在找ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-
-
-
-## Thanks
-修改自用户 [Emree.el](https://greasyfork.org/zh-CN/users/1297357)的脚本 [ChatGPT Character Counter Limit (CCCL)](https://greasyfork.org/scripts/505802)
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-ChatGPT character counter
-
-
-
Update record
🛠️ ChatGPT character counter Change log
-📅 2024/9/1 09:37 - Ver 1.3.1
-
-
-
-# ChatGPT Character Counter Limit (CCCL)
-
-
-
-## Description
-
-The ChatGPT Character Counter Limit (CCCL) is a user script designed to add a character counter to the ChatGPT input box, limiting the count to 32,732 characters. This script helps users view the number of characters entered in real-time and provides visual prompts when the limit is exceeded.
-
-
-
-## Features
-
-- Adds a character counter below the ChatGPT input box.
-- Updates the counter in real-time, displaying the number of characters entered and the character limit.
-- Changes the counter text color to red when the character count exceeds the limit, providing a warning.
-- Changes the counter text color to green when the character count approaches the limit, displaying a caution.
-
-
-
-## Thanks
-Modified from the script [ChatGPT Character Counter Limit (CCCL)](https://greasyfork.org/scripts/505802) by user [Emree.el](https://greasyfork.org/zh-CN/users/1297357)
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT chatCopy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“Copy code”button
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): add onecharactersCounter to input box,limited to 32732 characters。(ChatGPT The limit is 32732 characters。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT chatCopy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“Copy code”button
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): add onecharactersCounter to input box,limited to 32732 characters。(ChatGPT The limit is 32732 characters。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopylimit**](https://greasyfork.org/scripts/505207): fuck you CSDN LoginCopy,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolderdownload**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub folder。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouseUser’s other warehouses 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,Quick jump within the warehouse.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): EnhancegreasyforkNavigation bar,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-ChatGPT 折叠自己消息和最大宽度
-
-
-
更新记录
🛠️ ChatGPT 折叠自己消息和最大宽度 更新日志
-📅 2024/9/28 09:32 - Ver 0.3.0.0
-
-📅 2024/9/15 11:13 - Ver 0.2.0.0
-
-
-
-# ChatGPT Chat Fold Script & MAXWidth
-
-
-
-## 简介
-`ChatGPT Chat Fold Script & MAXWidth` 是一个用于在 ChatGPT 中折叠较长的“你”发送的消息并设置最大宽度的脚本。这可以帮助你更好地管理长消息,并改善界面布局。
-
-
-
-## 功能
-- **折叠长消息**:自动折叠由你发送的长消息,节省屏幕空间。
-- **设置最大宽度**:允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-## 使用方法
-- 默认情况下,脚本会自动折叠长消息。
-- 你可以点击消息旁边的 “折叠” 按钮来手动折叠或展开消息。
-- 在设置中调整聊天窗口的最大宽度。
-
-
-
-## 更新日志
-- **v0.1**:初始版本,添加折叠功能和最大宽度设置。
-
-
-
-
-> ### 🔍你可能在找ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-
-
-
-## 贡献
-如果你有任何建议或发现了问题,请通过 GitHub 或者GreasyFork 提交问题。
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-ChatGPT Collapse self message and max width
-
-
-
Update record
🛠️ ChatGPT Collapse self message and max width Change log
-📅 2024/9/28 09:32 - Ver 0.3.0.0
-
-📅 2024/9/15 11:13 - Ver 0.2.0.0
-
-
-
-# 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
-- By default,Script automatically collapses long messages。
-- 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
-If you have any suggestions or find a problem,Please pass GitHub orGreasyFork Submit a question。
-
-
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa
-
-
-
Cập nhật bản ghi
🛠️ ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa Nhật ký thay đổi
-📅 2024/9/28 09:32 - Ver 0.3.0.0
-
-📅 2024/9/15 11:13 - Ver 0.2.0.0
-
-
-
-# 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
-- Theo mặc định,Tập lệnh tự động thu gọn các tin nhắn dài。
-- 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
-Nếu bạn có bất kỳ đề xuất hoặc tìm thấy một vấn đề,Xin vui lòng vượt qua GitHub hoặcGreasyFork Gửi câu hỏi。
-
-
-
-
-
-
-## làmsử dụnggiúp đỡgiúp đỡ
-
-
-## Giúp đỡ
-
-
-
-
-> ### 🔍có thể bạn đang tìm kiếmChatGPTTập lệnh liên quan
-> - [**ChatGPTKích thước phông chữ mã giảm**](https://greasyfork.org/scripts/505209): cho phép ChatGPT Kích thước phông chữ mã trở nên nhỏ hơn
-> - [**ChatGPT 聊天Sao chép mãcái nút**](https://greasyfork.org/scripts/509598): hiện hữu chatgpt.com Thêm hình động ở góc dưới bên phải của khối mã phía trên“复制代码”按钮
-> - [**ChatGPT bộ đếm ký tự**](https://greasyfork.org/scripts/506166): 添加一nhân vật计数器到输入框,giới hạn ở 32732 nhân vật。(ChatGPT Giới hạn là 32732 个字符。)
-> - [**ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa**](https://greasyfork.org/scripts/504901): 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。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。
-
-
-
-
-
-
-
-## Giúp đỡ
-
- Trình duyệt và trình quản lý tập lệnh được đề xuất:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **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/README.md)Xem giảng dạy đồ họa!**
-
-
-
-### Xem tất cả các tập lệnh xuất bản
-
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm ChatGPTTập lệnh liên quan
-> - [**ChatGPTKích thước phông chữ mã giảm**](https://greasyfork.org/scripts/505209): cho phép ChatGPT Kích thước phông chữ mã trở nên nhỏ hơn
-> - [**ChatGPT 聊天Sao chép mãcái nút**](https://greasyfork.org/scripts/509598): hiện hữu chatgpt.com Thêm hình động ở góc dưới bên phải của khối mã phía trên“复制代码”按钮
-> - [**ChatGPT bộ đếm ký tự**](https://greasyfork.org/scripts/506166): 添加一nhân vật计数器到输入框,giới hạn ở 32732 nhân vật。(ChatGPT Giới hạn là 32732 个字符。)
-> - [**ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa**](https://greasyfork.org/scripts/504901): 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。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ó thể bạn đang tìm kiếm Các tập lệnh liên quan đến web
-> - [**Trình quản lý ủy quyền phiên bản clip viết trang web**](https://greasyfork.org/scripts/497403): Cấm các trang web ị trên các phiên bản đã chỉnh sửa,màu xanh lá cây để phát hành,lệnh cấm đỏ,hướng dẫn tạm thời màu cam
-> - [**Thang máyCSDNĐăng nhậpSao chép限制**](https://greasyfork.org/scripts/505207): chết tiệt bạn CSDN 登录复制,Sao chép nội dung hộp mã mà không cần đăng nhập
-> - [**Làm đẹp các biểu mẫu web với độ dốc tuyệt đẹp**](https://greasyfork.org/scripts/507036): Tự động áp dụng làm đẹp độ dốc màu cho tất cả các cột của bảng trên trang web.
-> - [**Đánh dấu từ khóa trên các trang web+(gợi ý)**](https://greasyfork.org/scripts/498906): Đánh dấu văn bản trên các trang web
-> - [**Làm nổi bật văn bản web_phiên bản nhỏ**](https://greasyfork.org/scripts/498905): Làm nổi bật từ khóa tùy chỉnh trên các trang web bao gồm nội dung được tải động khi cuộn
-> - [**Xem trước cửa sổ nhỏ**](https://greasyfork.org/scripts/504880): Mở liên kết trong cửa sổ bật lên khi kéo liên kết,và cung cấp bản xem trước trước khi mở,sử dụng Edge công nghệ đọc trước。Đồng thời, thêm hiệu ứng acrylic phía sau cửa sổ nhỏ khi nó được mở.。
-> - [**Xóa gạch chân liên kết**](https://greasyfork.org/scripts/498625): Xóa gạch chân khỏi liên kết web
-> - [**Nút cuộn nhỏ lên xuống**](https://greasyfork.org/scripts/497251): Thêm nút cuộn lên xuống ở bên phải trang
-> - [**Nút trên và dưới một chạm**](https://greasyfork.org/scripts/500255): Được sửa đổi từGreasyforktập lệnh người dùng Thêm nút trên và dưới vào trang web,Tạo điều kiện di chuyển nhanh lên đầu hoặc cuối trang dài。 Đã thêm thay đổi màu nút khi cuộn xuống,3Tự động dừng nếu không cuộn trong vài giây
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm GitHubTập lệnh liên quan
-> - [**GitHubGửi hiển thị thông tinHTML**](https://greasyfork.org/scripts/505830): Kịch bản này sẽ GitHub Thông tin nộp hồ sơ trên HTML xem,để xem chi tiết gửi rõ ràng hơn。Nó sẽ tự động gửi danh sách thông tin、Tiêu đề cam kết và thông tin cam kết mới nhất được chuyển đổi thành HTML Định dạng,Cung cấp hiệu ứng hình ảnh và trải nghiệm người dùng tốt hơn。
-> - [**GitHub Trình làm đẹp danh sách tập tin**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier là một tập lệnh người dùng,được sử dụng để tăng cường GitHub Hiển thị tác dụng của file trong kho。Nó có thể thêm màu sắc vào tập tin và thư mục,và thay thế các biểu tượng loại tệp bằng hình ảnh nhỏ,Làm cho cơ sở mã dễ dàng duyệt và quản lý hơn。
-> - [**Github Danh sách ngôn ngữ mã hiển thị tất cả**](https://greasyfork.org/scripts/509889): Mở rộng Github Danh sách ngôn ngữ trên kho lưu trữ,Hiển thị từng ngôn ngữ,Thay vì giấu những phần nhỏ trong “khác” Xuống
-> - [**GitHub Tự động xác nhận ủy quyền thiết bị**](https://greasyfork.org/scripts/508956): hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và tự động xác nhận.。
-> - [**GitHubthư mục下载**](https://greasyfork.org/scripts/505496): Thêm nút tải xuống,Cho phép dễ dàng tải xuống cụ thể GitHub 文件夹。
-> - [**GitHubTải xuống các tập tin đơn lẻ và sao chép các tập tinURL**](https://greasyfork.org/scripts/505501): Nút thêm vào cuối mỗi dòng file,để sao chép tập tin gốc URL và tải về các tập tin
-> - [**🤠 Github Tăng cường trợ lý Kích thước hiển thị kho Cảnh báo phát triển không hoạt động Nhảy nhanh vào kho用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): hiện hữuGithubHiển thị kích thước kho khi xem và tìm kiếm kho ,Cảnh báo phát triển không hoạt động,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Thay đổi cách sắp xếp file danh sách kho theo thứ tự ngày giảm dần,Thuận tiện xem các tập tin cập nhật mới nhất。
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm GoogleTập lệnh liên quan
-> - [**Google Tìm kiếm nâng cao**](https://greasyfork.org/scripts/502652): Đây là một cho Google Thêm tập lệnh người dùng cho biểu mẫu tìm kiếm nâng cao。Nó thêm một biểu mẫu tìm kiếm nâng cao có thể ẩn ở đầu trang,Giúp bạn tìm kiếm thông tin chính xác hơn。
-> - [**Google Tìm kiếm và chặn các trang web cụ thể**](https://greasyfork.org/scripts/500262): Chặn các trang web cụ thể khỏi kết quả của công cụ tìm kiếm,Giúp người dùng lọc ra các kết quả tìm kiếm không mong muốn。 Trang web chặn đầu vào tùy chỉnh。Định dạng-zhihu -baidu Được sử dụng để chặn nội dung tìm kiếm của Google
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm GreasyForkTập lệnh liên quan
-> - [**GreasyForkthích hợp để nâng cao**](https://greasyfork.org/scripts/497317): Trang chi tiết tập lệnh được thêm vào. Nó phù hợp để thêm các liên kết. Nhấp để mở trang web.,Sao chép trang web,tìm kiếm lốp xe
-> - [**GrreasyFork Trực quan hóa dữ liệu tập lệnh do người dùng xuất bản**](https://greasyfork.org/scripts/508968): sử dụngChart.jsLấy và hiển thị dữ liệu tập lệnh người dùng,Và tạo biểu đồ trên trang chủ cá nhân của người dùng để hiển thị trạng thái cài đặt chi tiết bên dưới.
-> - [**GreaysFork Nâng cao WebHookĐồng bộ hóa cài đặt**](https://greasyfork.org/scripts/506717): Tập lệnh này có thể giúp bạn nhập nhanh thông tin đồng bộ hóa tập lệnh,Và thêm mã ngôn ngữ cho nhiều quốc gia theo đợt,Thay vì nhấp vào từng hộp lựa chọn và đi tới URL tương ứng。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Được sử dụng theo mặc định trong diễn đàn Markdown Định dạng,Thêm liên kết trợ giúp định dạng và Markdown Giới thiệu thanh công cụ
-> - [**GreasyFork Hiển thị xếp hạng kịch bản**](https://greasyfork.org/scripts/501119): Thêm điểm đánh giá vào danh sách tập lệnh
-> - [**GreasyFork Tìm kiếm nâng cao**](https://greasyfork.org/scripts/505215): Tìm kiếm bằng Google GreasyFork Và SleazyFork chữ viết trên
-> - [**GreasyFork Thanh điều hướngNâng cao**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Thêm danh sách người dùng,Bảng điều khiển người dùng, v.v.
-> - [**GreasyforkThợ làm keo**](https://greasyfork.org/scripts/497346): Nâng caogreasyfork,Sao chép mã,Tải xuống tập lệnh,Thời gian chính xác đến từng giây,Dọn dẹp trang chủ,Thảo luận về báo cáo bằng một cú nhấp chuột,Đã thêm mã nhảy danh sách tập lệnh tải xuống Làm đẹp mã xem và hiển thị các tệp tham chiếu mã,hiển thị biểu tượng tập lệnh,Chuyển đến tập lệnh dành cho người lớn và các thao tác khác
-> - [**Greasyfork Trợ lý thông báo**](https://greasyfork.org/scripts/506345): Khi có câu trả lời mới cho tập lệnh của bạn hoặc cho cuộc thảo luận mà bạn đang tham gia,Kịch bản sẽ hiển thị nội dung thảo luận mới nhất trong một cửa sổ phương thức trên trang web。
-> - [**Script FinderCông cụ tìm tập lệnh Grease Monkey**](https://greasyfork.org/scripts/498904): 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ý mô tả người dùng trên bất kỳ trang web nào
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm kịch bản người lớn
-> - [**MiSSAVĐăng nhập tự động**](https://greasyfork.org/scripts/505325): Phát hiện MisssAV tình trạng,và tự động đăng nhập khi chưa đăng nhập
-> - [**MissAVNgười quản lý bộ sưu tập**](https://greasyfork.org/scripts/497682): missSao lưu danh sách phát,Hỗ trợ tải hình ảnh và lưu thông tin video.Xuất trang web địa phương Hỗ trợ xuất khẩu sangwebdav
-> - [**TissAVĐăng nhập tự động**](https://greasyfork.org/scripts/506528): Phát hiện TissAV tình trạng,và tự động đăng nhập khi chưa đăng nhập
-> - [**JableTVĐăng nhập tự động**](https://greasyfork.org/scripts/506730): Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đăng nhập
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm dịch tự động
-> - [**đầu cuối ngoại ngữ**](https://greasyfork.org/scripts/504890): Nhận biết các ký tự không phải tiếng Trung,Nếu chiều dài lớn hơn 5 Và văn bản dịch không chứa tiếng Trung Quốc,sau đó thay thế bằng tiếng Trung,Cần phải có thể truy cập đượcgooglemạng
-> - [**dịch trang web——Tự động dịch sang tiếng Trung**](https://greasyfork.org/scripts/505208): Cung cấp góc dưới bên phải của mỗi trang web không phải tiếng Trung Quốc(Có thể điều chỉnh ở góc dưới bên trái)thêm một google Biểu tượng dịch,Phiên bản này là phiên bản dịch tiếng Trung,Chỉ dịch tiếng nước ngoài sang tiếng Trung,Thêm bản dịch tự động
-
-
-
-
-
-
-
-ChatGPT 折疊自己訊息和最大寬度
-
-
-
更新記錄
🛠️ ChatGPT 折疊自己訊息和最大寬度 更新日誌
-📅 2024/9/28 09:32 - Ver 0.3.0.0
-
-📅 2024/9/15 11:13 - Ver 0.2.0.0
-
-
-
-# ChatGPT Chat Fold Script & MAXWidth
-
-
-
-## 簡介
-`ChatGPT Chat Fold Script & MAXWidth` 是一個用於在 ChatGPT 中折疊較長的“你”發送的訊息並設定最大寬度的腳本。這可以幫助你更好地管理長訊息,並改善介面佈局。
-
-
-
-## 功能
-- **折疊長訊息**:自動折疊由你發送的長訊息,節省螢幕空間。
-- **設定最大寬度**:允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。
-
-
-
-## 使用方法
-- 預設情況下,腳本會自動折疊長訊息。
-- 你可以點擊訊息旁邊的 “折疊” 按钮来手动折疊或展开消息。
-- 在設定中調整聊天視窗的最大寬度。
-
-
-
-## 更新日誌
-- **v0.1**:初始版本,添加折疊功能和最大寬度設置。
-
-
-
-## 貢獻
-如果你有任何建議或發現了問題,請透過 GitHub 或者GreasyFork 提交問題。
-
-
-
-
-
-
-
-
-
-> ### 🔍你可能在找ChatGPT相關腳本
-> - [**ChatGPT程式碼字體縮小**](https://greasyfork.org/scripts/505209): 讓 ChatGPT 程式碼字體變小
-> - [**ChatGPT 聊天複製程式碼按鈕**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代碼區塊的右下角添加一個帶有動畫的“复制代码”按钮
-> - [**ChatGPT 字元計數器**](https://greasyfork.org/scripts/506166): 添加一個字元计数器到输入框,限制為 32732 個字元。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折疊自己訊息和最大寬度**](https://greasyfork.org/scripts/504901): 自動折疊由你發送的長訊息,節省螢幕空間。允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。
-
-
-
-
-
-
-
-## 使用幫助
-
- 推薦瀏覽器和腳本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多關於如何安裝使用者腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看圖文教學!**
-
-
-
-
-
-
-
-
-
-### 查看所有發布腳本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相關腳本
-> - [**ChatGPT程式碼字體縮小**](https://greasyfork.org/scripts/505209): 讓 ChatGPT 程式碼字體變小
-> - [**ChatGPT 聊天複製程式碼按鈕**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代碼區塊的右下角添加一個帶有動畫的“复制代码”按钮
-> - [**ChatGPT 字元計數器**](https://greasyfork.org/scripts/506166): 添加一個字元计数器到输入框,限制為 32732 個字元。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折疊自己訊息和最大寬度**](https://greasyfork.org/scripts/504901): 自動折疊由你發送的長訊息,節省螢幕空間。允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。
-
-
-
-> ### 🔍你可能在找 網頁相關腳本
-> - [**網頁寫入剪輯版授權管理員**](https://greasyfork.org/scripts/497403): 禁止網頁向剪輯版拉屎,綠色為放行,紅色禁止,橙色臨時方向
-> - [**解除CSDN登入複製限制**](https://greasyfork.org/scripts/505207): 去你媽的 CSDN 登录复制,無需登入即可複製程式碼框內容
-> - [**絢麗漸層美化網頁表格**](https://greasyfork.org/scripts/507036): 自動為網頁上的表格所有欄位套用顏色漸層美化.
-> - [**網頁高亮關鍵字+(推薦)**](https://greasyfork.org/scripts/498906): 對網頁上的文字進行高亮顯示
-> - [**高亮網頁文本_迷你版**](https://greasyfork.org/scripts/498905): 在網頁上自訂關鍵字突出顯示包括滾動時動態載入的內容
-> - [**小視窗預覽**](https://greasyfork.org/scripts/504880): 拖曳連結時在彈出視窗中開啟鏈接,並在打開前提供預覽,使用 Edge 的預讀技術。同時在小窗口打開時在背後添加壓克力效果。
-> - [**去除連結下劃線**](https://greasyfork.org/scripts/498625): 去除網頁連結的下劃線
-> - [**上下滾動小按鈕**](https://greasyfork.org/scripts/497251): 頁面右側新增上下滾動按鈕
-> - [**一鍵置頂和置底按鈕**](https://greasyfork.org/scripts/500255): 修改自Greasyfork使用者腳本 為網頁新增置頂和置底按鈕,方便在長頁面中快速移動到頂部或底部。 增加向下滾動時按鈕變色,3秒內無滾動自動停止
-
-
-
-> ### 🔍你可能在找 GitHub相關腳本
-> - [**GitHub提交資訊顯示HTML**](https://greasyfork.org/scripts/505830): 該腳本將 GitHub 上的提交資訊轉化為 HTML 視圖,以更清晰地查看提交詳情。它會自動將提交資訊列表、提交頭部和最新提交資訊轉化為 HTML 格式,提供更佳的視覺效果與使用者體驗。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件清單美化器是一個使用者腳本,用於增強 GitHub 倉庫中的文件顯示效果。它可以為文件和資料夾添加顏色,並將文件類型圖示替換為小圖像,使得程式碼庫更加易於瀏覽和管理。
-> - [**Github 代碼語言列表顯示全部**](https://greasyfork.org/scripts/509889): 擴充 Github 儲存庫上的語言列表,顯示每種語言,而不是將小部分隱藏在 “其他” 下
-> - [**GitHub 自動確認設備授權**](https://greasyfork.org/scripts/508956): 在GitHub授權頁面自動輸入授權碼與自動確認。
-> - [**GitHub資料夾下载**](https://greasyfork.org/scripts/505496): 新增一個下載按鈕,允許輕鬆下載特定的 GitHub 文件夹。
-> - [**GitHub下載單一文件和複製文件URL**](https://greasyfork.org/scripts/505501): 在每個文件行的末尾新增按鈕,以複製原始文件 URL 和下載文件
-> - [**🤠 Github 增強助手 倉庫顯示大小 不活躍開發警告 倉庫內快捷跳轉用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看倉庫和搜尋倉庫時顯示倉庫大小 ,不活躍開發警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 倉庫列表文件排序方式改為日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相關腳本
-> - [**Google 進階搜尋**](https://greasyfork.org/scripts/502652): 這是一個為 Google 新增進階搜尋表單的使用者腳本。它能在頁面頂部添加一個可隱藏的高級搜尋表單,使您能夠更精確地搜尋訊息。
-> - [**Google 搜尋屏蔽指定站點**](https://greasyfork.org/scripts/500262): 在搜尋引擎結果中封鎖特定的站點,幫助用戶過濾掉不需要的搜尋結果。 自訂輸入屏蔽站點。格式-zhihu -baidu 用於封鎖谷歌搜尋內容
-
-
-
-> ### 🔍你可能在找 GreasyFork相關腳本
-> - [**GreasyFork適用於增強**](https://greasyfork.org/scripts/497317): 腳本詳情頁增加適用於連結增加點擊開啟網頁,複製網頁,輪胎搜尋
-> - [**GrreasyFork 用戶發布的腳本資料視覺化**](https://greasyfork.org/scripts/508968): 使用Chart.js獲取和可視化獲取用戶腳本數據,並在使用者個人主頁產生圖表在下方顯示詳細安裝狀況
-> - [**GreaysFork 增強 WebHook同步設定**](https://greasyfork.org/scripts/506717): 這個腳本可以幫助你快速輸入腳本同步訊息,並批量增加多個國家的語言代碼,而不用一個個地點擊選擇框再去對應的網址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在論壇預設使用 Markdown 格式,添加格式幫助連結及 Markdown 工具列紹
-> - [**GreasyFork 顯示腳本評分**](https://greasyfork.org/scripts/501119): 腳本清單新增評價分數
-> - [**GreasyFork 進階搜尋**](https://greasyfork.org/scripts/505215): 使用谷歌搜尋 GreasyFork 和 SleazyFork 上體文字
-> - [**GreasyFork 導覽列增強**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用戶列表,使用者控制台等
-> - [**Greasyfork膠水工匠**](https://greasyfork.org/scripts/497346): 增強greasyfork,複製程式碼,腳本下載,精確時間到秒,主頁清理,討論一鍵舉報,腳本清單跳轉代碼添加下載 美化查看程式碼顯示程式碼引用文件,顯示腳本圖示,跳轉成人腳本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 當你的腳本或你參與的討論有新回應時,腳本會在網頁上以模態視窗顯示最新的討論內容。
-> - [**Script Finder油猴腳本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一個使用者腳本(userscript),它可以幫助你在任何網站上尋找和管理使用者腳本
-
-
-
-> ### 🔍你可能在找 成人劇本
-> - [**MiSSAV自動登入**](https://greasyfork.org/scripts/505325): 偵測 MisssAV 狀態,並且在未登入時自動登入
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss單張備份,支援下載圖片保存影片訊息.導出本地網頁 支援導出到webdav
-> - [**TissAV自動登入**](https://greasyfork.org/scripts/506528): 偵測 TissAV 狀態,並且在未登入時自動登入
-> - [**JableTV自動登入**](https://greasyfork.org/scripts/506730): 偵測 JableTV 狀態,並且在未登入時自動登入
-
-
-
-> ### 🔍你可能在找 自動翻譯
-> - [**外語終結者**](https://greasyfork.org/scripts/504890): 識別非中文字符,如果長度大於 5 且翻譯文中不含中文,則替換為中文,需要可訪問google的網路
-> - [**網頁翻譯——自動翻譯為中文**](https://greasyfork.org/scripts/505208): 給每個非中文的網頁右下角(可以調整到左下角)添加一個 google 翻譯圖示,此版本為中文翻譯版本,只把外文翻譯為中文,新增自動翻譯
-
-
-
-
-
-
-
-网页写入剪辑版授权管理器
-
-
-
更新记录
🛠️ 网页写入剪辑版授权管理器 更新日志
-📅 2024-09-28 08:21- Ver 1.2.3.1
-pc 不为 red 时且来源于为 window.navigator.clipboard.writeText ,需要手动复制到剪辑版.@90
-修复: •逻辑错误 ↠ 按下快捷键复制后只有指示器为 red 时候重置,为 green 不重置@161
-📅 2024-09-27 11:55- Ver 1.2.3.0
-clipboard.writeText事件
-
-
-> ### 🔍你可能在找网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-
-
-
-
-## 使用帮助
-
-推荐浏览器和脚本管理器:
-
-- **Greasemonkey + Waterfox**
-- **Tampermonkey/Violentmonkey + Firefox**
-- **Tampermonkey/Violentmonkey + Chrome**
-- **Userscripts + ios Safari**
-- **Violentmonkey/KiWiBrowser + Android**
-
-**如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-Web page writing clip version authorization manager
-
-
-
Update record
🛠️ Web page writing clip version authorization manager Change log
-📅 2024-09-28 08:21- Ver 1.2.3.1
-pc Not for red Sometimes it comes from window.navigator.clipboard.writeText ,Need to manually copy to the edited version.@90
-repair: •logic error ↠ After pressing the shortcut key to copy, there is only an indicatorfor red time to reset,for green No reset@161
-📅 2024-09-27 11:55- Ver 1.2.3.0
-clipboard.writeTextevent
-
-
-> ### 🔍You may be looking for web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-
-
-
-
-## Help
-
-Recommended browsers and script managers:
-
-- **Greasemonkey + Waterfox**
-- **Tampermonkey/Violentmonkey + Firefox**
-- **Tampermonkey/Violentmonkey + Chrome**
-- **Userscripts + ios Safari**
-- **Violentmonkey/KiWiBrowser + Android**
-
-**If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-绚丽渐变美化网页表格
-
-
-
更新记录
🛠️ 绚丽渐变美化网页表格 更新日志
-📅 2024/9/6 05:41 - Ver 1.0.0.0
-
-
-
-# 绚丽渐变美化网页表格脚本
-
-该脚本会自动为网页中的所有表格应用颜色渐变,无需用户手动点击或操作,基于表格列中的数值大小生成不同的背景色,从而增强表格的视觉效果。
-
-#### 功能特点
-1. **自动应用渐变色**:脚本会自动扫描页面中的表格,为每一列中的数据应用渐变色,无需用户手动触发。
-2. **数据驱动的渐变色**:根据每一列中数值的最小值和最大值,生成颜色渐变效果,数值越大或越小,背景颜色变化越明显。
-3. **持续检测**:脚本每秒检查一次页面,如果有新表格加载,自动为其应用颜色渐变。
-4. **渐变色配置**:渐变颜色基于HSL色彩模型,脚本中可调整色调范围(`HUE_RANGE`)、饱和度(`SATURATION`)、亮度(`LIGHTNESS`)等参数。
-
-#### 主要参数
-- **HUE_RANGE**: 设置渐变色的色调范围,默认值为120度,表示绿色到红色的渐变。
-- **SATURATION**: 控制颜色的饱和度,默认为80%,提供了明亮的颜色效果。
-- **LIGHTNESS**: 控制颜色的亮度,默认值为88%,使渐变色柔和且不刺眼。
-
-#### 核心逻辑
-1. **extractFirstFloat**: 从单元格文本中提取第一个浮点数,忽略非数字内容,确保只使用数值部分生成颜色渐变。
-2. **applyGradient**: 为每个表格列自动计算最大和最小值,然后根据单元列的数值,生成相应的渐变背景色。
-3. **initializeTables**: 定期检查页面中的表格,并自动为未初始化的表格应用渐变色。
-
-#### 使用场景
-该脚本适用于任何包含网页表格场景,能够自动为网页表格应用颜色渐变,帮助用户快速识别数据的差异,提升表格的可视化效果。
-
-
-
-
-> ### 🔍你可能在找网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-
-
-
-## 项目与反馈
-- **原脚本:** [yearly](https://greasyfork.org/zh-CN/users/1312063)创建的[彩色表格 | 表格数据可视化](https://greasyfork.org/zh-CN/scripts/502933)
-- **项目页面:** [GitHub 仓库](https://github.com/ChinaGodMan/UserScripts)
-- **支持与问题反馈:** [报告问题](https://github.com/ChinaGodMan/UserScripts/issues)
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-Beautify web forms with gorgeous gradients
-
-
-
Update record
🛠️ Beautify web forms with gorgeous gradients Change log
-📅 2024/9/6 05:41 - Ver 1.0.0.0
-
-
-
-# Gorgeous Gradient Table Beautification Script
-
-This script automatically applies gradient colors to all tables on a webpage, based on the numerical values in each column. It enhances the visual appeal of the table without any manual clicks or operations by the user.
-
-#### Features
-1. **Automatic Gradient Application**: The script scans tables on the page and automatically applies gradient colors to each column based on the data, without requiring user intervention.
-2. **Data-Driven Gradients**: Colors are generated based on the minimum and maximum values in each column, with greater color variation for larger or smaller values.
-3. **Continuous Monitoring**: The script checks the page every second to automatically apply gradients to any new tables that are loaded.
-4. **Gradient Color Configuration**: Colors are based on the HSL color model, with adjustable parameters for hue range (`HUE_RANGE`), saturation (`SATURATION`), and lightness (`LIGHTNESS`).
-
-#### Key Parameters
-- **HUE_RANGE**: Sets the hue range for the gradient color, with a default value of 120 degrees, representing a gradient from green to red.
-- **SATURATION**: Controls the color saturation, with a default of 80% for a vibrant color effect.
-- **LIGHTNESS**: Controls the color lightness, with a default of 88% to ensure a soft and non-straining color gradient.
-
-#### Core Logic
-1. **extractFirstFloat**: Extracts the first floating-point number from the cell's text, ignoring non-numeric content to ensure only numerical values are used for gradient calculation.
-2. **applyGradient**: Automatically calculates the minimum and maximum values for each column and generates corresponding gradient background colors.
-3. **initializeTables**: Periodically checks for tables on the page and applies gradient colors to any new or uninitialized tables.
-
-#### Use Cases
-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
-- **Original Script:** [yearly](https://greasyfork.org/zh-CN/users/1312063)'s [Colorful Table | Table Data Visualization](https://greasyfork.org/zh-CN/scripts/502933)
-- **Project Page:** [GitHub Repository](https://github.com/ChinaGodMan/UserScripts)
-- **Support & Issue Reporting:** [Report an Issue](https://github.com/ChinaGodMan/UserScripts/issues)
-
-
-
-
-
-
-
-
-
-
-
-
-
-> ### 🔍You may be looking for web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-
-
-> ### 🔍你可能在找网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHub提交信息显示HTML
-
-
-
-
-
-# GitHub CommitMessage Html View
-
-
-
-## 描述
-
-`GitHub CommitMessage Html View` 是一个用户脚本,旨在将 GitHub 上的提交信息转换为 HTML 视图,从而提供更清晰的提交详情。该脚本自动将提交信息列表、提交头部和最新提交信息转换为 HTML 格式,以增强视觉效果和用户体验,配合git使用
-
-
-
-## 功能
-
-- **提交信息列表转换**: 将提交消息列表中的提交信息转化为 HTML 视图。
-- **头部信息展示**: 显示提交头部和最新提交的详细信息。
-- **增强视觉效果**: 改善提交信息的可视性和用户体验。
-
-
-
-## PowerShell配合上传到远程仓库
-
-点击[qinwuyuan.ps1](https://raw.githubusercontent.com/ChinaGodMan/UserScripts/main/Script%20details/github-commit-viewer/preview/qinwuyuan.ps1)下载Powershell脚本
-
- param (
- [string]$qinwuyuan_messageFilePath
-)
-$qinwuyuan_scriptPath = $PSScriptRoot
-$qinwuyuan_rootDrive1 = [System.IO.Path]::GetPathRoot($qinwuyuan_scriptPath).TrimEnd('\')
-if (-not $qinwuyuan_messageFilePath) {
- $qinwuyuan_messageFilePath = "$qinwuyuan_rootDrive1\path\to\change\commit.txt"
-}
-$qinwuyuan_oldCommitFilePath = "$qinwuyuan_scriptPath\oldcommit.txt"
-if (-not (Test-Path $qinwuyuan_messageFilePath)) {
- exit 1
-}
-if (-not (Test-Path .git)) {
- exit 1
-}
-$qinwuyuan_newCommitMessage = Get-Content $qinwuyuan_messageFilePath -Raw
-$qinwuyuan_oldCommitMessage = if (Test-Path $qinwuyuan_oldCommitFilePath) {
- Get-Content $qinwuyuan_oldCommitFilePath -Raw
-} else {
- ""
-}
-if ($qinwuyuan_newCommitMessage -eq $qinwuyuan_oldCommitMessage) {
- $qinwuyuan_currentDateTime = Get-Date -Format "yyyy/M/d HH:mm:ss"
- $qinwuyuan_commitMessage = @"
-https://avatars.githubusercontent.com/u/96548841?v=4&size=32">
-https://github.com/ChinaGodMan">
- 人民的勤务员
-
-(UTC+8) $qinwuyuan_currentDateTime
-"@
-} else {
- $qinwuyuan_currentDateTime = Get-Date -Format "yyyy/M/d HH:mm:ss"
- $qinwuyuan_commitMessage = $qinwuyuan_newCommitMessage -replace '\$qinwuyuan_currentDateTime', $qinwuyuan_currentDateTime
-}
-$qinwuyuan_currentBranch = git rev-parse --abbrev-ref HEAD
-if ($LASTEXITCODE -ne 0) {
- exit 1
-}
-git add .
-git commit -m $qinwuyuan_commitMessage
-if ($LASTEXITCODE -ne 0) {
- exit 1
-}
-git push origin $qinwuyuan_currentBranch --force
-if ($LASTEXITCODE -ne 0) {
- exit 1
-}
-Copy-Item -Path $qinwuyuan_messageFilePath -Destination $qinwuyuan_oldCommitFilePath -Force
-
-
-
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-## 支持
-
-- [报告问题](https://github.com/ChinaGodMan/UserScripts/issues)
-- [项目主页](https://github.com/ChinaGodMan/UserScripts)
-
-
-
-## 许可证
-
-此脚本使用 [MIT 许可证](https://opensource.org/licenses/MIT)
-
-使用后:
-
-使用前:
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHubSubmit information displayHTML
-
-
-
-
-
-# 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
-
-- **Commit Message List Transformation**: Converts commit messages in the commit list to HTML view.
-- **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
-
-Click[qinwuyuan.ps1](https://raw.githubusercontent.com/ChinaGodMan/UserScripts/main/Script%20details/github-commit-viewer/preview/qinwuyuan.ps1) to download the PowerShell script.
-
- param (
- [string]$qinwuyuan_messageFilePath
-)
-$qinwuyuan_scriptPath = $PSScriptRoot
-$qinwuyuan_rootDrive1 = [System.IO.Path]::GetPathRoot($qinwuyuan_scriptPath).TrimEnd('\')
-if (-not $qinwuyuan_messageFilePath) {
- $qinwuyuan_messageFilePath = "$qinwuyuan_rootDrive1\path\to\change\commit.txt"
-}
-$qinwuyuan_oldCommitFilePath = "$qinwuyuan_scriptPath\oldcommit.txt"
-if (-not (Test-Path $qinwuyuan_messageFilePath)) {
- exit 1
-}
-if (-not (Test-Path .git)) {
- exit 1
-}
-$qinwuyuan_newCommitMessage = Get-Content $qinwuyuan_messageFilePath -Raw
-$qinwuyuan_oldCommitMessage = if (Test-Path $qinwuyuan_oldCommitFilePath) {
- Get-Content $qinwuyuan_oldCommitFilePath -Raw
-} else {
- ""
-}
-if ($qinwuyuan_newCommitMessage -eq $qinwuyuan_oldCommitMessage) {
- $qinwuyuan_currentDateTime = Get-Date -Format "yyyy/M/d HH:mm:ss"
- $qinwuyuan_commitMessage = @"
-https://avatars.githubusercontent.com/u/96548841?v=4&size=32">
-https://github.com/ChinaGodMan">
- peoplecivilofdiligentservicemember
-
-(UTC+8) $qinwuyuan_currentDateTime
-"@
-} else {
- $qinwuyuan_currentDateTime = Get-Date -Format "yyyy/M/d HH:mm:ss"
- $qinwuyuan_commitMessage = $qinwuyuan_newCommitMessage -replace '\$qinwuyuan_currentDateTime', $qinwuyuan_currentDateTime
-}
-$qinwuyuan_currentBranch = git rev-parse --abbrev-ref HEAD
-if ($LASTEXITCODE -ne 0) {
- exit 1
-}
-git add .
-git commit -m $qinwuyuan_commitMessage
-if ($LASTEXITCODE -ne 0) {
- exit 1
-}
-git push origin $qinwuyuan_currentBranch --force
-if ($LASTEXITCODE -ne 0) {
- exit 1
-}
-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
-
-This script is licensed under the [MIT License](https://opensource.org/licenses/MIT).
-
-After:
-
-Before:
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-GitHub 自动确认设备授权
-
-
-
更新记录
🛠️ GitHub 自动确认设备授权 更新日志
-📅 2024-09-18 08:50:32- Ver 1.0.0.0
-
-
-
-## 概述
-
-该用户脚本旨在简化在 GitHub 授权页面的操作,通过自动填写授权码和确认操作,减少手动干预的需要。该脚本特别适用于在无法直接操作浏览器的场景中使用,例如自动化测试或远程操作。
-(自用脚本,方便自己在便携时使用)
-
-
-
-## 功能
-
-- 自动填写授权码:从剪贴板读取授权码,并自动填写到授权页面的对应输入框中。
-- 自动提交授权:在确认授权页面自动点击授权按钮。
-
-
-
-## 安装与使用
-
-1. **安装**:点击上方绿色安装按钮进行安装.
-2. **使用**:
- - 访问 GitHub 设备授权页面时,脚本会自动运行。
- - 脚本会从剪贴板中读取授权码,并自动填写并提交表单。
-
-
-
-## 脚本功能
-
-- **自动填写授权码**:脚本会等待页面加载完成,然后从剪贴板读取授权码,拆分并填写到相应的输入框中。
-- **自动提交确认**:在确认页面,脚本会自动点击确认按钮,以完成授权操作。
-
-
-
-## 注意事项
-
-- 确保剪贴板中保存的是正确格式的授权码(形如 `XXXX-XXXX`)。
-- 脚本可能需要一些时间来识别页面元素并填写表单,因此请确保在使用时给予脚本足够的时间。
-
-
-
-## 感谢
-
-[LemonPupl](https://greasyfork.org/zh-CN/users/1274376)发布的脚本[GitHub Copilot automatically obtains GHU](https://greasyfork.org/scripts/489793)
-
-
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-## 许可证
-
-此脚本采用 MIT 许可证,详情请见 [LICENSE](https://github.com/ChinaGodMan/UserScripts/blob/main/LICENSE)。
-
-
-
-## 支持与反馈
-
-- 如果遇到问题或有任何建议,请访问 [GitHub Issues 页面](https://github.com/ChinaGodMan/UserScripts/issues) 提交反馈。
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHub Automatically confirm device authorization
-
-
-
Update record
🛠️ GitHub Automatically confirm device authorization Change log
-📅 2024-09-18 08:50:32- Ver 1.0.0.0
-
-
-
-## 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
-
-1. **Installation**: Click the green install button above to install the script.
-2. **Usage**:
- - 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
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-GitHub 文件列表美化器
-
-
-
更新记录
🛠️ GitHub 文件列表美化器 更新日志
-📅 2024/9/12 11:35 - Ver 4.1
-
-
-
-## 功能
-
-- **文件夹图标**:将文件夹图标替换为更直观的文件夹图标。
-- **自定义图标**:根据文件的扩展名或文件名,显示自定义的图标。
-- **图片文件预览**:对于图片文件,自动显示缩略图。
-- **颜色标记**:为不同类型的文件添加颜色,以便更快速地识别文件类型。
-
-
-
-## 请注意:
-
-**本脚本目就是为了着色不同的文件类型,显示图标只是附带的,有需要 Github 显示图标的,建议下载**
-
-- `github-vscode-icons-updated2.0.3`
-- `Material Icons for GitHub 1.8.19`
-
-
-
-## 安装
-
-1. **安装 Tampermonkey 或 Greasemonkey 插件**:
-
- - [Tampermonkey](https://www.tampermonkey.net/)(支持 Chrome, Firefox, Edge, Opera 等浏览器)
- - [Greasemonkey](https://www.greasespot.net/)(支持 Firefox)
-
-2. **添加脚本**:
-
- - 点击 安装到 Tampermonkey Greasemonkey 。
-
-3. **脚本配置**:
- - 脚本首次运行时会从指定 URL 加载颜色配置。如果无法加载配置,将使用默认设置。
-
-
-
-## 使用
-
-- 脚本会在 GitHub 页面加载时自动运行,处理文件列表中的文件图标。
-- 可以根据需要在 `localStorage` 或脚本设置中调整图标和颜色配置。
-
-
-
-## 自定义配置说明
-
-- 文件类型:
- `"js": {
- "color": "#f1c40f",
- "icon": "javascript"
-},
-"py": {
- "color": "red",
- "icon": "javascript"
-}`
-- 绝对名称:(用来显示图标的,暂时没添加绝对文件的自定义着色)
- `
-"123.txt": {
- "color": "red",
- "icon": "javascript"
-},`
-- 默认从 vscode-material-icon-theme 获取图标:
- ` "123.txt": {
- "color": "red",
- "icon": "javascript"
-},`
-- 从网络加载图标:
- `
-"123.txt": {
- "color": "red",
- "icon": "https://www.1.com/1.png"
-},`
-- 从本地加载图标:
- `
-"123.txt": {
- "color": "red",
- "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....."
-},`
-
-
-
-
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-## 兼容性
-
-- **浏览器**:支持 Chrome、Firefox、Edge、Opera 和 Safari。
-
-
-
-## 支持与反馈
-
-- 如果遇到问题或有任何建议,请访问 [GitHub Issues 页面](https://github.com/ChinaGodMan/UserScripts/issues) 提交反馈。
-
-
-
-## 授权
-
-- 该脚本基于 [MIT 许可证](https://opensource.org/licenses/MIT) 开源。
-
-
-
-## 贡献
-
-- 本脚本由 [wOxxOm](https://greasyfork.org/zh-CN/users/2159) [GitHub file list beautifier](https://greasyfork.org/zh-CN/scripts/5982) 和 人民的勤务员 开发。
-- 更多信息请访问 [GitHub 项目主页](https://github.com/ChinaGodMan/UserScripts)。
-
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHub File list beautifier
-
-
-
Update record
🛠️ GitHub File list beautifier Change log
-📅 2024/9/12 11:35 - Ver 4.1
-
-
-
-## Function
-
-- **folder icon**:Replace folder icons with more intuitive folder icons。
-- **Custom icon**:Based on file extension or file name,Show custom icons。
-- **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:
-
-**This script is for colorizing different file types,Display icons are only included,in needGithubdisplay icon,Recommended download**
-
-- `github-vscode-icons-updated2.0.3`
-- `Material Icons for GitHub 1.8.19`
-
-
-
-## Install
-
-1. **Install Tampermonkey or Greasemonkey plug-in**:
-
- - [Tampermonkey](https://www.tampermonkey.net/)(support Chrome, Firefox, Edge, Opera Wait for the browser)
- - [Greasemonkey](https://www.greasespot.net/)(support Firefox)
-
-2. **Add script**:
-
- - Click install to Tampermonkey Greasemonkey 。
-
-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
-
-- File type:
- `"js": {
- "color": "#f1c40f",
- "icon": "javascript"
-},
-"py": {
- "color": "red",
- "icon": "javascript"
-}`
-- absolute name:(used to display icons,Custom coloring of absolute files has not been added yet.)
- `
-"123.txt": {
- "color": "red",
- "icon": "javascript"
-},`
-- Default fromvscode-material-icon-themeGet icon:
- ` "123.txt": {
- "color": "red",
- "icon": "javascript"
-},`
-- Load icon from network:
- `
-"123.txt": {
- "color": "red",
- "icon": "https://www.1.com/1.png"
-},`
-- Load icon from local:
- `
-"123.txt": {
- "color": "red",
- "icon": " data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAA....."
-},`
-
-
-
-
-
-
-> ### 🔍you may be looking forGitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-## 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
-
-- Reason for the script [wOxxOm](https://greasyfork.org/zh-CN/users/2159) [GitHub file list beautifier](https://greasyfork.org/zh-CN/scripts/5982) and 人民的勤务员 develop。
-- For more information please visit [GitHub Project homepage](https://github.com/ChinaGodMan/UserScripts)。
-
-
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-GitHub文件夹下载
-
-
-
更新记录
🛠️ GitHub 文件夹下载 更新日志
-📅 2024/8/28 09:46 - Ver 0.7.0.2
-
-📅 2024/8/28 04:21 - Ver 0.7
-
-
-
-# GitHub Folder Downloader
-
-
-### 描述
-GitHub 文件夹下载器为 GitHub 文件夹添加了一个下载按钮,使用户可以更轻松地从仓库中下载特定的文件夹。该按钮集成了两个外部工具:download-directory 和 DownGit,允许用户一键下载文件夹。
-
-
-
-### 功能
-- 为 GitHub 文件夹添加下载按钮。
-- 提供使用 [download-directory](https://download-directory.github.io) 和 [DownGit](https://downgit.github.io) 下载文件夹的选项。
-
-
-
-### 使用方法
-1. 导航到一个 GitHub 仓库。
-2. 打开仓库中的一个文件夹。
-3. 点击“下载文件夹”按钮,以查看下载文件夹的选项。
-
-
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-### 修改说明
-修改自用户[Eric Kwok](https://greasyfork.org/zh-CN/users/220259) 的脚本 [GitHub 文件夹下载](https://greasyfork.org/scripts/434592 )
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHubFolder download
-
-
-
Update record
🛠️ GitHub Folder download Change log
-📅 2024/8/28 09:46 - Ver 0.7.0.2
-
-📅 2024/8/28 04:21 - Ver 0.7
-
-
-
-# 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
-1. Navigate to a GitHub repository.
-2. Open a folder in the repository.
-3. Click on the "Download folder" button to see options for downloading the folder.
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-
-Github 代码语言列表显示全部
-
-
-
更新记录
🛠️ Github 代码语言列表显示全部 更新日志
-📅 2024-09-24 04:33:03- Ver 1.0.0.0
-
-新增: •允许设置 Token 访问自己的私人仓库
-新增: •允许在跳转其他仓库时,自动添加.
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-
-Github List of code languages show all
-
-
-
Update record
🛠️ Github List of code languages show all Change log
-📅 2024-09-24 04:33:03- Ver 1.0.0.0
-
-New: •Allow setting Token Access your own private repository
-New: •Allowed when jumping to other warehouses,automatically added.
-
-
-> ### 🔍you may be looking forGitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-GitHub下载单文件和复制文件URL
-
-
-
更新记录
🛠️ GitHub下载单文件和复制文件URL 更新日志
-📅 2024/8/28 05:09 - Ver 2.2
-
-
-
-# Github 复制原始文件 URL 与下载文件
-
-
-
-## 描述
-此用户脚本在 GitHub 文件行末尾添加按钮,以便用户复制原始文件 URL 和下载文件。按钮包括“复制原始文件 URL”按钮和“下载文件”按钮。
-
-
-
-## 功能
-- 在每个文件行末尾添加“复制原始文件 URL”按钮。
-- 添加“下载文件”按钮,允许用户下载原始文件。
-- 复制按钮将原始文件 URL 复制到剪贴板。
-- 下载按钮触发文件下载。
-
-
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-## 兼容性
-- 适用于 GitHub 网站。
-
-
-
-## 许可证
-MIT 许可证
-
-
-
-## 支持
-如有问题,请访问 [支持页面](https://github.com/ChinaGodMan/UserScripts/issues)。
-
-
-
-## 感谢
-
-脚本修改自用户 **[Kamikaze](https://greasyfork.org/zh-CN/users/928242)** 的脚本 [Button to copy the raw file URL | Github](https://greasyfork.org/scripts/453489) 感谢原作者 **Kamikaze** 的**勤劳**与**智慧**
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHubDownload single files and copy filesURL
-
-
-
Update record
🛠️ GitHubDownload single files and copy filesURL Change log
-📅 2024/8/28 05:09 - Ver 2.2
-
-
-
-# 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
-- Adds a "Copy Raw File URL" button at the end of each file line.
-- Adds a "Download File" button that triggers the download of the raw file.
-- The copy button copies the raw file URL to the clipboard.
-- The download button initiates the file download.
-
-
-
-## Installation Steps
-1. Install the Tampermonkey extension.
-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
-
-The script is modified from user **[Kamikaze](https://greasyfork.org/zh-CN/users/928242)**’s script [Button to copy the raw file URL | Github](https://greasyfork.org/scripts/453489) Thanks to the original The **hard work** and **wisdom** of the author **Kamikaze**
-
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-GitHub Sort by Date
-
-
-
-
-
-# GitHub 按日期排序
-
-此用户脚本将 GitHub 仓库中的文件自动按日期降序排列,方便查看最新更新的文件。
-
-
-
-## 特性
-
-- 页面加载时自动按更新日期排序文件。
-- 适用于所有 GitHub 仓库。
-
-
-
-## 使用
-- 脚本将在页面加载时自动按日期排序文件,无需手动干预。
-
-
-
-
-> ### 🔍你可能在找GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-
-
-
-## 修改来源
-作者[androidcn]( https://greasyfork.org/zh-CN/users/18158)的脚本[Github 按文件更新日期排序]( https://greasyfork.org/scripts/492514),感谢作者的勤劳智慧
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-GitHub Sort by Date
-
-
-
-
-
-# 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
-author[androidcn]( https://greasyfork.org/zh-CN/users/18158)script[Github Sort by file update date]( https://greasyfork.org/scripts/492514),FeelingThanksauthorofdiligentlaborwisdomWisdom
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
GitHub질서정연한 스크립트 보기
-
GreasyFork질서정연한 스크립트 보기
현재 페이지에서 질서의 스크립트를 봅니다.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-GitHub Sort by Date
-
-
-
-
-
-# GitHub 날짜별로 정렬
-
-이 사용자 스크립트는 GitHub 창고에 있는 파일은 날짜별로 내림차순으로 자동 정렬됩니다.,최신 업데이트 파일을 편리하게 확인하세요。
-
-
-
-## 특성
-
-- 페이지가 로드될 때 업데이트된 날짜별로 파일을 자동으로 정렬합니다.。
-- 모두에게 적용됩니다 GitHub 창고。
-
-
-
-## 사용
-- 스크립트는 페이지 로드 시 날짜별로 파일을 자동으로 정렬합니다.,수동 개입이 필요하지 않습니다.。
-
-
-
-## 소스 수정
-작가[androidcn]( https://greasyfork.org/zh-CN/users/18158)적각본[Github 파일 업데이트 날짜별로 정렬]( https://greasyfork.org/scripts/492514),느낌감사해요작가~의성실한노동지혜지혜
-
-
-
-## 만들다사용돕다돕다
-
-
-## 돕다
-
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다GitHub관련 스크립트
-> - [**GitHub정보 표시 제출HTML**](https://greasyfork.org/scripts/505830): 이 스크립트는 GitHub 제출정보는 HTML 보다,제출 세부정보를 더 명확하게 보려면。정보 목록이 자동으로 제출됩니다.、커밋 헤더와 최신 커밋 정보는 다음과 같이 변환됩니다. HTML 체재,더 나은 시각 효과와 사용자 경험 제공。
-> - [**GitHub 파일 목록 미화자**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier는 사용자 스크립트입니다.,향상시키는 데 사용됨 GitHub 창고 내 파일 표시 효과。파일과 폴더에 색상을 추가할 수 있습니다.,파일 형식 아이콘을 작은 이미지로 바꿉니다.,코드 베이스를 더 쉽게 찾아보고 관리할 수 있습니다.。
-> - [**Github 코드 언어 목록 모두 표시**](https://greasyfork.org/scripts/509889): 확장하다 Github 저장소의 언어 목록,각 언어 표시,작은 부품을 숨기는 것보다 “다른” 아래에
-> - [**GitHub 장치 승인 자동 확인**](https://greasyfork.org/scripts/508956): 존재하다GitHub인증 페이지에서는 자동으로 인증 코드를 입력하고 자동으로 확인합니다.。
-> - [**GitHub접는 사람下载**](https://greasyfork.org/scripts/505496): 다운로드 버튼 추가,특정 파일을 쉽게 다운로드할 수 있습니다. GitHub 文件夹。
-> - [**GitHub단일 파일 다운로드 및 파일 복사URL**](https://greasyfork.org/scripts/505501): 각 파일 줄 끝에 추가 버튼,원본 파일을 복사하려면 URL 그리고 파일 다운로드
-> - [**🤠 Github 어시스턴트 강화 창고 전시 크기 비활성 개발 경고 창고 내 빠른 점프用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 존재하다Github창고 보기 및 검색 시 창고 크기 표시 ,비활성 개발 경고,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 창고 목록 파일 정렬 방식을 날짜 내림차순으로 변경,최신 업데이트 파일을 편리하게 확인하세요。
-
-
-
-
-
-
-
-## 돕다
-
- 권장 브라우저 및 스크립트 관리자:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **사용자 스크립트 설치 방법에 대해 더 알고 싶다면,[나를 클릭하세요](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)그래픽 교육 보기!**
-
-
-
-
-
-
-
-
-
-### 모든 게시 스크립트 보기
-
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 ChatGPT관련 스크립트
-> - [**ChatGPT코드 글꼴 크기 감소**](https://greasyfork.org/scripts/505209): 허락하다 ChatGPT 코드 글꼴 크기가 작아집니다.
-> - [**ChatGPT 聊天코드 복사단추**](https://greasyfork.org/scripts/509598): 존재하다 chatgpt.com 상단 코드 블록의 오른쪽 하단에 애니메이션을 추가합니다.“复制代码”按钮
-> - [**ChatGPT 캐릭터 카운터**](https://greasyfork.org/scripts/506166): 添加一문자计数器到输入框,로 제한됨 32732 문자。(ChatGPT 한도는 32732 个字符。)
-> - [**ChatGPT 자체 메시지 및 최대 너비 축소**](https://greasyfork.org/scripts/504901): 귀하가 보낸 긴 메시지를 자동으로 접습니다.,화면 공간 절약。채팅 창의 최대 너비를 설정할 수 있습니다.,긴 메시지가 지정된 범위를 초과하지 않도록 유지。
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 웹 관련 스크립트
-> - [**웹 페이지 작성 클립 버전 권한 관리자**](https://greasyfork.org/scripts/497403): 편집된 버전에서 웹페이지가 표시되는 것을 금지합니다.,출시용 녹색,빨간색 금지,주황색 임시 방향
-> - [**승강기CSDN로그인복사限制**](https://greasyfork.org/scripts/505207): 엿 먹어라 CSDN 登录复制,로그인하지 않고 코드 상자 내용 복사
-> - [**화려한 그라데이션으로 웹 양식을 아름답게 꾸미세요**](https://greasyfork.org/scripts/507036): 웹 페이지 테이블의 모든 열에 색상 그라데이션 미화를 자동으로 적용합니다..
-> - [**웹페이지에서 키워드 강조표시+(추천하다)**](https://greasyfork.org/scripts/498906): 웹페이지의 텍스트 강조표시
-> - [**웹 텍스트 강조 표시_미니 버전**](https://greasyfork.org/scripts/498905): 스크롤 시 동적으로 로드되는 콘텐츠를 포함하여 웹페이지에서 사용자 정의 키워드 강조 표시
-> - [**작은 창 미리보기**](https://greasyfork.org/scripts/504880): 링크 드래그 시 팝업창에서 링크 열기,열기 전에 미리보기를 제공하세요.,사용 Edge 미리 읽는 기술。동시에 작은 창을 열 때 뒤에 아크릴 효과를 추가합니다.。
-> - [**링크 밑줄 제거**](https://greasyfork.org/scripts/498625): 웹 링크에서 밑줄 제거
-> - [**위아래로 작은 스크롤 버튼**](https://greasyfork.org/scripts/497251): 페이지 오른쪽에 상하 스크롤 버튼 추가
-> - [**원터치 상하 버튼**](https://greasyfork.org/scripts/500255): 다음에서 수정됨Greasyfork사용자 스크립트 웹 페이지에 상단 및 하단 버튼 추가,긴 페이지의 상단 또는 하단으로 빠르게 이동할 수 있습니다.。 아래로 스크롤할 때 버튼 색상 변경 추가,3몇 초 내에 스크롤이 없으면 자동으로 중지됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 GitHub관련 스크립트
-> - [**GitHub정보 표시 제출HTML**](https://greasyfork.org/scripts/505830): 이 스크립트는 GitHub 제출정보는 HTML 보다,제출 세부정보를 더 명확하게 보려면。정보 목록이 자동으로 제출됩니다.、커밋 헤더와 최신 커밋 정보는 다음과 같이 변환됩니다. HTML 체재,더 나은 시각 효과와 사용자 경험 제공。
-> - [**GitHub 파일 목록 미화자**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier는 사용자 스크립트입니다.,향상시키는 데 사용됨 GitHub 창고 내 파일 표시 효과。파일과 폴더에 색상을 추가할 수 있습니다.,파일 형식 아이콘을 작은 이미지로 바꿉니다.,코드 베이스를 더 쉽게 찾아보고 관리할 수 있습니다.。
-> - [**Github 코드 언어 목록 모두 표시**](https://greasyfork.org/scripts/509889): 확장하다 Github 저장소의 언어 목록,각 언어 표시,작은 부품을 숨기는 것보다 “다른” 아래에
-> - [**GitHub 장치 승인 자동 확인**](https://greasyfork.org/scripts/508956): 존재하다GitHub인증 페이지에서는 자동으로 인증 코드를 입력하고 자동으로 확인합니다.。
-> - [**GitHub접는 사람下载**](https://greasyfork.org/scripts/505496): 다운로드 버튼 추가,특정 파일을 쉽게 다운로드할 수 있습니다. GitHub 文件夹。
-> - [**GitHub단일 파일 다운로드 및 파일 복사URL**](https://greasyfork.org/scripts/505501): 각 파일 줄 끝에 추가 버튼,원본 파일을 복사하려면 URL 그리고 파일 다운로드
-> - [**🤠 Github 어시스턴트 강화 창고 전시 크기 비활성 개발 경고 창고 내 빠른 점프用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 존재하다Github창고 보기 및 검색 시 창고 크기 표시 ,비활성 개발 경고,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 창고 목록 파일 정렬 방식을 날짜 내림차순으로 변경,최신 업데이트 파일을 편리하게 확인하세요。
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 Google관련 스크립트
-> - [**Google 고급 검색**](https://greasyfork.org/scripts/502652): 이것은 Google 고급 검색 양식에 대한 사용자 스크립트 추가。페이지 상단에 숨길 수 있는 고급 검색 양식을 추가합니다.,보다 정확하게 정보를 검색할 수 있습니다.。
-> - [**Google 특정 사이트 검색 및 차단**](https://greasyfork.org/scripts/500262): 검색 엔진 결과에서 특정 사이트 차단,사용자가 원치 않는 검색 결과를 필터링하도록 지원。 사용자 정의 입력 차단 사이트。체재-zhihu -baidu Google 검색 콘텐츠를 차단하는 데 사용됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 GreasyFork관련 스크립트
-> - [**GreasyFork향상에 적합**](https://greasyfork.org/scripts/497317): 추가할 링크에 적합한 스크립트 세부정보 페이지가 추가됩니다.,웹페이지 복사,타이어 검색
-> - [**GrreasyFork 사용자 게시 스크립트 데이터 시각화**](https://greasyfork.org/scripts/508968): 사용Chart.js사용자 스크립트 데이터 획득 및 시각화,그리고 사용자의 개인 홈페이지에 차트를 생성하여 아래와 같이 자세한 설치 현황을 표시합니다.
-> - [**GreaysFork 향상시키다 WebHook동기화 설정**](https://greasyfork.org/scripts/506717): 이 스크립트를 사용하면 스크립트 동기화 정보를 빠르게 입력할 수 있습니다.,여러 국가의 언어 코드를 일괄 추가하세요.,선택 상자를 하나씩 클릭하여 해당 URL로 이동하는 대신。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 포럼에서 기본적으로 사용됨 Markdown 체재,형식 도움말 링크를 추가하고 Markdown 툴바 소개
-> - [**GreasyFork 스크립트 등급 표시**](https://greasyfork.org/scripts/501119): 스크립트 목록에 평가 점수 추가
-> - [**GreasyFork 고급 검색**](https://greasyfork.org/scripts/505215): Google을 사용하여 검색 GreasyFork 그리고 SleazyFork 상적 각본
-> - [**GreasyFork 네비게이션 바향상시키다**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,사용자 목록 추가,사용자 콘솔 등
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 향상시키다greasyfork,코드 복사,스크립트 다운로드,초 단위의 정확한 시간,홈페이지 정리,원클릭 보고에 대해 논의,스크립트 목록 점프 코드 추가 다운로드 코드 보기 및 코드 참조 파일 표시,스크립트 아이콘 표시,성인용 스크립트 및 기타 작업으로 이동
-> - [**Greasyfork 알림 도우미**](https://greasyfork.org/scripts/506345): 귀하의 스크립트나 귀하가 참여하고 있는 토론에 대한 새로운 답변이 있는 경우,스크립트는 웹 페이지의 모달 창에 최신 토론 내용을 표시합니다.。
-> - [**Script Finder그리스 원숭이 스크립트 찾기**](https://greasyfork.org/scripts/498904): Script Finder 사용자 스크립트입니다(userscript),모든 웹사이트에서 사용자 스크립트를 찾고 관리하는 데 도움이 됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 성인 각본
-> - [**MiSSAV자동 로그인**](https://greasyfork.org/scripts/505325): 발각 MisssAV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-> - [**MissAV컬렉션 관리자**](https://greasyfork.org/scripts/497682): miss재생목록 백업,사진 다운로드 및 비디오 정보 저장 지원.로컬 웹페이지 내보내기 수출 지원webdav
-> - [**TissAV자동 로그인**](https://greasyfork.org/scripts/506528): 발각 TissAV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-> - [**JableTV자동 로그인**](https://greasyfork.org/scripts/506730): 발각 JableTV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 자동 번역
-> - [**외국어 터미네이터**](https://greasyfork.org/scripts/504890): 중국어가 아닌 문자 인식,길이가 그 이상인 경우 5 그리고 번역된 텍스트에는 중국어가 포함되어 있지 않습니다.,그럼 중국어로 바꾸세요,접근 가능해야 함google회로망
-> - [**웹페이지 번역——중국어로 자동 번역됨**](https://greasyfork.org/scripts/505208): 중국어가 아닌 웹페이지의 오른쪽 하단 모서리를 제공합니다.(왼쪽 하단으로 조정 가능)추가하다 google 번역 아이콘,이 버전은 중국어 번역 버전입니다.,외국어만 중국어로 번역하세요,자동 번역 추가
-
-
-
-
-
-
-
-GitHub Sort by Date
-
-
-
-
-
-# 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
-
-
-
-## làmsử dụnggiúp đỡgiúp đỡ
-
-
-## Giúp đỡ
-
-
-
-
-> ### 🔍có thể bạn đang tìm kiếmGitHubTập lệnh liên quan
-> - [**GitHubGửi hiển thị thông tinHTML**](https://greasyfork.org/scripts/505830): Kịch bản này sẽ GitHub Thông tin nộp hồ sơ trên HTML xem,để xem chi tiết gửi rõ ràng hơn。Nó sẽ tự động gửi danh sách thông tin、Tiêu đề cam kết và thông tin cam kết mới nhất được chuyển đổi thành HTML Định dạng,Cung cấp hiệu ứng hình ảnh và trải nghiệm người dùng tốt hơn。
-> - [**GitHub Trình làm đẹp danh sách tập tin**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier là một tập lệnh người dùng,được sử dụng để tăng cường GitHub Hiển thị tác dụng của file trong kho。Nó có thể thêm màu sắc vào tập tin và thư mục,và thay thế các biểu tượng loại tệp bằng hình ảnh nhỏ,Làm cho cơ sở mã dễ dàng duyệt và quản lý hơn。
-> - [**Github Danh sách ngôn ngữ mã hiển thị tất cả**](https://greasyfork.org/scripts/509889): Mở rộng Github Danh sách ngôn ngữ trên kho lưu trữ,Hiển thị từng ngôn ngữ,Thay vì giấu những phần nhỏ trong “khác” Xuống
-> - [**GitHub Tự động xác nhận ủy quyền thiết bị**](https://greasyfork.org/scripts/508956): hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và tự động xác nhận.。
-> - [**GitHubthư mục下载**](https://greasyfork.org/scripts/505496): Thêm nút tải xuống,Cho phép dễ dàng tải xuống cụ thể GitHub 文件夹。
-> - [**GitHubTải xuống các tập tin đơn lẻ và sao chép các tập tinURL**](https://greasyfork.org/scripts/505501): Nút thêm vào cuối mỗi dòng file,để sao chép tập tin gốc URL và tải về các tập tin
-> - [**🤠 Github Tăng cường trợ lý Kích thước hiển thị kho Cảnh báo phát triển không hoạt động Nhảy nhanh vào kho用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): hiện hữuGithubHiển thị kích thước kho khi xem và tìm kiếm kho ,Cảnh báo phát triển không hoạt động,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Thay đổi cách sắp xếp file danh sách kho theo thứ tự ngày giảm dần,Thuận tiện xem các tập tin cập nhật mới nhất。
-
-
-
-
-
-
-
-## Giúp đỡ
-
- Trình duyệt và trình quản lý tập lệnh được đề xuất:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **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/README.md)Xem giảng dạy đồ họa!**
-
-
-
-### Xem tất cả các tập lệnh xuất bản
-
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm ChatGPTTập lệnh liên quan
-> - [**ChatGPTKích thước phông chữ mã giảm**](https://greasyfork.org/scripts/505209): cho phép ChatGPT Kích thước phông chữ mã trở nên nhỏ hơn
-> - [**ChatGPT 聊天Sao chép mãcái nút**](https://greasyfork.org/scripts/509598): hiện hữu chatgpt.com Thêm hình động ở góc dưới bên phải của khối mã phía trên“复制代码”按钮
-> - [**ChatGPT bộ đếm ký tự**](https://greasyfork.org/scripts/506166): 添加一nhân vật计数器到输入框,giới hạn ở 32732 nhân vật。(ChatGPT Giới hạn là 32732 个字符。)
-> - [**ChatGPT Thu gọn tin nhắn tự và chiều rộng tối đa**](https://greasyfork.org/scripts/504901): 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。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ó thể bạn đang tìm kiếm Các tập lệnh liên quan đến web
-> - [**Trình quản lý ủy quyền phiên bản clip viết trang web**](https://greasyfork.org/scripts/497403): Cấm các trang web ị trên các phiên bản đã chỉnh sửa,màu xanh lá cây để phát hành,lệnh cấm đỏ,hướng dẫn tạm thời màu cam
-> - [**Thang máyCSDNĐăng nhậpSao chép限制**](https://greasyfork.org/scripts/505207): chết tiệt bạn CSDN 登录复制,Sao chép nội dung hộp mã mà không cần đăng nhập
-> - [**Làm đẹp các biểu mẫu web với độ dốc tuyệt đẹp**](https://greasyfork.org/scripts/507036): Tự động áp dụng làm đẹp độ dốc màu cho tất cả các cột của bảng trên trang web.
-> - [**Đánh dấu từ khóa trên các trang web+(gợi ý)**](https://greasyfork.org/scripts/498906): Đánh dấu văn bản trên các trang web
-> - [**Làm nổi bật văn bản web_phiên bản nhỏ**](https://greasyfork.org/scripts/498905): Làm nổi bật từ khóa tùy chỉnh trên các trang web bao gồm nội dung được tải động khi cuộn
-> - [**Xem trước cửa sổ nhỏ**](https://greasyfork.org/scripts/504880): Mở liên kết trong cửa sổ bật lên khi kéo liên kết,và cung cấp bản xem trước trước khi mở,sử dụng Edge công nghệ đọc trước。Đồng thời, thêm hiệu ứng acrylic phía sau cửa sổ nhỏ khi nó được mở.。
-> - [**Xóa gạch chân liên kết**](https://greasyfork.org/scripts/498625): Xóa gạch chân khỏi liên kết web
-> - [**Nút cuộn nhỏ lên xuống**](https://greasyfork.org/scripts/497251): Thêm nút cuộn lên xuống ở bên phải trang
-> - [**Nút trên và dưới một chạm**](https://greasyfork.org/scripts/500255): Được sửa đổi từGreasyforktập lệnh người dùng Thêm nút trên và dưới vào trang web,Tạo điều kiện di chuyển nhanh lên đầu hoặc cuối trang dài。 Đã thêm thay đổi màu nút khi cuộn xuống,3Tự động dừng nếu không cuộn trong vài giây
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm GitHubTập lệnh liên quan
-> - [**GitHubGửi hiển thị thông tinHTML**](https://greasyfork.org/scripts/505830): Kịch bản này sẽ GitHub Thông tin nộp hồ sơ trên HTML xem,để xem chi tiết gửi rõ ràng hơn。Nó sẽ tự động gửi danh sách thông tin、Tiêu đề cam kết và thông tin cam kết mới nhất được chuyển đổi thành HTML Định dạng,Cung cấp hiệu ứng hình ảnh và trải nghiệm người dùng tốt hơn。
-> - [**GitHub Trình làm đẹp danh sách tập tin**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier là một tập lệnh người dùng,được sử dụng để tăng cường GitHub Hiển thị tác dụng của file trong kho。Nó có thể thêm màu sắc vào tập tin và thư mục,và thay thế các biểu tượng loại tệp bằng hình ảnh nhỏ,Làm cho cơ sở mã dễ dàng duyệt và quản lý hơn。
-> - [**Github Danh sách ngôn ngữ mã hiển thị tất cả**](https://greasyfork.org/scripts/509889): Mở rộng Github Danh sách ngôn ngữ trên kho lưu trữ,Hiển thị từng ngôn ngữ,Thay vì giấu những phần nhỏ trong “khác” Xuống
-> - [**GitHub Tự động xác nhận ủy quyền thiết bị**](https://greasyfork.org/scripts/508956): hiện hữuGitHubTrang ủy quyền tự động nhập mã ủy quyền và tự động xác nhận.。
-> - [**GitHubthư mục下载**](https://greasyfork.org/scripts/505496): Thêm nút tải xuống,Cho phép dễ dàng tải xuống cụ thể GitHub 文件夹。
-> - [**GitHubTải xuống các tập tin đơn lẻ và sao chép các tập tinURL**](https://greasyfork.org/scripts/505501): Nút thêm vào cuối mỗi dòng file,để sao chép tập tin gốc URL và tải về các tập tin
-> - [**🤠 Github Tăng cường trợ lý Kích thước hiển thị kho Cảnh báo phát triển không hoạt động Nhảy nhanh vào kho用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): hiện hữuGithubHiển thị kích thước kho khi xem và tìm kiếm kho ,Cảnh báo phát triển không hoạt động,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Thay đổi cách sắp xếp file danh sách kho theo thứ tự ngày giảm dần,Thuận tiện xem các tập tin cập nhật mới nhất。
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm GoogleTập lệnh liên quan
-> - [**Google Tìm kiếm nâng cao**](https://greasyfork.org/scripts/502652): Đây là một cho Google Thêm tập lệnh người dùng cho biểu mẫu tìm kiếm nâng cao。Nó thêm một biểu mẫu tìm kiếm nâng cao có thể ẩn ở đầu trang,Giúp bạn tìm kiếm thông tin chính xác hơn。
-> - [**Google Tìm kiếm và chặn các trang web cụ thể**](https://greasyfork.org/scripts/500262): Chặn các trang web cụ thể khỏi kết quả của công cụ tìm kiếm,Giúp người dùng lọc ra các kết quả tìm kiếm không mong muốn。 Trang web chặn đầu vào tùy chỉnh。Định dạng-zhihu -baidu Được sử dụng để chặn nội dung tìm kiếm của Google
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm GreasyForkTập lệnh liên quan
-> - [**GreasyForkthích hợp để nâng cao**](https://greasyfork.org/scripts/497317): Trang chi tiết tập lệnh được thêm vào. Nó phù hợp để thêm các liên kết. Nhấp để mở trang web.,Sao chép trang web,tìm kiếm lốp xe
-> - [**GrreasyFork Trực quan hóa dữ liệu tập lệnh do người dùng xuất bản**](https://greasyfork.org/scripts/508968): sử dụngChart.jsLấy và hiển thị dữ liệu tập lệnh người dùng,Và tạo biểu đồ trên trang chủ cá nhân của người dùng để hiển thị trạng thái cài đặt chi tiết bên dưới.
-> - [**GreaysFork Nâng cao WebHookĐồng bộ hóa cài đặt**](https://greasyfork.org/scripts/506717): Tập lệnh này có thể giúp bạn nhập nhanh thông tin đồng bộ hóa tập lệnh,Và thêm mã ngôn ngữ cho nhiều quốc gia theo đợt,Thay vì nhấp vào từng hộp lựa chọn và đi tới URL tương ứng。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Được sử dụng theo mặc định trong diễn đàn Markdown Định dạng,Thêm liên kết trợ giúp định dạng và Markdown Giới thiệu thanh công cụ
-> - [**GreasyFork Hiển thị xếp hạng kịch bản**](https://greasyfork.org/scripts/501119): Thêm điểm đánh giá vào danh sách tập lệnh
-> - [**GreasyFork Tìm kiếm nâng cao**](https://greasyfork.org/scripts/505215): Tìm kiếm bằng Google GreasyFork Và SleazyFork chữ viết trên
-> - [**GreasyFork Thanh điều hướngNâng cao**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Thêm danh sách người dùng,Bảng điều khiển người dùng, v.v.
-> - [**GreasyforkThợ làm keo**](https://greasyfork.org/scripts/497346): Nâng caogreasyfork,Sao chép mã,Tải xuống tập lệnh,Thời gian chính xác đến từng giây,Dọn dẹp trang chủ,Thảo luận về báo cáo bằng một cú nhấp chuột,Đã thêm mã nhảy danh sách tập lệnh tải xuống Làm đẹp mã xem và hiển thị các tệp tham chiếu mã,hiển thị biểu tượng tập lệnh,Chuyển đến tập lệnh dành cho người lớn và các thao tác khác
-> - [**Greasyfork Trợ lý thông báo**](https://greasyfork.org/scripts/506345): Khi có câu trả lời mới cho tập lệnh của bạn hoặc cho cuộc thảo luận mà bạn đang tham gia,Kịch bản sẽ hiển thị nội dung thảo luận mới nhất trong một cửa sổ phương thức trên trang web。
-> - [**Script FinderCông cụ tìm tập lệnh Grease Monkey**](https://greasyfork.org/scripts/498904): 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ý mô tả người dùng trên bất kỳ trang web nào
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm kịch bản người lớn
-> - [**MiSSAVĐăng nhập tự động**](https://greasyfork.org/scripts/505325): Phát hiện MisssAV tình trạng,và tự động đăng nhập khi chưa đăng nhập
-> - [**MissAVNgười quản lý bộ sưu tập**](https://greasyfork.org/scripts/497682): missSao lưu danh sách phát,Hỗ trợ tải hình ảnh và lưu thông tin video.Xuất trang web địa phương Hỗ trợ xuất khẩu sangwebdav
-> - [**TissAVĐăng nhập tự động**](https://greasyfork.org/scripts/506528): Phát hiện TissAV tình trạng,và tự động đăng nhập khi chưa đăng nhập
-> - [**JableTVĐăng nhập tự động**](https://greasyfork.org/scripts/506730): Phát hiện JableTV tình trạng,và tự động đăng nhập khi chưa đăng nhập
-
-
-
-> ### 🔍có thể bạn đang tìm kiếm dịch tự động
-> - [**đầu cuối ngoại ngữ**](https://greasyfork.org/scripts/504890): Nhận biết các ký tự không phải tiếng Trung,Nếu chiều dài lớn hơn 5 Và văn bản dịch không chứa tiếng Trung Quốc,sau đó thay thế bằng tiếng Trung,Cần phải có thể truy cập đượcgooglemạng
-> - [**dịch trang web——Tự động dịch sang tiếng Trung**](https://greasyfork.org/scripts/505208): Cung cấp góc dưới bên phải của mỗi trang web không phải tiếng Trung Quốc(Có thể điều chỉnh ở góc dưới bên trái)thêm một google Biểu tượng dịch,Phiên bản này là phiên bản dịch tiếng Trung,Chỉ dịch tiếng nước ngoài sang tiếng Trung,Thêm bản dịch tự động
-
-
-
-
-
-
-
-Google 高级搜索
-
-
-
更新记录
🛠️ Google 高级搜索 更新日志
-📅 2024/8/5 23:18 - Ver 0.1.9.1
-
-📅 2024/8/5 10:26 - Ver 0.1.9
-
-修复: 下面代码仅在 PC 端生效 searchContainer.appendChild(toggleButton)。
-
-
-# Google 高级搜索助手
-
-这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-
-
-
-## 功能
-
-- 在 Google 搜索页面顶部添加一个“高级搜索”按钮,点击按钮可显示高级搜索表单。
-- 高级搜索表单包含了以下搜索选项:
- - `以下所有字词`:搜索结果中必须包含所有指定的关键字。
- - `与以下字词完全匹配`:搜索结果中必须包含完全匹配指定字词的结果。
- - `以下任意字词`:搜索结果中必须包含指定的任意一个关键字。
- - `排除以下字词`:搜索结果中不包含指定的关键字。
- - `包含的数字范围`:搜索结果中包含指定范围内的数字。
- - `最后更新时间`:搜索结果中包含指定更新时间的结果。
- - `网站或域名`:搜索结果中包含指定网站或域名的结果。
- - `文件类型`:搜索结果中包含指定文件类型的结果。
-- 可以保存以前的搜索选项,这样在打开新页面时会自动填充表单。
-- 提供清空按钮,可以清除表单中的数据。
-
-
-
-## 使用方法
-
-1. 安装一个用户脚本管理器,比如 Tampermonkey。
-2. 安装用户脚本并启用它。
-3. 在谷歌搜索页面打开后,您会在页面顶部看到一个名为“高级搜索”的按钮。
-4. 点击“高级搜索”按钮,高级搜索表单将显示出来。
-5. 在表单中填入您想要的高级搜索选项。
-6. 点击“搜索”按钮进行高级搜索,或点击“清空”按钮清除表单数据。
-
-注意:由于该脚本是针对谷歌搜索页面编写的,所以只能在谷歌搜索页面上使用。
-
-谷歌高级搜索助手 更新记录
-
-## 感谢
-
-脚本修改自用户 **[shiquda](https://greasyfork.org/zh-CN/users/935206)** 的脚本 [ Google 高级搜索助手](https://greasyfork.org/scripts/474178) 感谢原作者 **shiquda** 的**勤劳**与**智慧**
-
-
-
-
-
-
-
-
-> ### 🔍你可能在找Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。 」
-Download:Github | ⭐Greasy - Fork
New: Add script icon
-issues: Advanced search box cannot be displayed on mobile devices。
-repair: The code below is only PC Effective on the terminal searchContainer.appendChild(toggleButton)。
-
-
-# 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
-
-- Adds an "Advanced Search" button at the top of the Google search page. Clicking the button will display the advanced search form.
-- The advanced search form includes the following search options:
- - "All of these words": The search results must include all specified keywords.
- - "Exact word or phrase": The search results must include an exact match of the specified word or phrase.
- - "Any of these words": The search results must include any of the specified keywords.
- - "None of these words": The search results must not include the specified keywords.
- - "Number range": The search results must include numbers within the specified range.
- - "Last update": The search results must include results that were last updated within the specified time frame.
- - "Site or domain": The search results must include results from the specified website or domain.
- - "File type": The search results must include results of the specified file type.
-- 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
-
-1. Install a user script manager, such as Tampermonkey.
-2. Install this Userscipt.
-3. When opening a Google search page, you would see a button called "Advanced search" on the top of the page.
-4. Click the blue button and the form of advanced search will be shown.
-5. Fill in the desired search options in the form.
-6. Click the "Search" button to perform the search, or click the "Clear" button to clear the form data.
-
-Note: This script is specifically designed for the Google search page and can only be used on Google search pages.
-
-
-
-## Author
-
-The script is modified from the user **[shiquda](https://greasyfork.org/users/935206)**'s script [Google Advanced Search Assistant](https://greasyfork.org/scripts/474178) Thanks to the original author** shiquda**’s **hard work** and **wisdom**
-
-
-
-
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-「 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-## 屏蔽谷歌搜索中的指定站点
-
-- **帮助用户过滤掉不需要的搜索结果**
-- **自定义输入屏蔽站点**
-- **格式** `"-zhihu" "-baidu"` 用于屏蔽谷歌搜索内容
-
-
-
-
-> ### 🔍你可能在找Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
请输入用英文逗号分隔的站点:
- -
-
-
-
-
-「 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。 」
-Download:Github | ⭐Greasy - Fork
新增: https://greasyfork.org/users/*/notifications反转排序,让最新的信息显示在顶部,而不是底部.
优化: 🙄 窗口显示新消息数量,当一个discussions没有未读信息时,不会添加分类标题.
-新增: i18n→[zh-CN,zh-TW,en,ko,ja,vi]
新增: 🙄 增加个sweetalert.js第三方库,方便自己在 KIWi 浏览器上使用罢了
新增: 添加read=unread参数,只提取未读信息,此版本为最终版本.#259731GreasyFork 已经逐步支持站内通知,脚本将失去存在的意义.
新增: 跳过自己新开的讨论,并且在匹配最后发言人用户 ID 失败时,匹配最后发言人.
-改进: 改为使用网站的讨论列表,增加在信息内添加分类。
-新增: 增加设置最大消息数量的油猴菜单。
-新增: 增加跳过最后发言人是 自己 的选项。
新增: 增加设置刷新时间的油猴菜单。
-初始: 初始版本,欢迎使用。
-
-
-
-# GreasyFork 通知助手
- 
-
-一个 Tampermonkey 脚本,用于在 GreasyFork 上增强讨论列表功能。当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-
-
-
-## 功能
-
-- **自定义样式:** 提供一个干净、用户友好的模态窗口,用于显示最新的讨论内容,样式可自定义。
-- **自动更新:** 脚本会定期检查讨论的更新,并在有新回复时提醒你。
-- **信息提取:** 从网页上提取讨论标题、时间戳和用户名,并将其整理到模态窗口中。
-
-
-
-## 自定义检查时间
-
-脚本使用 `delay` 配置项来设定检查更新的间隔时间。时间格式为以下几种组合:
-
-- `1h1m`:1小时1分钟
-- `30m`:30分钟
-- `1h`:1小时
-- `1m`:1分钟
-- `1s`:1秒
-- `2m1s`:2分1秒
-
-你可以根据需要修改 `delay` 配置项的值,以调整脚本检查讨论更新的频率。例如,如果你希望每15分钟检查一次,可以将 `delay` 设置为 `15m`。
-
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-
-## 项目与反馈
-
-- **项目页面:** [GitHub 仓库](https://github.com/ChinaGodMan/UserScripts)
-- **支持与问题反馈:** [报告问题](https://github.com/ChinaGodMan/UserScripts/issues)
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。 」
-Download:Github | ⭐Greasy - Fork
New: https://greasyfork.org/users/*/notificationsreverse sort,Keep the latest information at the top,instead of the bottom.
optimization: 🙄 The window displays the number of new messages,when adiscussionsWhen there are no unread messages,Category titles will not be added.
-New: i18n→[zh-CN,zh-TW,en,ko,ja,vi]
New: 🙄 addsweetalert.jsThird-party libraries,Convenient for yourself KIWi Just use it on the browser
New: Add toread=unreadparameter,Extract only unread messages,This version is final.#259731GreasyFork In-site notifications have been gradually supported,Scripts will lose their meaning.
New: Skip your own newly opened discussion,and inMatch last speakeruser ID on failure,Match last speaker.
-improve: Use the site’s discussion list instead,Add categories to information。
-New: Added grease monkey menu for setting the maximum number of messages。
-New: Added skip last speaker is Own options。
New: Added oil monkey menu to set refresh time。
-initial: initial version,Welcome。
-
-
-
-# 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
-
-- **Customizable Style:** Provides a clean, user-friendly modal window to display the latest discussion content, with customizable styles.
-- **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
-
-The script uses the `delay` configuration option to set the interval for checking updates. The time format can be one of the following combinations:
-
-- `1h1m`: 1 hour and 1 minute
-- `30m`: 30 minutes
-- `1h`: 1 hour
-- `1m`: 1 minute
-- `1s`: 1 second
-- `2m1s`: 2 minutes and 1 second
-
-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
-
-- **Project Page:** [GitHub Repository](https://github.com/ChinaGodMan/UserScripts)
-- **Support and Issues:** [Report Issues](https://github.com/ChinaGodMan/UserScripts/issues)
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-
-
-## 脚本功能
-
-脚本详情页"适用于"下的网址去除默认跳转论坛搜索,改为可以点击的文本链接。点击时弹出提示:
-
-- 点击"确定"跳转搜索
-- 点击"取消"直接跳转到网站
-
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-
-## 版本更新
-
-
-
-### 0.1 版本
-
-~~提供一个菜单可以修改数值点击生效方式~~
-- 0=弹出提示
-- 1=打开网址
-- 2=在论坛搜索
-
-
-
-### 0.6 版本
-新增在脚本详情页下方增加一个更改跳转方式的选择框。
-
-
-
-
-### 0.7 版本
-新增大人的叉子
-
-
-
-### 0.8 版本(2024 年 06 月 09 日 06:17:02)
-
-- 移除弹出提示,改为显示窗口,有“跳转,搜索,复制”三个操作
-- 移除更改点击行为时弹出提示,改为 toast 通知
-- 新增链接新窗口打开选项,默认为当前页面跳转
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
${linkText} 操作
- - - - ` - document.body.appendChild(dialogBox) - - let dialogInitialX, dialogInitialY, initialX, initialY - dialogBox.addEventListener('mousedown', onMouseDown) - dialogBox.addEventListener('touchstart', onTouchStart) - - function onMouseDown(event) { - dialogInitialX = dialogBox.offsetLeft - dialogInitialY = dialogBox.offsetTop - initialX = event.clientX - initialY = event.clientY - document.addEventListener('mousemove', onMouseMove) - document.addEventListener('mouseup', onMouseUp) - } - - function onTouchStart(event) { - dialogInitialX = dialogBox.offsetLeft - dialogInitialY = dialogBox.offsetTop - initialX = event.touches[0].clientX - initialY = event.touches[0].clientY - document.addEventListener('touchmove', onTouchMove) - document.addEventListener('touchend', onTouchEnd) - } - - function onMouseMove(event) { - const deltaX = event.clientX - initialX - const deltaY = event.clientY - initialY - dialogBox.style.left = dialogInitialX + deltaX + 'px' - dialogBox.style.top = dialogInitialY + deltaY + 'px' - } - - function onTouchMove(event) { - const deltaX = event.touches[0].clientX - initialX - const deltaY = event.touches[0].clientY - initialY - dialogBox.style.left = dialogInitialX + deltaX + 'px' - dialogBox.style.top = dialogInitialY + deltaY + 'px' - } - - function onMouseUp() { - document.removeEventListener('mousemove', onMouseMove) - document.removeEventListener('mouseup', onMouseUp) - } - - function onTouchEnd() { - document.removeEventListener('touchmove', onTouchMove) - document.removeEventListener('touchend', onTouchEnd) - } - - document.getElementById('linkTextSpan').style.pointerEvents = 'none' - document.getElementById('closeBtn').addEventListener('click', function () { - document.body.removeChild(dialogBox) - }) - - document.getElementById('copyLinkBtn').addEventListener('click', function () { - const linkText = document.getElementById('linkTextSpan').innerText - const tempTextarea = document.createElement('textarea') - tempTextarea.value = linkText - document.body.appendChild(tempTextarea) - tempTextarea.select() - document.execCommand('copy') - document.body.removeChild(tempTextarea) - document.body.removeChild(dialogBox) - Toast('文本已复制到剪贴板!', 1000) - }) - - document.getElementById('forumSearchBtn').addEventListener('click', function () { - const newUrl = `https://${location.host}/zh-CN/scripts/by-site/${linkText}` - navigateTo(newUrl, useWindowOpen) - document.body.removeChild(dialogBox) - }) - - document.getElementById('openUrlBtn').addEventListener('click', function () { - const originalUrl = `https://${linkText.replace(/\d+/g, '')}` - navigateTo(originalUrl, useWindowOpen) - document.body.removeChild(dialogBox) - }) - } else if (linkBehavior === 1) { - const originalUrl = `https://${linkText.replace(/\d+/g, '')}` - navigateTo(originalUrl, useWindowOpen) - } else if (linkBehavior === 2) { - const newUrl = `https://${location.host}/zh-CN/scripts/by-site/${linkText}` - navigateTo(newUrl, useWindowOpen) - } - } - - const appliesToSection = document.querySelector('dt.script-show-applies-to') - if (appliesToSection) { - const changeConfigText = document.createElement('span') - changeConfigText.textContent = '[适用于] ' - changeConfigText.style.fontWeight = 'bold' - - const checkboxLabel = document.createElement('label') - checkboxLabel.textContent = '新窗口打开' - checkboxLabel.style.marginLeft = '10px' - - const checkboxInput = document.createElement('input') - checkboxInput.type = 'checkbox' - checkboxInput.checked = useWindowOpen - checkboxInput.style.marginRight = '5px' - - checkboxInput.addEventListener('change', function () { - useWindowOpen = checkboxInput.checked - GM_setValue('useWindowOpen', useWindowOpen) - }) - - checkboxLabel.appendChild(checkboxInput) - - const selectList = document.createElement('select') - selectList.style.width = '7em' - const options = [ - { value: 0, text: '弹出提示' }, - { value: 1, text: '打开网址' }, - { value: 2, text: '论坛搜索' } - ] - options.forEach(option => { - const optionElement = document.createElement('option') - optionElement.textContent = option.text - optionElement.value = option.value - if (linkBehavior === option.value) { - optionElement.selected = true - } - selectList.appendChild(optionElement) - }) - selectList.addEventListener('change', function () { - linkBehavior = parseInt(selectList.value) - GM_setValue('linkBehavior', linkBehavior) - Toast(`点击"适用于"网址已设置为: ${options.find(option => option.value === linkBehavior).text}`, 1000) - }) - - appliesToSection.parentElement.appendChild(changeConfigText) - appliesToSection.parentElement.appendChild(selectList) - appliesToSection.parentElement.appendChild(checkboxLabel) - } -})(); - diff --git a/Script details/greasyfork-markdown-toolbar/README.md b/Script details/greasyfork-markdown-toolbar/README.md deleted file mode 100644 index 5f0cc774d..000000000 --- a/Script details/greasyfork-markdown-toolbar/README.md +++ /dev/null @@ -1,201 +0,0 @@ - -
-
-
-
-
-「 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍 」
-Download:Github | ⭐Greasy - Fork
新增: 谷歌快速翻译选中的文本到英格里斯
可在脚本设置翻译到语言:var translate = "en".

DOMContentLoaded 有时会与其他脚本冲突,导致监听失败。已更改为 load
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-**注意事项:**
-
-- 如果您遇到脚本问题,请在 [repo](https://github.com/darkred/Userscripts/issues) 中报告,始终欢迎 PR。
-- 另外,请注意,我并没有自己编写脚本:
- 我付出了努力,使由其他人编写的、比我更有经验的脚本在新的 GF 布局中正常工作。
- 我的目标是恢复其功能,仅此而已。
-- `.markup_choice` 单选按钮是网站的,而不是脚本的!
- 
-- 已知问题:
- - 目前用于在切换到预览标签时隐藏工具栏的方法不幸存在缺陷:
- 有时工具栏可能没有隐藏,或者之后没有恢复。
- 并且它被隐藏得比预期更早:点击预览时立即隐藏 - 而不是当预览标签本身获得红色焦点时才隐藏。
-
-**截图:**(见附件)
-
-如果您有任何错误、修复建议或创意,请在我的 [GitHub repo](https://github.com/darkred/Userscripts) 上报告。
-
-
-
-
-
-
-
-
-
-
-
-## 使用帮助
-
-推荐浏览器和脚本管理器:
-
-- **Greasemonkey + Waterfox**
-- **Tampermonkey/Violentmonkey + Firefox**
-- **Tampermonkey/Violentmonkey + Chrome**
-- **Userscripts + ios Safari**
-- **Violentmonkey/KiWiBrowser + Android**
-
-**如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction 」
-Download:Github | ⭐Greasy - Fork
New: Quickly translate selected text from Google to Inglis
You can set the translation to language in the script:var translate = "en".

Revise: GreasyFork markdown
-DOMContentLoaded Sometimes conflicts with other scripts,Cause monitoring to fail。changed to load
-
-
-> ### 🔍you may be looking forGreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-## Help
-
-Recommended browsers and script managers:
-
-- **Greasemonkey + Waterfox**
-- **Tampermonkey/Violentmonkey + Firefox**
-- **Tampermonkey/Violentmonkey + Chrome**
-- **Userscripts + ios Safari**
-- **Violentmonkey/KiWiBrowser + Android**
-
-**If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
', '') - btnMake(n, ''+__('标记')+'', __('高亮显示选中文本'), '', '') - btnMake(n, '' + __('I') + '', __('Italic'), '*') - btnMake(n, '
-
-
-
-
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-# Greasyfork ranks
-
-**中文:**
-- 在脚本列表名称后面显示脚本评分
-
-**繁体:**
-- 在腳本列表名稱後面添加腳本評分
-
-**English:**
-- Display the script rating after the script list name
-
-**French:**
-- Afficher la note du script après le nom de la liste de scripts
-
-**Japanese:**
-- スクリプトリスト名の後にスクリプト評価を表示する
-
-**Korean:**
-- 스크립트 목록 이름 뒤에 스크립트 평가 표시
-
-
-
-## photo:
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-# GreasyFork SleazyFork 谷歌搜索脚本
-
-
-
-## 描述
-
-**GreasyFork SleazyFork 谷歌搜索脚本**是一款用户脚本,通过利用谷歌搜索增强了 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 上的脚本搜索功能。此脚本允许您使用谷歌强大的搜索引擎来搜索脚本,提供更准确和全面的搜索结果。
-
-
-
-## 用法
-
-目前只有两个功能。只需在主页面或者侧边搜索框 [https://greasyfork.org/](https://greasyfork.org/) [https://sleazyfork.org/](https://sleazyfork.org/)上输入并搜索。
-
-1. `g YouTube`
- > 它将使用谷歌搜索 Greasy Fork 上与 "YouTube" 相关的脚本。
-
-2. `youtube.com tamer`
- > 它将使用 Greasy Fork 搜索与 "tamer" 相关的脚本,搜索范围限定在 "youtube.com" 域名内。
-
-
-
-## 特点
-
-- **改进的搜索**:此用户脚本集成了谷歌搜索,而不是仅仅依赖于 GreasyFork 内置的搜索功能,从而增强了脚本搜索体验。
-- **谷歌搜索语法**:您可以使用谷歌支持的高级搜索操作符和语法来优化您的搜索查询。这包括排除特定类型的页面以及将搜索范围限制在 GreasyFork 的脚本页面内。
-- **准确且全面的结果**:通过利用谷歌搜索的强大功能,您可以获得更准确和广泛的搜索结果,从而提高找到所需脚本的几率。
-- **易于使用**:此用户脚本无缝集成到 [GreasyFork.org](https://greasyfork.org/) [SleazyFork.org](https://sleazyfork.org/) 网站,增强了现有搜索输入框的功能。您只需在查询前输入 "g "(例如,"g 脚本名称")即可启动谷歌搜索。
-
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-
-## 兼容性
-
-**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),感谢作者的勤劳智慧
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 Search using Google GreasyFork and SleazyFork upper script 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-# 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
-
-Currently, there are only two features. Just type and search on the main page or the side search box [https://greasyfork.org/](https://greasyfork.org/) [https://sleazyfork.org/](https://sleazyfork.org/).
-
-1. `g YouTube`
- > It will use Google to search the scripts with "YouTube" in Greasy Fork.
-
-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
-
-- **Improved Search**: Instead of relying solely on GreasyFork's built-in search functionality, this user script integrates Google Search to enhance the script search experience.
-- **Google Search Syntax**: You can use advanced search operators and syntax supported by Google to refine your search queries. This includes options such as excluding specific types of pages and limiting the search to GreasyFork's script pages.
-- **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
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-
-
-## 功能说明
-
-增强GreasyFork的导航栏, 添加用户列表、用户收藏、用户控制台等等....
-
----
-
-
-
-## 其他说明
-
-增加的项目较多,会出现拥挤导航栏,可以使用脚本进行修复 [GreasyFork Header Style Fix](https://greasyfork.org/scripts/473269)
-强烈建议使用 **[GreasyFork 糊裱匠](https://greasyfork.org/zh-CN/scripts/497346)** 可以修复导航栏并且美化导航栏
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
----
-
-
-
-## 感谢
-
-脚本修改自用户 **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)** 的脚本 [ GreasyFork: User Control Panel Button](https://greasyfork.org/scripts/475796) 感谢原作者 **CY Fung** 的**勤劳**与**智慧**
-
-
-
----
-
-
-
-## 图片
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 EnhancegreasyforkNavigation bar,Add user list,User console etc. 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-# GreasyFork: Add categories to navigation bar
-
----
-
-
-## Function Description
-
-EnhanceGreasyForknavigation bar, Add user list、User favorites、User console etc.....
-
-
----
-
-
-
-## other instructions
-
-More items added,A crowded navigation bar will appear,Can be fixed using script [GreasyFork Header Style Fix](https://greasyfork.org/scripts/473269)
-
-Strongly recommended to use **[GreasyFork Glue craftsman](https://greasyfork.org/zh-CN/scripts/497346)** Can repair and beautify the navigation bar
-
----
-
-
-
-## grateful
-
-Script modified from user **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)** script [ GreasyFork: User Control Panel Button](https://greasyfork.org/scripts/475796) Thanks to the original author **CY Fung** of**Diligent**and**wisdom**
-
-
-
----
-
-
-
-## picture
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-「 향상시키다greasyfork네비게이션 바,사용자 목록 추가,사용자 콘솔 등 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-# GreasyFork: 탐색 표시줄에 카테고리 추가
-
----
-
-
-
-## 기능 설명
-
-향상시키다GreasyFork네비게이션 바, 사용자 목록 추가、사용자 즐겨찾기、사용자 콘솔 등....
-
-
----
-
-
-
-## 기타 지침
-
-더 많은 항목이 추가되었습니다,혼잡한 내비게이션 바가 나타납니다.,스크립트를 사용하여 수정 가능 [GreasyFork Header Style Fix](https://greasyfork.org/scripts/473269)
-
-사용을 적극 권장합니다. **[GreasyFork 반죽액자장인](https://greasyfork.org/zh-CN/scripts/497346)** 네비게이션 바를 수리하고 아름답게 할 수 있습니다.
-
----
-
-
-
-## 고마워하는
-
-사용자가 수정한 스크립트 **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)** 적각본 [ GreasyFork: User Control Panel Button](https://greasyfork.org/scripts/475796) 원작자님 감사합니다 **CY Fung** ~의**성실한**그리고**지혜**
-
-
----
-
-
-
-## 그림
-
-
-
-
-
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트
-> - [**GreasyFork향상에 적합**](https://greasyfork.org/scripts/497317): 추가할 링크에 적합한 스크립트 세부정보 페이지가 추가됩니다.,웹페이지 복사,타이어 검색
-> - [**GrreasyFork 사용자 게시 스크립트 데이터 시각화**](https://greasyfork.org/scripts/508968): 사용Chart.js사용자 스크립트 데이터 획득 및 시각화,그리고 사용자의 개인 홈페이지에 차트를 생성하여 아래와 같이 자세한 설치 현황을 표시합니다.
-> - [**GreaysFork 향상시키다 WebHook동기화 설정**](https://greasyfork.org/scripts/506717): 이 스크립트를 사용하면 스크립트 동기화 정보를 빠르게 입력할 수 있습니다.,여러 국가의 언어 코드를 일괄 추가하세요.,선택 상자를 하나씩 클릭하여 해당 URL로 이동하는 대신。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 포럼에서 기본적으로 사용됨 Markdown 체재,형식 도움말 링크를 추가하고 Markdown 툴바 소개
-> - [**GreasyFork 스크립트 등급 표시**](https://greasyfork.org/scripts/501119): 스크립트 목록에 평가 점수 추가
-> - [**GreasyFork 고급 검색**](https://greasyfork.org/scripts/505215): Google을 사용하여 검색 GreasyFork 그리고 SleazyFork 상적 각본
-> - [**GreasyFork 네비게이션 바향상시키다**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,사용자 목록 추가,사용자 콘솔 등
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 향상시키다greasyfork,코드 복사,스크립트 다운로드,초 단위의 정확한 시간,홈페이지 정리,원클릭 보고에 대해 논의,스크립트 목록 점프 코드 추가 다운로드 코드 보기 및 코드 참조 파일 표시,스크립트 아이콘 표시,성인용 스크립트 및 기타 작업으로 이동
-> - [**Greasyfork 알림 도우미**](https://greasyfork.org/scripts/506345): 귀하의 스크립트나 귀하가 참여하고 있는 토론에 대한 새로운 답변이 있는 경우,스크립트는 웹 페이지의 모달 창에 최신 토론 내용을 표시합니다.。
-> - [**Script Finder그리스 원숭이 스크립트 찾기**](https://greasyfork.org/scripts/498904): Script Finder 사용자 스크립트입니다(userscript),모든 웹사이트에서 사용자 스크립트를 찾고 관리하는 데 도움이 됩니다.
-
-
-
-
-
-
-
-## 돕다
-
- 권장 브라우저 및 스크립트 관리자:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **사용자 스크립트 설치 방법에 대해 더 알고 싶다면,[나를 클릭하세요](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)그래픽 교육 보기!**
-
-
-
-
-
-
-
-
-
-### 모든 게시 스크립트 보기
-
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 ChatGPT관련 스크립트
-> - [**ChatGPT코드 글꼴 크기 감소**](https://greasyfork.org/scripts/505209): 허락하다 ChatGPT 코드 글꼴 크기가 작아집니다.
-> - [**ChatGPT 聊天코드 복사단추**](https://greasyfork.org/scripts/509598): 존재하다 chatgpt.com 상단 코드 블록의 오른쪽 하단에 애니메이션을 추가합니다.“复制代码”按钮
-> - [**ChatGPT 캐릭터 카운터**](https://greasyfork.org/scripts/506166): 添加一문자计数器到输入框,로 제한됨 32732 문자。(ChatGPT 한도는 32732 个字符。)
-> - [**ChatGPT 자체 메시지 및 최대 너비 축소**](https://greasyfork.org/scripts/504901): 귀하가 보낸 긴 메시지를 자동으로 접습니다.,화면 공간 절약。채팅 창의 최대 너비를 설정할 수 있습니다.,긴 메시지가 지정된 범위를 초과하지 않도록 유지。
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 웹 관련 스크립트
-> - [**웹 페이지 작성 클립 버전 권한 관리자**](https://greasyfork.org/scripts/497403): 편집된 버전에서 웹페이지가 표시되는 것을 금지합니다.,출시용 녹색,빨간색 금지,주황색 임시 방향
-> - [**승강기CSDN로그인복사限制**](https://greasyfork.org/scripts/505207): 엿 먹어라 CSDN 登录复制,로그인하지 않고 코드 상자 내용 복사
-> - [**화려한 그라데이션으로 웹 양식을 아름답게 꾸미세요**](https://greasyfork.org/scripts/507036): 웹 페이지 테이블의 모든 열에 색상 그라데이션 미화를 자동으로 적용합니다..
-> - [**웹페이지에서 키워드 강조표시+(추천하다)**](https://greasyfork.org/scripts/498906): 웹페이지의 텍스트 강조표시
-> - [**웹 텍스트 강조 표시_미니 버전**](https://greasyfork.org/scripts/498905): 스크롤 시 동적으로 로드되는 콘텐츠를 포함하여 웹페이지에서 사용자 정의 키워드 강조 표시
-> - [**작은 창 미리보기**](https://greasyfork.org/scripts/504880): 링크 드래그 시 팝업창에서 링크 열기,열기 전에 미리보기를 제공하세요.,사용 Edge 미리 읽는 기술。동시에 작은 창을 열 때 뒤에 아크릴 효과를 추가합니다.。
-> - [**링크 밑줄 제거**](https://greasyfork.org/scripts/498625): 웹 링크에서 밑줄 제거
-> - [**위아래로 작은 스크롤 버튼**](https://greasyfork.org/scripts/497251): 페이지 오른쪽에 상하 스크롤 버튼 추가
-> - [**원터치 상하 버튼**](https://greasyfork.org/scripts/500255): 다음에서 수정됨Greasyfork사용자 스크립트 웹 페이지에 상단 및 하단 버튼 추가,긴 페이지의 상단 또는 하단으로 빠르게 이동할 수 있습니다.。 아래로 스크롤할 때 버튼 색상 변경 추가,3몇 초 내에 스크롤이 없으면 자동으로 중지됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 GitHub관련 스크립트
-> - [**GitHub정보 표시 제출HTML**](https://greasyfork.org/scripts/505830): 이 스크립트는 GitHub 제출정보는 HTML 보다,제출 세부정보를 더 명확하게 보려면。정보 목록이 자동으로 제출됩니다.、커밋 헤더와 최신 커밋 정보는 다음과 같이 변환됩니다. HTML 체재,더 나은 시각 효과와 사용자 경험 제공。
-> - [**GitHub 파일 목록 미화자**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier는 사용자 스크립트입니다.,향상시키는 데 사용됨 GitHub 창고 내 파일 표시 효과。파일과 폴더에 색상을 추가할 수 있습니다.,파일 형식 아이콘을 작은 이미지로 바꿉니다.,코드 베이스를 더 쉽게 찾아보고 관리할 수 있습니다.。
-> - [**Github 코드 언어 목록 모두 표시**](https://greasyfork.org/scripts/509889): 확장하다 Github 저장소의 언어 목록,각 언어 표시,작은 부품을 숨기는 것보다 “다른” 아래에
-> - [**GitHub 장치 승인 자동 확인**](https://greasyfork.org/scripts/508956): 존재하다GitHub인증 페이지에서는 자동으로 인증 코드를 입력하고 자동으로 확인합니다.。
-> - [**GitHub접는 사람下载**](https://greasyfork.org/scripts/505496): 다운로드 버튼 추가,특정 파일을 쉽게 다운로드할 수 있습니다. GitHub 文件夹。
-> - [**GitHub단일 파일 다운로드 및 파일 복사URL**](https://greasyfork.org/scripts/505501): 각 파일 줄 끝에 추가 버튼,원본 파일을 복사하려면 URL 그리고 파일 다운로드
-> - [**🤠 Github 어시스턴트 강화 창고 전시 크기 비활성 개발 경고 창고 내 빠른 점프用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 존재하다Github창고 보기 및 검색 시 창고 크기 표시 ,비활성 개발 경고,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 창고 목록 파일 정렬 방식을 날짜 내림차순으로 변경,최신 업데이트 파일을 편리하게 확인하세요。
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 Google관련 스크립트
-> - [**Google 고급 검색**](https://greasyfork.org/scripts/502652): 이것은 Google 고급 검색 양식에 대한 사용자 스크립트 추가。페이지 상단에 숨길 수 있는 고급 검색 양식을 추가합니다.,보다 정확하게 정보를 검색할 수 있습니다.。
-> - [**Google 특정 사이트 검색 및 차단**](https://greasyfork.org/scripts/500262): 검색 엔진 결과에서 특정 사이트 차단,사용자가 원치 않는 검색 결과를 필터링하도록 지원。 사용자 정의 입력 차단 사이트。체재-zhihu -baidu Google 검색 콘텐츠를 차단하는 데 사용됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 GreasyFork관련 스크립트
-> - [**GreasyFork향상에 적합**](https://greasyfork.org/scripts/497317): 추가할 링크에 적합한 스크립트 세부정보 페이지가 추가됩니다.,웹페이지 복사,타이어 검색
-> - [**GrreasyFork 사용자 게시 스크립트 데이터 시각화**](https://greasyfork.org/scripts/508968): 사용Chart.js사용자 스크립트 데이터 획득 및 시각화,그리고 사용자의 개인 홈페이지에 차트를 생성하여 아래와 같이 자세한 설치 현황을 표시합니다.
-> - [**GreaysFork 향상시키다 WebHook동기화 설정**](https://greasyfork.org/scripts/506717): 이 스크립트를 사용하면 스크립트 동기화 정보를 빠르게 입력할 수 있습니다.,여러 국가의 언어 코드를 일괄 추가하세요.,선택 상자를 하나씩 클릭하여 해당 URL로 이동하는 대신。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 포럼에서 기본적으로 사용됨 Markdown 체재,형식 도움말 링크를 추가하고 Markdown 툴바 소개
-> - [**GreasyFork 스크립트 등급 표시**](https://greasyfork.org/scripts/501119): 스크립트 목록에 평가 점수 추가
-> - [**GreasyFork 고급 검색**](https://greasyfork.org/scripts/505215): Google을 사용하여 검색 GreasyFork 그리고 SleazyFork 상적 각본
-> - [**GreasyFork 네비게이션 바향상시키다**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,사용자 목록 추가,사용자 콘솔 등
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 향상시키다greasyfork,코드 복사,스크립트 다운로드,초 단위의 정확한 시간,홈페이지 정리,원클릭 보고에 대해 논의,스크립트 목록 점프 코드 추가 다운로드 코드 보기 및 코드 참조 파일 표시,스크립트 아이콘 표시,성인용 스크립트 및 기타 작업으로 이동
-> - [**Greasyfork 알림 도우미**](https://greasyfork.org/scripts/506345): 귀하의 스크립트나 귀하가 참여하고 있는 토론에 대한 새로운 답변이 있는 경우,스크립트는 웹 페이지의 모달 창에 최신 토론 내용을 표시합니다.。
-> - [**Script Finder그리스 원숭이 스크립트 찾기**](https://greasyfork.org/scripts/498904): Script Finder 사용자 스크립트입니다(userscript),모든 웹사이트에서 사용자 스크립트를 찾고 관리하는 데 도움이 됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 성인 각본
-> - [**MiSSAV자동 로그인**](https://greasyfork.org/scripts/505325): 발각 MisssAV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-> - [**MissAV컬렉션 관리자**](https://greasyfork.org/scripts/497682): miss재생목록 백업,사진 다운로드 및 비디오 정보 저장 지원.로컬 웹페이지 내보내기 수출 지원webdav
-> - [**TissAV자동 로그인**](https://greasyfork.org/scripts/506528): 발각 TissAV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-> - [**JableTV자동 로그인**](https://greasyfork.org/scripts/506730): 발각 JableTV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 자동 번역
-> - [**외국어 터미네이터**](https://greasyfork.org/scripts/504890): 중국어가 아닌 문자 인식,길이가 그 이상인 경우 5 그리고 번역된 텍스트에는 중국어가 포함되어 있지 않습니다.,그럼 중국어로 바꾸세요,접근 가능해야 함google회로망
-> - [**웹페이지 번역——중국어로 자동 번역됨**](https://greasyfork.org/scripts/505208): 중국어가 아닌 웹페이지의 오른쪽 하단 모서리를 제공합니다.(왼쪽 하단으로 조정 가능)추가하다 google 번역 아이콘,이 버전은 중국어 번역 버전입니다.,외국어만 중국어로 번역하세요,자동 번역 추가
-
-
-
-
-
-
-
-
-
-# GreasyFork: 導航列增加分類
-
----
-
-
-
-## 功能說明
-
-增強GreasyFork的導覽列, 新增使用者列表、用戶收藏、用戶控制台等等....
-
-
----
-
-
-
-## 其他說明
-
-增加的項目較多,會出現擁擠導覽列,可以使用腳本進行修復 [GreasyFork Header Style Fix](https://greasyfork.org/scripts/473269)
-
-強烈建議使用 **[GreasyFork 膠水工匠](https://greasyfork.org/zh-CN/scripts/497346)** 可以修復導覽列並且美化導覽列
-
----
-
-
-
-## 感謝
-
-腳本修改自用戶 **[𝖢𝖸 𝖥𝗎𝗇𝗀](https://greasyfork.org/zh-CN/users/371179)** 腳本 [ GreasyFork: User Control Panel Button](https://greasyfork.org/scripts/475796) 感謝原作者 **CY Fung** 的**勤勞**與**智慧**
-
-
----
-
-
-
-## 圖片
-
-
-
-
-
-
-
-
-
-
-
-
-
-> ### 🔍你可能在找GreasyFork相關腳本
-> - [**GreasyFork適用於增強**](https://greasyfork.org/scripts/497317): 腳本詳情頁增加適用於連結增加點擊開啟網頁,複製網頁,輪胎搜尋
-> - [**GrreasyFork 用戶發布的腳本資料視覺化**](https://greasyfork.org/scripts/508968): 使用Chart.js獲取和可視化獲取用戶腳本數據,並在使用者個人主頁產生圖表在下方顯示詳細安裝狀況
-> - [**GreaysFork 增強 WebHook同步設定**](https://greasyfork.org/scripts/506717): 這個腳本可以幫助你快速輸入腳本同步訊息,並批量增加多個國家的語言代碼,而不用一個個地點擊選擇框再去對應的網址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在論壇預設使用 Markdown 格式,添加格式幫助連結及 Markdown 工具列紹
-> - [**GreasyFork 顯示腳本評分**](https://greasyfork.org/scripts/501119): 腳本清單新增評價分數
-> - [**GreasyFork 進階搜尋**](https://greasyfork.org/scripts/505215): 使用谷歌搜尋 GreasyFork 和 SleazyFork 上體文字
-> - [**GreasyFork 導覽列增強**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用戶列表,使用者控制台等
-> - [**Greasyfork膠水工匠**](https://greasyfork.org/scripts/497346): 增強greasyfork,複製程式碼,腳本下載,精確時間到秒,主頁清理,討論一鍵舉報,腳本清單跳轉代碼添加下載 美化查看程式碼顯示程式碼引用文件,顯示腳本圖示,跳轉成人腳本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 當你的腳本或你參與的討論有新回應時,腳本會在網頁上以模態視窗顯示最新的討論內容。
-> - [**Script Finder油猴腳本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一個使用者腳本(userscript),它可以幫助你在任何網站上尋找和管理使用者腳本
-
-
-
-
-
-
-
-## 使用幫助
-
- 推薦瀏覽器和腳本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多關於如何安裝使用者腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看圖文教學!**
-
-
-
-
-
-
-
-
-
-### 查看所有發布腳本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相關腳本
-> - [**ChatGPT程式碼字體縮小**](https://greasyfork.org/scripts/505209): 讓 ChatGPT 程式碼字體變小
-> - [**ChatGPT 聊天複製程式碼按鈕**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代碼區塊的右下角添加一個帶有動畫的“复制代码”按钮
-> - [**ChatGPT 字元計數器**](https://greasyfork.org/scripts/506166): 添加一個字元计数器到输入框,限制為 32732 個字元。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折疊自己訊息和最大寬度**](https://greasyfork.org/scripts/504901): 自動折疊由你發送的長訊息,節省螢幕空間。允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。
-
-
-
-> ### 🔍你可能在找 網頁相關腳本
-> - [**網頁寫入剪輯版授權管理員**](https://greasyfork.org/scripts/497403): 禁止網頁向剪輯版拉屎,綠色為放行,紅色禁止,橙色臨時方向
-> - [**解除CSDN登入複製限制**](https://greasyfork.org/scripts/505207): 去你媽的 CSDN 登录复制,無需登入即可複製程式碼框內容
-> - [**絢麗漸層美化網頁表格**](https://greasyfork.org/scripts/507036): 自動為網頁上的表格所有欄位套用顏色漸層美化.
-> - [**網頁高亮關鍵字+(推薦)**](https://greasyfork.org/scripts/498906): 對網頁上的文字進行高亮顯示
-> - [**高亮網頁文本_迷你版**](https://greasyfork.org/scripts/498905): 在網頁上自訂關鍵字突出顯示包括滾動時動態載入的內容
-> - [**小視窗預覽**](https://greasyfork.org/scripts/504880): 拖曳連結時在彈出視窗中開啟鏈接,並在打開前提供預覽,使用 Edge 的預讀技術。同時在小窗口打開時在背後添加壓克力效果。
-> - [**去除連結下劃線**](https://greasyfork.org/scripts/498625): 去除網頁連結的下劃線
-> - [**上下滾動小按鈕**](https://greasyfork.org/scripts/497251): 頁面右側新增上下滾動按鈕
-> - [**一鍵置頂和置底按鈕**](https://greasyfork.org/scripts/500255): 修改自Greasyfork使用者腳本 為網頁新增置頂和置底按鈕,方便在長頁面中快速移動到頂部或底部。 增加向下滾動時按鈕變色,3秒內無滾動自動停止
-
-
-
-> ### 🔍你可能在找 GitHub相關腳本
-> - [**GitHub提交資訊顯示HTML**](https://greasyfork.org/scripts/505830): 該腳本將 GitHub 上的提交資訊轉化為 HTML 視圖,以更清晰地查看提交詳情。它會自動將提交資訊列表、提交頭部和最新提交資訊轉化為 HTML 格式,提供更佳的視覺效果與使用者體驗。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件清單美化器是一個使用者腳本,用於增強 GitHub 倉庫中的文件顯示效果。它可以為文件和資料夾添加顏色,並將文件類型圖示替換為小圖像,使得程式碼庫更加易於瀏覽和管理。
-> - [**Github 代碼語言列表顯示全部**](https://greasyfork.org/scripts/509889): 擴充 Github 儲存庫上的語言列表,顯示每種語言,而不是將小部分隱藏在 “其他” 下
-> - [**GitHub 自動確認設備授權**](https://greasyfork.org/scripts/508956): 在GitHub授權頁面自動輸入授權碼與自動確認。
-> - [**GitHub資料夾下载**](https://greasyfork.org/scripts/505496): 新增一個下載按鈕,允許輕鬆下載特定的 GitHub 文件夹。
-> - [**GitHub下載單一文件和複製文件URL**](https://greasyfork.org/scripts/505501): 在每個文件行的末尾新增按鈕,以複製原始文件 URL 和下載文件
-> - [**🤠 Github 增強助手 倉庫顯示大小 不活躍開發警告 倉庫內快捷跳轉用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看倉庫和搜尋倉庫時顯示倉庫大小 ,不活躍開發警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 倉庫列表文件排序方式改為日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相關腳本
-> - [**Google 進階搜尋**](https://greasyfork.org/scripts/502652): 這是一個為 Google 新增進階搜尋表單的使用者腳本。它能在頁面頂部添加一個可隱藏的高級搜尋表單,使您能夠更精確地搜尋訊息。
-> - [**Google 搜尋屏蔽指定站點**](https://greasyfork.org/scripts/500262): 在搜尋引擎結果中封鎖特定的站點,幫助用戶過濾掉不需要的搜尋結果。 自訂輸入屏蔽站點。格式-zhihu -baidu 用於封鎖谷歌搜尋內容
-
-
-
-> ### 🔍你可能在找 GreasyFork相關腳本
-> - [**GreasyFork適用於增強**](https://greasyfork.org/scripts/497317): 腳本詳情頁增加適用於連結增加點擊開啟網頁,複製網頁,輪胎搜尋
-> - [**GrreasyFork 用戶發布的腳本資料視覺化**](https://greasyfork.org/scripts/508968): 使用Chart.js獲取和可視化獲取用戶腳本數據,並在使用者個人主頁產生圖表在下方顯示詳細安裝狀況
-> - [**GreaysFork 增強 WebHook同步設定**](https://greasyfork.org/scripts/506717): 這個腳本可以幫助你快速輸入腳本同步訊息,並批量增加多個國家的語言代碼,而不用一個個地點擊選擇框再去對應的網址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在論壇預設使用 Markdown 格式,添加格式幫助連結及 Markdown 工具列紹
-> - [**GreasyFork 顯示腳本評分**](https://greasyfork.org/scripts/501119): 腳本清單新增評價分數
-> - [**GreasyFork 進階搜尋**](https://greasyfork.org/scripts/505215): 使用谷歌搜尋 GreasyFork 和 SleazyFork 上體文字
-> - [**GreasyFork 導覽列增強**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用戶列表,使用者控制台等
-> - [**Greasyfork膠水工匠**](https://greasyfork.org/scripts/497346): 增強greasyfork,複製程式碼,腳本下載,精確時間到秒,主頁清理,討論一鍵舉報,腳本清單跳轉代碼添加下載 美化查看程式碼顯示程式碼引用文件,顯示腳本圖示,跳轉成人腳本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 當你的腳本或你參與的討論有新回應時,腳本會在網頁上以模態視窗顯示最新的討論內容。
-> - [**Script Finder油猴腳本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一個使用者腳本(userscript),它可以幫助你在任何網站上尋找和管理使用者腳本
-
-
-
-> ### 🔍你可能在找 成人劇本
-> - [**MiSSAV自動登入**](https://greasyfork.org/scripts/505325): 偵測 MisssAV 狀態,並且在未登入時自動登入
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss單張備份,支援下載圖片保存影片訊息.導出本地網頁 支援導出到webdav
-> - [**TissAV自動登入**](https://greasyfork.org/scripts/506528): 偵測 TissAV 狀態,並且在未登入時自動登入
-> - [**JableTV自動登入**](https://greasyfork.org/scripts/506730): 偵測 JableTV 狀態,並且在未登入時自動登入
-
-
-
-> ### 🔍你可能在找 自動翻譯
-> - [**外語終結者**](https://greasyfork.org/scripts/504890): 識別非中文字符,如果長度大於 5 且翻譯文中不含中文,則替換為中文,需要可訪問google的網路
-> - [**網頁翻譯——自動翻譯為中文**](https://greasyfork.org/scripts/505208): 給每個非中文的網頁右下角(可以調整到左下角)添加一個 google 翻譯圖示,此版本為中文翻譯版本,只把外文翻譯為中文,新增自動翻譯
-
-
-
-
-
-
-
-「 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况 」
-Download:Github | ⭐Greasy - Fork
新增: •增加自己使用的一些小功能.表格显示创建与更新日期 Y轴数值高亮 点击柱状图跳转对应脚本 脚本中的OPENLINK 为0不跳转,1跳转前有提示,2直接跳转
| 新增 | -新增演示 | -
|---|---|
| - | - |
![]() |
-![]() |
-
修改: •修改chart.js为首次加载,加载完成后保存在localStorage无需每次重复加载
修复: • 修复图表一些问题.
| 修改前 | -修改后 | -
|---|---|
| - | - |
![]() |
-![]() |
-
![]() |
-![]() |
-
增加: •增加了原作者138 Aspen另外脚本Displays the number of scripts published by the user, the total number of installations里面的从当前网页获取用户数据,可以在脚本内或者脚本菜单中设置从JSON数据获取还是从当前页面获取脚本数据默认向GreasyFrok下载用户数据
-修改: •~~修改chart.js为@require 加载,无需每次重复加载~~Greasyfork不允许使用未经批准的外部脚本
-修改: •修改从网络获取用户数据时,按照总安装量由高到低排序
-修改: •修改寻找用户ID的表达式为/(\d+)/,兼容Greasyfork 糊裱匠清除链接无用字符功能
-
-
-## 描述
-
-该用户脚本使用 Chart.js 库从 GreasyFork 上的用户脚本页面中提取和可视化脚本数据。它提供了以下功能:
-
-- **数据提取**: 从用户的脚本页面中提取安装次数数据,包括总安装次数和每日安装次数。
-- **数据可视化**: 使用图表(条形图)展示每个脚本的总安装次数和每日安装次数。
-- **数据展示**: 在图表下方显示总安装次数、每日安装总数以及已发布脚本的数量。
-
-
-
-## 功能
-
-1. **获取用户数据**: 从用户脚本页面中提取相关数据。
-2. **数据可视化**: 使用 Chart.js 绘制图表来展示脚本的安装数据。
-3. **展示统计信息**: 在图表下方显示总的每日安装次数、总安装次数和已发布脚本的数量。
-
-
-
-## 安装
-
-1. **安装 Greasemonkey 或 Tampermonkey 插件**: 请确保您的浏览器已安装 Greasemonkey 或 Tampermonkey 插件。
-2. **添加脚本**:
- - 点击上方绿色安装按钮进行安装
-
-
-
-## 使用
-
-1. **访问 GreasyFork 用户脚本页面**: 打开任意用户的脚本页面,例如 [https://greasyfork.org/users/1169082](https://greasyfork.org/users/1169082)。
-2. **查看图表和统计数据**: 脚本将在用户的个人页面加载后自动生成并展示数据图表和统计信息。
-3. **从网络或者从当前页面加载**: 脚本在代码顶端提供了一个设置,当为`true`时,从当前网页获取,为`false`,向 GreasyFrok 下载用户数据`JSON`
-
-
-
-## 支持
-
-如遇到问题或需要支持,请访问 [GitHub 问题页面](https://github.com/ChinaGodMan/UserScripts/issues) 提交问题。
-
-## 贡献
-
-此脚本修改自[138 Aspen](https://greasyfork.org/zh-CN/users/1177387)发布的脚本[GrreasyFork User Script Data Visualization](https://greasyfork.org/zh-CN/scripts/499755)
-修改说明:
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below. 」
-Download:Github | ⭐Greasy - Fork
New: •Add some small functions for your own use.Table shows creation and update dates YAxis value highlighting Click on the histogram to jump to the corresponding script Medium scriptOPENLINK for0No jump,1There is a prompt before jumping,2Jump directly
| New | -Add demo | -
|---|---|
| - | - |
![]() |
-![]() |
-
Revise: •Revisechart.jsLoad for the first time,After loading is completed, save it inlocalStorageNo need to reload every time
repair: • Fix some chart issues.
| Before modification | -After modification | -
|---|---|
| - | - |
![]() |
-![]() |
-
![]() |
-![]() |
-
Increase: •Added original author138 Aspenadditional scriptDisplays the number of scripts published by the user, the total number of installationsInside, get user data from the current web page,It can be set within the script or in the script menu.JSONData acquisition or script data acquisition from the current page defaults toGreasyFrokDownload user data
-Revise: •~~Revisechart.jsfor@require load,No need to reload every time~~GreasyforkUnapproved external scripts are not allowed
-Revise: •When modifying user data obtained from the network,Sort by total installs from high to low
-Revise: •Modify search for usersIDThe expression of/(\d+)/,compatibleGreasyfork Glue craftsmanClear link useless characters function
-
-
-## describe
-
-This userscript uses Chart.js Ku Cong GreasyFork Extract and visualize script data from user script pages on。It provides the following functions:
-
-- **Data extraction**: Extract install count data from user’s script page,Includes total installs and daily installs。
-- **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
-
-1. **Get user data**: Extract relevant data from user script page。
-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
-
-1. **Install Greasemonkey or Tampermonkey plug-in**: Please make sure your browser has it installed Greasemonkey or Tampermonkey plug-in。
-2. **Add script**:
- - Click the green install button above to install
-
-
-
-## use
-
-1. **access GreasyFork User script page**: Open any user’s script page,For example [https://greasyfork.org/users/1169082](https://greasyfork.org/users/1169082)。
-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
-
-If you encounter problems or need support,Please visit [GitHub Question page](https://github.com/ChinaGodMan/UserScripts/issues) Submit a question。
-
-## contribute
-
-This script is modified from[138 Aspen](https://greasyfork.org/zh-CN/users/1177387)published script[GrreasyFork User Script Data Visualization](https://greasyfork.org/zh-CN/scripts/499755)
-Modification instructions:
-
-> ### 🔍you may be looking forGreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-「 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作 」
-Download:Github | ⭐Greasy - Fork
新增: • 个人主页添加 隐藏私信。
新增: • 脚本详情页,所有脚本列表添加 脚本评分。
修复: • 修复兼容性问题。
-新增: • 在脚本列表顶部添加下载按钮,点击下载所有脚本。
-优化: • 优化脚本列表图标显示位置。
-优化: • 优化设置界面代码。
-修复: • 修正脚本设置界面在移动设备上显示错乱问题。
-新增: • 增加越南语言包,感谢网友 RenjiYuusei 翻译。
-新增: • 增加 WebHook 页快捷跳转脚本管理。
-修复: • 修复监听规则变化导致动态监听失败。
-新增: • 监听规则增加:user-script-list-section browse-script-list。
优化: • 复制 GreasyFork 优化 中的新 CSS。
-新增:
-• 增加 GreasyFork 优化 中的脚本双列显示。
-• 增加 GreasyFork 优化 中的美化导航栏。
-• 增加固定网站侧边操作栏。
新增: • 完全的繁体语言支持。
-新增:
-• 增加侧边导航栏开关。
-• 增加图片代理(开启时不兼容 GreasyFork 优化 中的图片浏览)。
-修复:
-• 修复在移动设备上浏览图片超出浏览器外的问题。
-• 修改在编辑代码时自动勾选美化。
新增:
-• 添加导航栏展开 "更多"。
-• 增加 Greasy Fork 增强 中的侧边导航栏。
-优化: • 完善对多语言的支持。
新增: • 增加自动登录 GreasyFork 优化。
-修复: • 修复显示列表上的脚本安装状态。
-优化: • 完善对多语言的支持。
-
-
-## 脚本功能
-
-为 Greasyfork 提供各种使用功能,绝对时间,网页宽屏,脚本页增强,下载拓展,面板修复等一系列操作。该脚本从网站收集而来。
->
-
-
-
-
-
-
-
-
-
-## 功能介绍
-
-
-### 脚本详情
-
-- 切换文档视图与网页视图
-- 复制代码
-- 显示脚本图标
-- 清空图标缓存
-- 脚本历史增加安装
-- 增加下载按钮
-- 脚本代码显示行数字数
-- 按创建日期排序脚本列表
-- 复制库声明
-- 显示引用文件数
-- 复制短链接
-- 美化代码片段
-- 美化查看代码
-
-
-
-### 脚本列表
-
-- 列表显示安装下载
-- 锁定语言设置
-- 显示评分
-- 显示源码
-- 使用旧版列表
-- 显示所有语言脚本
-- 移动侧边栏
-- 按创建日期排序脚本列表
-
-
-
-### 美化控件
-
-- 控件美化
-- 美化选择框和单选框标签
-
-
-
-### 适用于
-
-- 启用增强
-- 新窗口打开
-- 显示在论坛的脚本数量
-- 详情适用于打开:
- - 论坛搜索
- - 网页打开
- - 弹出提示
-
-
-
-### 个人主页
-
-- 清理旧的主页内容
-- 主页清理的天数
-- 主页脚本添加操作
-- 隐藏近期评论
-- 主页显示统计
-
-
-
-### 导航栏
-
-- 增加发布新脚本选项
-- 跳转成人脚本
-- 修复导航栏样式
-- 在导航栏添加打开本界面
-- 导航栏对齐
-
-
-
-### 网站
-
-- 自动启用代码编辑框美化
-- 在新标签页中打开链接
-- 精确日期
-- 网站最大化浏览
-- 一键举报
-- 本地代码高亮
-- 隐藏图标
-- 显示图标
-- 灰度已阅读评论
-- 隐藏已阅读评论
-- 侧边导航栏
-- 代理用户图片
-
-
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-
-## 图片展示:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations 」
-Download:Github | ⭐Greasy - Fork
New: • Add personal homepage Hide private messages。
New: • Script details page,All scripts list added Script Rating。
repair: • Fix compatibility issues。
-New: • Add a download button at the top of the script list,Click to download all scripts。
-optimization: • Optimize the display position of the script list icon。
-optimization: • Optimize setting interface code。
-repair: • Fixed an issue where the script setting interface displays incorrectly on mobile devices。
-New: • Add Vietnamese language pack,Thanks netizens RenjiYuusei translate。
-New: • Increase WebHook Page quick jump script management。
-repair: • Fixed the issue of dynamic monitoring failure caused by changes in monitoring rules。
-New: • Monitoring rules added:user-script-list-section browse-script-list。
optimization: • copy GreasyFork optimization new in CSS。
-New:
-• Increase GreasyFork optimization Script in double column display。
-• Increase GreasyFork optimization Beautify navigation bar in。
-• Add fixed website side action bar。
New: • Full traditional language support。
-New:
-• Add side navigation bar switch。
-• Add image proxy(Not compatible when enabled GreasyFork optimization Picture browsing in)。
-repair:
-• Fixed the problem of images being viewed outside the browser on mobile devices。
-• Modify to automatically check beautification when editing code。
New:
-• Add navigation bar expansion "More"。
-• Increase Greasy Fork Enhance Side navigation bar in。
-optimization: • Improve support for multiple languages。
New: • Add automatic login GreasyFork optimization。
-repair: • Fix script installation status on display list。
-optimization: • Improve support for multiple languages。
-
-
-## Script Overview:
-
-Provide various usage functions for Greasyfork, absolute time, web page widescreen, script page enhancement, download extension, panel repair and a series of operations. This script is collected from the website.
->
-
-
-
-
-
-
-
----
-
-
-
-## Features
-
-
-
-### Script Details
-
-- Switch Document View and Web View
-- Copy Code
-- Show Script Icon
-- Clear Icon Cache
-- Add Installation to Script History
-- Add Download Button
-- Display Line Numbers for Script Code
-- Sort Script List by Creation Date
-- Copy Library Declaration
-- Show Number of Referenced Files
-- Copy Short Link
-- Beautify Code Snippets
-- Beautify Code View
-
-
-
-### Script List
-
-- Display Installation and Download in List
-- Lock Language Settings
-- Show Ratings
-- Show Source Code
-- Use Old Version of List
-- Show Scripts in All Languages
-- Move Sidebar
-- Sort Script List by Creation Date
-
-
-
-### Beautify Controls
-
-- Beautify Controls
-- Beautify Select Box and Radio Button Labels
-
-
-
-### Applicable To
-
-- Enable Enhancement
-- Open in New Window
-- Show Number of Scripts on Forum
-- Details Applicable To:
- - Forum Search
- - Open Webpage
- - Popup Tip
-
-
-
-### Personal Homepage
-
-- Clean Up Old Homepage Content
-- Days to Clean Homepage Content
-- Add Scripts to Homepage
-- Hide Recent Comments
-- Display Statistics on Homepage
-
-
-
-### Navigation Bar
-
-- Add Option to Publish New Script
-- Link to Adult Scripts
-- Fix Navigation Bar Style
-- Add "Open This Page" to Navigation Bar
-- Align Navigation Bar
-
-
-
-### Website
-
-- Automatically Apply Code Editor Beautification
-- Open Links in New Tab
-- Precise Date
-- Maximize Website View
-- One-Click Report
-- Local Code Highlighting
-- Hide Icon
-- Show Icon
-- Grayscale Read Comments
-- Hide Read Comments
-- Side Navigation Bar
-- Image Proxy
-
----
-
-
-
-## Thank you
-
-
-
-### Quote script
-
-- [Auto Enable Syntax-Highlighting Source Editor](https://greasyfork.org/zh-CN/scripts/22223)
-- [Greasyfork in your language](https://greasyfork.org/zh-CN/scripts/6245)
-- [Greasyfork excellentchange](https://greasyfork.org/zh-CN/scripts/411837)
-- [GreasyFork Copy Code Snippet](https://greasyfork.org/zh-CN/scripts/423726)
-- [Download Script Button](https://greasyfork.org/zh-CN/scripts/420872)
-- [GreasyFork Script Icon](https://greasyfork.org/zh-CN/scripts/6861)
-- [Add "Post a new script" Link](https://greasyfork.org/zh-CN/scripts/450357)
-- [Open Scripts List Sorting for Creation Date by Default](https://greasyfork.org/zh-CN/scripts/495477)
-- [Absolute Time on GreasyFork](https://greasyfork.org/zh-CN/scripts/470348)
-- [foldstack greasyfork PassExpectdiscussArgument](https://greasyfork.org/scripts/426549/)
-- [maximale Fensterbreite auf nutzen](https://greasyfork.org/de/scripts/36037)
-- [Toggle HTML View](https://greasyfork.org/de/scripts/471149)
-- [GreasyFork Header Style Fix](https://greasyfork.org/zh-CN/scripts/473269)
-- [Greasy Fork Dark Theme](https://greasyfork.org/zh-CN/scripts/436913)
-- [Greasyfork beautifulchange](https://greasyfork.org/zh-CN/scripts/446849)
-- [Greasy Fork increasepowerful](https://greasyfork.org/scripts/467078)
-- [Greasy Fork URL footbooknamesayclearreason](https://greasyfork.org/scripts/431940)
-- [Greasyfork excellentchange](https://greasyfork.org/zh-CN/scripts/475722)
-- [Greasy Fork: Mark Script Discussions as Read](https://greasyfork.org/scripts/438010)
-- [Greasy Fork Bookmark](https://greasyfork.org/scripts/493406)
-- [GreasyFork onekeytimesnewspapergarbagegarbagecommentArgument](https://greasyfork.org/scripts/474395)
-
-
----
-
-
-
-## Photos:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
----
-
-
-
-
-> ### 🔍you may be looking forGreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-「 향상시키다greasyfork,코드 복사,스크립트 다운로드,초 단위의 정확한 시간,홈페이지 정리,원클릭 보고에 대해 논의,스크립트 목록 점프 코드 추가 다운로드 코드 보기 및 코드 참조 파일 표시,스크립트 아이콘 표시,성인용 스크립트 및 기타 작업으로 이동 」
-Download:Github | ⭐Greasy - Fork
새로운: • 개인 홈페이지 추가 비공개 메시지 숨기기。
새로운: • 스크립트 세부정보 페이지,모든 스크립트 목록이 추가되었습니다. 스크립트 등급。
수리하다: • 호환성 문제 수정。
-새로운: • 스크립트 목록 상단에 다운로드 버튼 추가,모든 스크립트를 다운로드하려면 클릭하세요.。
-최적화: • 스크립트 목록 아이콘의 표시 위치 최적화。
-최적화: • 설정 인터페이스 코드 최적화。
-수리하다: • 모바일 장치에서 스크립트 설정 인터페이스가 잘못 표시되는 문제를 수정했습니다.。
-새로운: • 베트남어 언어 팩 추가,네티즌 여러분 감사합니다 RenjiYuusei 번역하다。
-새로운: • 증가하다 WebHook 페이지 빠른 점프 스크립트 관리。
-수리하다: • 모니터링 규칙 변경으로 인한 동적 모니터링 실패 문제 수정。
-새로운: • 모니터링 규칙이 추가되었습니다.:user-script-list-section browse-script-list。
최적화: • 복사 GreasyFork 최적화 새로운 CSS。
-새로운:
-• 증가하다 GreasyFork 최적화 이중 열 디스플레이의 스크립트。
-• 증가하다 GreasyFork 최적화 내비게이션 바를 아름답게。
-• 고정된 웹사이트 사이드 액션 바 추가。
새로운: • 완전한 전통적인 언어 지원。
-새로운:
-• 측면 탐색 표시줄 스위치 추가。
-• 이미지 프록시 추가(활성화되면 호환되지 않음 GreasyFork 최적화 사진 찾아보기)。
-수리하다:
-• 모바일 기기에서 브라우저 외부에서 이미지가 보이는 문제 수정。
-• 코드 편집 시 자동으로 미화를 확인하도록 수정。
새로운:
-• 네비게이션 바 확장 추가 "더"。
-• 증가하다 Greasy Fork 향상시키다 측면 탐색 모음。
-최적화: • 다국어 지원 개선。
새로운: • 자동 로그인 추가 GreasyFork 최적화。
-수리하다: • 표시 목록의 스크립트 설치 상태 수정。
-최적화: • 다국어 지원 개선。
-
-
-## Greasyfork의 다양한 기능 제공
-
-Greasyfork에 다양한 사용 기능을 제공하는 스크립트입니다. 절대 시간, 웹 페이지 넓은 화면, 스크립트 페이지 강화, 다운로드 확장, 패널 수정 등 일련의 작업을 지원합니다. 이 스크립트는 웹사이트에서 수집되었습니다.
->
-
-
-
-
-
-
-
-
----
-
-
-
-
-## 기능 소개
-
-
-
-### 스크립트 상세
-
-- 문서 보기와 웹 보기 전환
-- 코드 복사
-- 스크립트 아이콘 표시
-- 아이콘 캐시 비우기
-- 스크립트 히스토리에 설치 추가
-- 다운로드 버튼 추가
-- 스크립트 코드의 줄 수와 문자 수 표시
-- 생성일로 스크립트 목록 정렬
-- 라이브러리 선언 복사
-- 참조 파일 수 표시
-- 짧은 링크 복사
-- 코드 스니펫 미화
-- 코드 보기 미화
-
-
-
-### 스크립트 목록
-
-- 리스트 표시로 설치 및 다운로드
-- 언어 설정 잠금
-- 평가 표시
-- 소스 코드 표시
-- 구버전 목록 사용
-- 모든 언어 스크립트 표시
-- 사이드바 이동
-- 생성일로 스크립트 목록 정렬
-
-
-
-### 미화 컨트롤
-
-- 컨트롤 미화
-- 선택 상자와 라디오 버튼 레이블 미화
-
-
-
-### 적용 대상
-
-- 기능 확장 활성화
-- 새 창에서 열기
-- 포럼에서 스크립트 수 표시
-- 자세한 내용은 다음에 적용:
- - 포럼 검색
- - 웹 페이지 열기
- - 팝업 알림
-
-
-
-### 개인 홈페이지
-
-- 오래된 홈페이지 콘텐츠 정리
-- 홈페이지 정리 일수 설정
-- 홈페이지 스크립트 추가 작업
-- 최근 댓글 숨기기
-- 홈페이지 통계 표시
-
-
-
-### 탐색 바
-
-- 새 스크립트 게시 옵션 추가
-- 성인 스크립트로 이동
-- 탐색 바 스타일 수정
-- 탐색 바에 이 인터페이스 열기 버튼 추가
-- 탐색 바 정렬
-
-
-
-### 웹사이트
-
-- 코드 편집기 미화 자동 활성화
-- 새 탭에서 링크 열기
-- 정확한 날짜 표시
-- 웹사이트 최대화
-- 원클릭 신고
-- 로컬 코드 하이라이트
-- 아이콘 숨기기
-- 아이콘 표시
-- 읽은 댓글 그레이 스케일
-- 읽은 댓글 숨기기
-- 사이드 내비게이션 바
-- 사용자 이미지 프록시
-
----
-
-
-
-## 감사합니다
-
-
-
-### 참고한 스크립트
-- [Auto Enable Syntax-Highlighting Source Editor](https://greasyfork.org/zh-CN/scripts/22223)
-- [Greasyfork in your language](https://greasyfork.org/zh-CN/scripts/6245)
-- [Greasyfork 훌륭한변화](https://greasyfork.org/zh-CN/scripts/411837)
-- [GreasyFork Copy Code Snippet](https://greasyfork.org/zh-CN/scripts/423726)
-- [Download Script Button](https://greasyfork.org/zh-CN/scripts/420872)
-- [GreasyFork Script Icon](https://greasyfork.org/zh-CN/scripts/6861)
-- [Add "Post a new script" Link](https://greasyfork.org/zh-CN/scripts/450357)
-- [Open Scripts List Sorting for Creation Date by Default](https://greasyfork.org/zh-CN/scripts/495477)
-- [Absolute Time on GreasyFork](https://greasyfork.org/scripts/470348)
-- [겹스택 greasyfork 통과하다예상하다논의하다논쟁](https://greasyfork.org/scripts/426549/)
-- [maximale Fensterbreite auf nutzen](https://greasyfork.org/de/scripts/36037)
-- [Toggle HTML View](https://greasyfork.org/de/scripts/471149)
-- [GreasyFork Header Style Fix](https://greasyfork.org/zh-CN/scripts/473269)
-- [Greasy Fork Dark Theme](https://greasyfork.org/zh-CN/scripts/436913)
-- [Greasyfork 아름다운변화](https://greasyfork.org/zh-CN/scripts/446849)
-- [Greasy Fork 증가하다강한](https://greasyfork.org/scripts/467078)
-- [Greasy Fork URL 발책이름말하다분명한이유](https://greasyfork.org/scripts/431940)
-- [Greasyfork 훌륭한변화](https://greasyfork.org/zh-CN/scripts/475722)
-- [Greasy Fork: Mark Script Discussions as Read](https://greasyfork.org/scripts/438010)
-- [Greasy Fork Bookmark](https://greasyfork.org/scripts/493406)
-- [GreasyFork 하나열쇠시간신문쓰레기쓰레기논평논쟁](https://greasyfork.org/scripts/474395)
-
----
-
-
-
-## Photos:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
----
-
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다GreasyFork관련 스크립트
-> - [**GreasyFork향상에 적합**](https://greasyfork.org/scripts/497317): 추가할 링크에 적합한 스크립트 세부정보 페이지가 추가됩니다.,웹페이지 복사,타이어 검색
-> - [**GrreasyFork 사용자 게시 스크립트 데이터 시각화**](https://greasyfork.org/scripts/508968): 사용Chart.js사용자 스크립트 데이터 획득 및 시각화,그리고 사용자의 개인 홈페이지에 차트를 생성하여 아래와 같이 자세한 설치 현황을 표시합니다.
-> - [**GreaysFork 향상시키다 WebHook동기화 설정**](https://greasyfork.org/scripts/506717): 이 스크립트를 사용하면 스크립트 동기화 정보를 빠르게 입력할 수 있습니다.,여러 국가의 언어 코드를 일괄 추가하세요.,선택 상자를 하나씩 클릭하여 해당 URL로 이동하는 대신。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 포럼에서 기본적으로 사용됨 Markdown 체재,형식 도움말 링크를 추가하고 Markdown 툴바 소개
-> - [**GreasyFork 스크립트 등급 표시**](https://greasyfork.org/scripts/501119): 스크립트 목록에 평가 점수 추가
-> - [**GreasyFork 고급 검색**](https://greasyfork.org/scripts/505215): Google을 사용하여 검색 GreasyFork 그리고 SleazyFork 상적 각본
-> - [**GreasyFork 네비게이션 바향상시키다**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,사용자 목록 추가,사용자 콘솔 등
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 향상시키다greasyfork,코드 복사,스크립트 다운로드,초 단위의 정확한 시간,홈페이지 정리,원클릭 보고에 대해 논의,스크립트 목록 점프 코드 추가 다운로드 코드 보기 및 코드 참조 파일 표시,스크립트 아이콘 표시,성인용 스크립트 및 기타 작업으로 이동
-> - [**Greasyfork 알림 도우미**](https://greasyfork.org/scripts/506345): 귀하의 스크립트나 귀하가 참여하고 있는 토론에 대한 새로운 답변이 있는 경우,스크립트는 웹 페이지의 모달 창에 최신 토론 내용을 표시합니다.。
-> - [**Script Finder그리스 원숭이 스크립트 찾기**](https://greasyfork.org/scripts/498904): Script Finder 사용자 스크립트입니다(userscript),모든 웹사이트에서 사용자 스크립트를 찾고 관리하는 데 도움이 됩니다.
-
-
-
-
-
-
-
-## 돕다
-
- 권장 브라우저 및 스크립트 관리자:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **사용자 스크립트 설치 방법에 대해 더 알고 싶다면,[나를 클릭하세요](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)그래픽 교육 보기!**
-
-
-
-
-
-
-
-
-
-### 모든 게시 스크립트 보기
-
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 ChatGPT관련 스크립트
-> - [**ChatGPT코드 글꼴 크기 감소**](https://greasyfork.org/scripts/505209): 허락하다 ChatGPT 코드 글꼴 크기가 작아집니다.
-> - [**ChatGPT 聊天코드 복사단추**](https://greasyfork.org/scripts/509598): 존재하다 chatgpt.com 상단 코드 블록의 오른쪽 하단에 애니메이션을 추가합니다.“复制代码”按钮
-> - [**ChatGPT 캐릭터 카운터**](https://greasyfork.org/scripts/506166): 添加一문자计数器到输入框,로 제한됨 32732 문자。(ChatGPT 한도는 32732 个字符。)
-> - [**ChatGPT 자체 메시지 및 최대 너비 축소**](https://greasyfork.org/scripts/504901): 귀하가 보낸 긴 메시지를 자동으로 접습니다.,화면 공간 절약。채팅 창의 최대 너비를 설정할 수 있습니다.,긴 메시지가 지정된 범위를 초과하지 않도록 유지。
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 웹 관련 스크립트
-> - [**웹 페이지 작성 클립 버전 권한 관리자**](https://greasyfork.org/scripts/497403): 편집된 버전에서 웹페이지가 표시되는 것을 금지합니다.,출시용 녹색,빨간색 금지,주황색 임시 방향
-> - [**승강기CSDN로그인복사限制**](https://greasyfork.org/scripts/505207): 엿 먹어라 CSDN 登录复制,로그인하지 않고 코드 상자 내용 복사
-> - [**화려한 그라데이션으로 웹 양식을 아름답게 꾸미세요**](https://greasyfork.org/scripts/507036): 웹 페이지 테이블의 모든 열에 색상 그라데이션 미화를 자동으로 적용합니다..
-> - [**웹페이지에서 키워드 강조표시+(추천하다)**](https://greasyfork.org/scripts/498906): 웹페이지의 텍스트 강조표시
-> - [**웹 텍스트 강조 표시_미니 버전**](https://greasyfork.org/scripts/498905): 스크롤 시 동적으로 로드되는 콘텐츠를 포함하여 웹페이지에서 사용자 정의 키워드 강조 표시
-> - [**작은 창 미리보기**](https://greasyfork.org/scripts/504880): 링크 드래그 시 팝업창에서 링크 열기,열기 전에 미리보기를 제공하세요.,사용 Edge 미리 읽는 기술。동시에 작은 창을 열 때 뒤에 아크릴 효과를 추가합니다.。
-> - [**링크 밑줄 제거**](https://greasyfork.org/scripts/498625): 웹 링크에서 밑줄 제거
-> - [**위아래로 작은 스크롤 버튼**](https://greasyfork.org/scripts/497251): 페이지 오른쪽에 상하 스크롤 버튼 추가
-> - [**원터치 상하 버튼**](https://greasyfork.org/scripts/500255): 다음에서 수정됨Greasyfork사용자 스크립트 웹 페이지에 상단 및 하단 버튼 추가,긴 페이지의 상단 또는 하단으로 빠르게 이동할 수 있습니다.。 아래로 스크롤할 때 버튼 색상 변경 추가,3몇 초 내에 스크롤이 없으면 자동으로 중지됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 GitHub관련 스크립트
-> - [**GitHub정보 표시 제출HTML**](https://greasyfork.org/scripts/505830): 이 스크립트는 GitHub 제출정보는 HTML 보다,제출 세부정보를 더 명확하게 보려면。정보 목록이 자동으로 제출됩니다.、커밋 헤더와 최신 커밋 정보는 다음과 같이 변환됩니다. HTML 체재,더 나은 시각 효과와 사용자 경험 제공。
-> - [**GitHub 파일 목록 미화자**](https://greasyfork.org/scripts/508047): GitHub File List Beautifier는 사용자 스크립트입니다.,향상시키는 데 사용됨 GitHub 창고 내 파일 표시 효과。파일과 폴더에 색상을 추가할 수 있습니다.,파일 형식 아이콘을 작은 이미지로 바꿉니다.,코드 베이스를 더 쉽게 찾아보고 관리할 수 있습니다.。
-> - [**Github 코드 언어 목록 모두 표시**](https://greasyfork.org/scripts/509889): 확장하다 Github 저장소의 언어 목록,각 언어 표시,작은 부품을 숨기는 것보다 “다른” 아래에
-> - [**GitHub 장치 승인 자동 확인**](https://greasyfork.org/scripts/508956): 존재하다GitHub인증 페이지에서는 자동으로 인증 코드를 입력하고 자동으로 확인합니다.。
-> - [**GitHub접는 사람下载**](https://greasyfork.org/scripts/505496): 다운로드 버튼 추가,특정 파일을 쉽게 다운로드할 수 있습니다. GitHub 文件夹。
-> - [**GitHub단일 파일 다운로드 및 파일 복사URL**](https://greasyfork.org/scripts/505501): 각 파일 줄 끝에 추가 버튼,원본 파일을 복사하려면 URL 그리고 파일 다운로드
-> - [**🤠 Github 어시스턴트 강화 창고 전시 크기 비활성 개발 경고 창고 내 빠른 점프用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 존재하다Github창고 보기 및 검색 시 창고 크기 표시 ,비활성 개발 경고,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 창고 목록 파일 정렬 방식을 날짜 내림차순으로 변경,최신 업데이트 파일을 편리하게 확인하세요。
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 Google관련 스크립트
-> - [**Google 고급 검색**](https://greasyfork.org/scripts/502652): 이것은 Google 고급 검색 양식에 대한 사용자 스크립트 추가。페이지 상단에 숨길 수 있는 고급 검색 양식을 추가합니다.,보다 정확하게 정보를 검색할 수 있습니다.。
-> - [**Google 특정 사이트 검색 및 차단**](https://greasyfork.org/scripts/500262): 검색 엔진 결과에서 특정 사이트 차단,사용자가 원치 않는 검색 결과를 필터링하도록 지원。 사용자 정의 입력 차단 사이트。체재-zhihu -baidu Google 검색 콘텐츠를 차단하는 데 사용됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 GreasyFork관련 스크립트
-> - [**GreasyFork향상에 적합**](https://greasyfork.org/scripts/497317): 추가할 링크에 적합한 스크립트 세부정보 페이지가 추가됩니다.,웹페이지 복사,타이어 검색
-> - [**GrreasyFork 사용자 게시 스크립트 데이터 시각화**](https://greasyfork.org/scripts/508968): 사용Chart.js사용자 스크립트 데이터 획득 및 시각화,그리고 사용자의 개인 홈페이지에 차트를 생성하여 아래와 같이 자세한 설치 현황을 표시합니다.
-> - [**GreaysFork 향상시키다 WebHook동기화 설정**](https://greasyfork.org/scripts/506717): 이 스크립트를 사용하면 스크립트 동기화 정보를 빠르게 입력할 수 있습니다.,여러 국가의 언어 코드를 일괄 추가하세요.,선택 상자를 하나씩 클릭하여 해당 URL로 이동하는 대신。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 포럼에서 기본적으로 사용됨 Markdown 체재,형식 도움말 링크를 추가하고 Markdown 툴바 소개
-> - [**GreasyFork 스크립트 등급 표시**](https://greasyfork.org/scripts/501119): 스크립트 목록에 평가 점수 추가
-> - [**GreasyFork 고급 검색**](https://greasyfork.org/scripts/505215): Google을 사용하여 검색 GreasyFork 그리고 SleazyFork 상적 각본
-> - [**GreasyFork 네비게이션 바향상시키다**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,사용자 목록 추가,사용자 콘솔 등
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 향상시키다greasyfork,코드 복사,스크립트 다운로드,초 단위의 정확한 시간,홈페이지 정리,원클릭 보고에 대해 논의,스크립트 목록 점프 코드 추가 다운로드 코드 보기 및 코드 참조 파일 표시,스크립트 아이콘 표시,성인용 스크립트 및 기타 작업으로 이동
-> - [**Greasyfork 알림 도우미**](https://greasyfork.org/scripts/506345): 귀하의 스크립트나 귀하가 참여하고 있는 토론에 대한 새로운 답변이 있는 경우,스크립트는 웹 페이지의 모달 창에 최신 토론 내용을 표시합니다.。
-> - [**Script Finder그리스 원숭이 스크립트 찾기**](https://greasyfork.org/scripts/498904): Script Finder 사용자 스크립트입니다(userscript),모든 웹사이트에서 사용자 스크립트를 찾고 관리하는 데 도움이 됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 성인 각본
-> - [**MiSSAV자동 로그인**](https://greasyfork.org/scripts/505325): 발각 MisssAV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-> - [**MissAV컬렉션 관리자**](https://greasyfork.org/scripts/497682): miss재생목록 백업,사진 다운로드 및 비디오 정보 저장 지원.로컬 웹페이지 내보내기 수출 지원webdav
-> - [**TissAV자동 로그인**](https://greasyfork.org/scripts/506528): 발각 TissAV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-> - [**JableTV자동 로그인**](https://greasyfork.org/scripts/506730): 발각 JableTV 상태,로그인하지 않으면 자동으로 로그인됩니다.
-
-
-
-> ### 🔍당신은 찾고있을 수 있습니다 자동 번역
-> - [**외국어 터미네이터**](https://greasyfork.org/scripts/504890): 중국어가 아닌 문자 인식,길이가 그 이상인 경우 5 그리고 번역된 텍스트에는 중국어가 포함되어 있지 않습니다.,그럼 중국어로 바꾸세요,접근 가능해야 함google회로망
-> - [**웹페이지 번역——중국어로 자동 번역됨**](https://greasyfork.org/scripts/505208): 중국어가 아닌 웹페이지의 오른쪽 하단 모서리를 제공합니다.(왼쪽 하단으로 조정 가능)추가하다 google 번역 아이콘,이 버전은 중국어 번역 버전입니다.,외국어만 중국어로 번역하세요,자동 번역 추가
-
-
-
-
-
-
-
-「 增強greasyfork,複製程式碼,腳本下載,精確時間到秒,主頁清理,討論一鍵舉報,腳本清單跳轉代碼添加下載 美化查看程式碼顯示程式碼引用文件,顯示腳本圖示,跳轉成人腳本等等一些操作 」
-Download:Github | ⭐Greasy - Fork
新增: • 個人主頁添加 隱藏私訊。
新增: • 腳本詳情頁,所有腳本清單添加 腳本評分。
修復: • 修復相容性問題。
-新增: • 在腳本清單頂部新增下載按鈕,點擊下載所有腳本。
-最佳化: • 優化腳本清單圖示顯示位置。
-最佳化: • 優化設定介面程式碼。
-修復: • 修正腳本設定介面在行動裝置上顯示錯亂問題。
-新增: • 增加越南語言包,感謝網友 RenjiYuusei 翻譯。
-新增: • 增加 WebHook 頁快速跳轉腳本管理。
-修復: • 修復監聽規則變化導致動態監聽失敗。
-新增: • 監聽規則增加:user-script-list-section browse-script-list。
最佳化: • 複製 GreasyFork 最佳化 中的新 CSS。
-新增:
-• 增加 GreasyFork 最佳化 中的腳本雙列顯示。
-• 增加 GreasyFork 最佳化 中的美化導覽列。
-• 增加固定網站側邊操作欄。
新增: • 完全的繁體語言支持。
-新增:
-• 增加側邊導覽欄開關。
-• 增加圖片代理(開啟時不相容 GreasyFork 最佳化 中的圖片瀏覽)。
-修復:
-• 修復在行動裝置上瀏覽圖片超出瀏覽器外的問題。
-• 修改在編輯程式碼時自動勾選美化。
新增:
-• 新增導覽列展開 "更多"。
-• 增加 Greasy Fork 增強 中的側邊導覽欄。
-最佳化: • 完善對多語言的支持。
新增: • 增加自動登入 GreasyFork 最佳化。
-修復: • 修復顯示清單上的腳本安裝狀態。
-最佳化: • 完善對多語言的支持。
-
-
-## 腳本功能
-
-為 Greasyfork 提供各種使用功能,絕對時間,網頁寬屏,腳本頁增強,下載拓展,面板修復等一系列操作。該腳本從網站收集而來。
->
-
-
-
-
-
-
-
-
----
-
-
-
-
-## 功能介紹
-
-
-### 腳本詳情
-
-- 切換文檔視圖與網頁視圖
-- 復製代碼
-- 顯示腳本圖標
-- 清空圖標緩存
-- 腳本歷史增加安裝
-- 增加下載按鈕
-- 腳本代碼顯示行數字數
-- 按創建日期排序腳本列表
-- 復製庫聲明
-- 顯示引用文件數
-- 復製短鏈接
-- 美化代碼片段
-- 美化查看代碼
-
-
-
-### 腳本列表
-
-- 列表顯示安裝下載
-- 鎖定語言設置
-- 顯示評分
-- 顯示源碼
-- 使用舊版列表
-- 顯示所有語言腳本
-- 移動側邊欄
-- 按創建日期排序腳本列表
-
-
-
-### 美化控件
-
-- 控制美化
-- 美化選擇框和單選框標簽
-
-
-
-### 適用於
-
-- 啟用增強
-- 新窗口打開
-- 顯示在論壇的腳本數量
-- 詳情適用於打開:
- - 論壇搜索
- - 網頁打開
- - 彈出提示
-
-
-
-### 個人主頁
-
-- 清理舊的主頁內容
-- 主頁清理的天數
-- 主頁腳本添加操作
-- 隱藏近期評論
-- 主頁顯示統計
-
-
-
-### 導航欄
-
-- 增加發布新腳本選項
-- 跳轉成人腳本
-- 修復導航欄樣式
-- 在導航欄添加打開本界面
-- 導航欄對齊
-
-
-
-### 網站
-
-- 自動啟用代碼編輯框美化
-- 在新標簽頁中打開鏈接
-- 精確日期
-- 網站最大化瀏覽
-- 一鍵舉報
-- 本地代碼高亮
-- 隱藏圖標
-- 顯示圖標
-- 灰度已閱讀評論
-- 隱藏已閱讀評論
-- 側邊導航欄
-- 代理用戶圖片
-
----
-
-
-## 🌐 瀏覽器與腳本管理器
-
-| 瀏覽器 | 腳本管理器 |
-| :----------------------------------: | :------------------------------------------------------------: |
-| Chrome 或 基於 Chromium 內核的瀏覽器 | [Tampermonkey][Tampermonkey] 或 [Violentmonkey][Violentmonkey] |
-| Safari 瀏覽器(macOS, iOS, iPadOS) | [Macaque][Macaque] 或 [Stay][Stay] |
-| Firefox 或 基於 Gecko 內核的瀏覽器 | [Tampermonkey][Tampermonkey] 或 [Violentmonkey][Violentmonkey] |
-| Via 瀏覽器(Android) | 瀏覽器內自帶 |
-
-[Tampermonkey]: http://tampermonkey.net/ "篡改猴"
-[Violentmonkey]: https://violentmonkey.github.io/ "暴力猴"
-[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
-
-
-
-### 引用腳本
-
-- [Auto Enable Syntax-Highlighting Source Editor](https://greasyfork.org/zh-CN/scripts/22223)
-- [Greasyfork in your language](https://greasyfork.org/zh-CN/scripts/6245)
-- [Greasyfork 優化](https://greasyfork.org/zh-CN/scripts/411837)
-- [GreasyFork Copy Code Snippet](https://greasyfork.org/zh-CN/scripts/423726)
-- [Download Script Button](https://greasyfork.org/zh-CN/scripts/420872)
-- [GreasyFork Script Icon](https://greasyfork.org/zh-CN/scripts/6861)
-- [Add "Post a new script" Link](https://greasyfork.org/zh-CN/scripts/450357)
-- [Open Scripts List Sorting for Creation Date by Default](https://greasyfork.org/zh-CN/scripts/495477)
-- [Absolute Time on GreasyFork](https://greasyfork.org/zh-CN/scripts/470348)
-- [折疊 greasyfork 過期討論](https://greasyfork.org/scripts/426549/)
-- [maximale Fensterbreite auf nutzen](https://greasyfork.org/de/scripts/36037)
-- [Toggle HTML View](https://greasyfork.org/de/scripts/471149)
-- [GreasyFork Header Style Fix](https://greasyfork.org/zh-CN/scripts/473269)
-- [Greasy Fork Dark Theme](https://greasyfork.org/zh-CN/scripts/436913)
-- [Greasyfork 美化](https://greasyfork.org/zh-CN/scripts/446849)
-- [Greasy Fork 增強](https://greasyfork.org/zh-CN/scripts/467078)
-- [Greasy Fork URL 腳本名稱清理](https://greasyfork.org/scripts/431940/)
-- [Greasyfork 優化](https://greasyfork.org/zh-CN/scripts/475722)
-- [Greasy Fork: Mark Script Discussions as Read](https://greasyfork.org/scripts/438010)
-- [Greasy Fork Bookmark](https://greasyfork.org/scripts/493406)
-- [GreasyFork 一鍵回報垃圾評論](https://greasyfork.org/scripts/474395)
-
----
-
-
-
-## 圖片展示:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
----
-
-
-
-
-
-> ### 🔍你可能在找GreasyFork相關腳本
-> - [**GreasyFork適用於增強**](https://greasyfork.org/scripts/497317): 腳本詳情頁增加適用於連結增加點擊開啟網頁,複製網頁,輪胎搜尋
-> - [**GrreasyFork 用戶發布的腳本資料視覺化**](https://greasyfork.org/scripts/508968): 使用Chart.js獲取和可視化獲取用戶腳本數據,並在使用者個人主頁產生圖表在下方顯示詳細安裝狀況
-> - [**GreaysFork 增強 WebHook同步設定**](https://greasyfork.org/scripts/506717): 這個腳本可以幫助你快速輸入腳本同步訊息,並批量增加多個國家的語言代碼,而不用一個個地點擊選擇框再去對應的網址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在論壇預設使用 Markdown 格式,添加格式幫助連結及 Markdown 工具列紹
-> - [**GreasyFork 顯示腳本評分**](https://greasyfork.org/scripts/501119): 腳本清單新增評價分數
-> - [**GreasyFork 進階搜尋**](https://greasyfork.org/scripts/505215): 使用谷歌搜尋 GreasyFork 和 SleazyFork 上體文字
-> - [**GreasyFork 導覽列增強**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用戶列表,使用者控制台等
-> - [**Greasyfork膠水工匠**](https://greasyfork.org/scripts/497346): 增強greasyfork,複製程式碼,腳本下載,精確時間到秒,主頁清理,討論一鍵舉報,腳本清單跳轉代碼添加下載 美化查看程式碼顯示程式碼引用文件,顯示腳本圖示,跳轉成人腳本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 當你的腳本或你參與的討論有新回應時,腳本會在網頁上以模態視窗顯示最新的討論內容。
-> - [**Script Finder油猴腳本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一個使用者腳本(userscript),它可以幫助你在任何網站上尋找和管理使用者腳本
-
-
-
-
-
-
-
-## 使用幫助
-
- 推薦瀏覽器和腳本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多關於如何安裝使用者腳本,[點擊我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看圖文教學!**
-
-
-
-
-
-
-
-
-
-### 查看所有發布腳本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相關腳本
-> - [**ChatGPT程式碼字體縮小**](https://greasyfork.org/scripts/505209): 讓 ChatGPT 程式碼字體變小
-> - [**ChatGPT 聊天複製程式碼按鈕**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代碼區塊的右下角添加一個帶有動畫的“复制代码”按钮
-> - [**ChatGPT 字元計數器**](https://greasyfork.org/scripts/506166): 添加一個字元计数器到输入框,限制為 32732 個字元。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折疊自己訊息和最大寬度**](https://greasyfork.org/scripts/504901): 自動折疊由你發送的長訊息,節省螢幕空間。允許你設定聊天視窗的最大寬度,使得長訊息不會超出指定範圍。
-
-
-
-> ### 🔍你可能在找 網頁相關腳本
-> - [**網頁寫入剪輯版授權管理員**](https://greasyfork.org/scripts/497403): 禁止網頁向剪輯版拉屎,綠色為放行,紅色禁止,橙色臨時方向
-> - [**解除CSDN登入複製限制**](https://greasyfork.org/scripts/505207): 去你媽的 CSDN 登录复制,無需登入即可複製程式碼框內容
-> - [**絢麗漸層美化網頁表格**](https://greasyfork.org/scripts/507036): 自動為網頁上的表格所有欄位套用顏色漸層美化.
-> - [**網頁高亮關鍵字+(推薦)**](https://greasyfork.org/scripts/498906): 對網頁上的文字進行高亮顯示
-> - [**高亮網頁文本_迷你版**](https://greasyfork.org/scripts/498905): 在網頁上自訂關鍵字突出顯示包括滾動時動態載入的內容
-> - [**小視窗預覽**](https://greasyfork.org/scripts/504880): 拖曳連結時在彈出視窗中開啟鏈接,並在打開前提供預覽,使用 Edge 的預讀技術。同時在小窗口打開時在背後添加壓克力效果。
-> - [**去除連結下劃線**](https://greasyfork.org/scripts/498625): 去除網頁連結的下劃線
-> - [**上下滾動小按鈕**](https://greasyfork.org/scripts/497251): 頁面右側新增上下滾動按鈕
-> - [**一鍵置頂和置底按鈕**](https://greasyfork.org/scripts/500255): 修改自Greasyfork使用者腳本 為網頁新增置頂和置底按鈕,方便在長頁面中快速移動到頂部或底部。 增加向下滾動時按鈕變色,3秒內無滾動自動停止
-
-
-
-> ### 🔍你可能在找 GitHub相關腳本
-> - [**GitHub提交資訊顯示HTML**](https://greasyfork.org/scripts/505830): 該腳本將 GitHub 上的提交資訊轉化為 HTML 視圖,以更清晰地查看提交詳情。它會自動將提交資訊列表、提交頭部和最新提交資訊轉化為 HTML 格式,提供更佳的視覺效果與使用者體驗。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件清單美化器是一個使用者腳本,用於增強 GitHub 倉庫中的文件顯示效果。它可以為文件和資料夾添加顏色,並將文件類型圖示替換為小圖像,使得程式碼庫更加易於瀏覽和管理。
-> - [**Github 代碼語言列表顯示全部**](https://greasyfork.org/scripts/509889): 擴充 Github 儲存庫上的語言列表,顯示每種語言,而不是將小部分隱藏在 “其他” 下
-> - [**GitHub 自動確認設備授權**](https://greasyfork.org/scripts/508956): 在GitHub授權頁面自動輸入授權碼與自動確認。
-> - [**GitHub資料夾下载**](https://greasyfork.org/scripts/505496): 新增一個下載按鈕,允許輕鬆下載特定的 GitHub 文件夹。
-> - [**GitHub下載單一文件和複製文件URL**](https://greasyfork.org/scripts/505501): 在每個文件行的末尾新增按鈕,以複製原始文件 URL 和下載文件
-> - [**🤠 Github 增強助手 倉庫顯示大小 不活躍開發警告 倉庫內快捷跳轉用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看倉庫和搜尋倉庫時顯示倉庫大小 ,不活躍開發警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 倉庫列表文件排序方式改為日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相關腳本
-> - [**Google 進階搜尋**](https://greasyfork.org/scripts/502652): 這是一個為 Google 新增進階搜尋表單的使用者腳本。它能在頁面頂部添加一個可隱藏的高級搜尋表單,使您能夠更精確地搜尋訊息。
-> - [**Google 搜尋屏蔽指定站點**](https://greasyfork.org/scripts/500262): 在搜尋引擎結果中封鎖特定的站點,幫助用戶過濾掉不需要的搜尋結果。 自訂輸入屏蔽站點。格式-zhihu -baidu 用於封鎖谷歌搜尋內容
-
-
-
-> ### 🔍你可能在找 GreasyFork相關腳本
-> - [**GreasyFork適用於增強**](https://greasyfork.org/scripts/497317): 腳本詳情頁增加適用於連結增加點擊開啟網頁,複製網頁,輪胎搜尋
-> - [**GrreasyFork 用戶發布的腳本資料視覺化**](https://greasyfork.org/scripts/508968): 使用Chart.js獲取和可視化獲取用戶腳本數據,並在使用者個人主頁產生圖表在下方顯示詳細安裝狀況
-> - [**GreaysFork 增強 WebHook同步設定**](https://greasyfork.org/scripts/506717): 這個腳本可以幫助你快速輸入腳本同步訊息,並批量增加多個國家的語言代碼,而不用一個個地點擊選擇框再去對應的網址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在論壇預設使用 Markdown 格式,添加格式幫助連結及 Markdown 工具列紹
-> - [**GreasyFork 顯示腳本評分**](https://greasyfork.org/scripts/501119): 腳本清單新增評價分數
-> - [**GreasyFork 進階搜尋**](https://greasyfork.org/scripts/505215): 使用谷歌搜尋 GreasyFork 和 SleazyFork 上體文字
-> - [**GreasyFork 導覽列增強**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用戶列表,使用者控制台等
-> - [**Greasyfork膠水工匠**](https://greasyfork.org/scripts/497346): 增強greasyfork,複製程式碼,腳本下載,精確時間到秒,主頁清理,討論一鍵舉報,腳本清單跳轉代碼添加下載 美化查看程式碼顯示程式碼引用文件,顯示腳本圖示,跳轉成人腳本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 當你的腳本或你參與的討論有新回應時,腳本會在網頁上以模態視窗顯示最新的討論內容。
-> - [**Script Finder油猴腳本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一個使用者腳本(userscript),它可以幫助你在任何網站上尋找和管理使用者腳本
-
-
-
-> ### 🔍你可能在找 成人劇本
-> - [**MiSSAV自動登入**](https://greasyfork.org/scripts/505325): 偵測 MisssAV 狀態,並且在未登入時自動登入
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss單張備份,支援下載圖片保存影片訊息.導出本地網頁 支援導出到webdav
-> - [**TissAV自動登入**](https://greasyfork.org/scripts/506528): 偵測 TissAV 狀態,並且在未登入時自動登入
-> - [**JableTV自動登入**](https://greasyfork.org/scripts/506730): 偵測 JableTV 狀態,並且在未登入時自動登入
-
-
-
-> ### 🔍你可能在找 自動翻譯
-> - [**外語終結者**](https://greasyfork.org/scripts/504890): 識別非中文字符,如果長度大於 5 且翻譯文中不含中文,則替換為中文,需要可訪問google的網路
-> - [**網頁翻譯——自動翻譯為中文**](https://greasyfork.org/scripts/505208): 給每個非中文的網頁右下角(可以調整到左下角)添加一個 google 翻譯圖示,此版本為中文翻譯版本,只把外文翻譯為中文,新增自動翻譯
-
-
-
-
-
-
-
-「 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。 」
-Download:Github | ⭐Greasy - Fork
修复: • 按钮hover active focus放入父类.Sync-Modal
新增: • 每次提交后返回 GreasyFork 同步提示。
-初始版本: • 欢迎使用。
-
-
-
-# GreasyFork - 增强WebHook同步设置
-在GreasyFork上设置同步信息时,常常会遇到提交后查看时,发现同步信息并没有被设置成功,导致需要重新输入。这是网站的小问题之一。为了解决这个问题,这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-
-
-
-## 功能特点
-- **快速输入同步信息**:无需手动重复输入,可以快速地设置和同步信息。
-- **批量增加语言代码**:支持批量添加多个国家/地区的语言代码,无需逐个选择。
-- **支持多种格式**:可以根据需要选择不同的URL格式进行设置。
-
-
-
-## 使用说明 (详情可以查看下方图片或上方视频)
-- **脚本管理页面**:处于脚本管理页面,在下方增加一个按钮,点击之后可以对当前脚本进行管理。
-- **网站顶部导航栏**:导航栏增加一个选项,用于点击之后自动获取Webhook同步的脚本.进行多个管理.
-
-
-
-## 支持的格式
-目前支持以下三种格式:
-
-1. **从Markdown文件获取国家语言**: 仅支持 `README_xxx.md`.
-
-## 注意:
-- 提交的本地化国家信息时,代码内必须存在头部声明 例如//@name:zh-CN,否则即使提交成功也是失败的!
-- 脚本必须存在!否则同步失败,
-
-
-
-
-> ### 🔍你可能在找GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-
-
-## 项目与反馈
-
-- **项目页面:** [GitHub 仓库](https://github.com/ChinaGodMan/UserScripts)
-- **支持与问题反馈:** [报告问题](https://github.com/ChinaGodMan/UserScripts/issues)
-
-
-
-
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。 」
-Download:Github | ⭐Greasy - Fork
repair: • buttonhover active focusPut in parent class.Sync-Modal
New: • Return after each submission GreasyFork Sync tips。
-initial version: • Welcome。
-
-
-
-# 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
-- **Quick Input of Synchronization Information**: No need to manually repeat input, allowing you to quickly set and sync information.
-- **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
-Currently, the following three formats are supported:
-
-1. **Get Country Language from Markdown File**: Only supports `README_xxx.md`.
- `https://www.xxx.com/path/to/your/README_xxxxx.md`
-2. **Directly Set Corresponding Country Language (Simple Format)**: Supports other format files.
- ` https://www.xxx.com/path/to/your/filename.md##ko`
-3. **Directly Set Corresponding Country Language (Detailed Format)**: Supports other format files.
- ` https://www.xxx.com/path/to/your/filename.md##simplebodymiddlearts (zh-CN)`
-
-Example code: If you have more options, you can extend it.
-
-## 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
-
-- **Project Page:** [GitHub Repository](https://github.com/ChinaGodMan/UserScripts)
-- **Support and Issues:** [Report Issues](https://github.com/ChinaGodMan/UserScripts/issues)
-
-
-
-
-
-
-
-
-
-
-
-
-> ### 🔍you may be looking forGreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-
-
-## 原作者(leconte112)[Spoiler Protection for tampermonkey](https://greasyfork.org/zh-CN/scripts/475806-spoiler-protection-for-tampermonkey)
-感谢**leconte112**的勤劳与智慧
-
-
-
-### 功能描述
-
-高亮包含关键词的元素。
-
-
-
-> ### 🔍你可能在找网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-
-
-### 优化说明
-
-优化了网页文字过多导致浏览器卡死的问题。
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
请输入用"#"号分隔的关键词:
- -请选择背景色:
- -请选择字体颜色:
- -
-
-
-
-
-
-
-# 原作者发布页[ mabangde](https://greasyfork.org/zh-CN/scripts/465200)
-
-
-## 脚本功能
-对网页上的文字进行高亮显示,如果对你有帮助,可以随意修改使用。
-
-
-## UI 说明
-1. **第一栏:网页限制**
- - 可以指定在哪些网页上起作用,比如 `bilibili`, `baidu`, `bilibili.com`
- - 输入网址的一部分或者全部。每一个网址用空格隔开
- - 如果什么都不输入,那么就会作用到所有网站上
-2. **第二栏:分类信息**
- - 鼠标移动到对应的关键字上会显示你输入的内容
-3. **第三栏:关键字栏**
- - 输入你想要高亮的词,空格隔开
-
-
-## 图片
-
-
-
-
-
-> ### 🔍你可能在找网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-
-
-## 初次安装
-
-第一次安装会默认添加一些规则测试,可以删除。
-
-
-
-## 更新日志
-
-
-
-### 2024 年 6 月 26 日
-
-- 保证在移动设备上能够适应屏幕
-- 增加了对设置文字颜色的支持(第二个颜色选择器)
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 检测 JableTV 状态,并且在未登录时自动登录 」
-Download:Github | ⭐Greasy - Fork
初始版本: • 欢迎使用。
-
-
-
-# JableTV AutoLogin Helper
-这是一个用于JableTV 管理用户账户的脚本,主要功能自动登录以及检测用户是否已登录。
-
-
-
-## 功能
-
-- **设置账户**: 通过弹出模态框允许用户设置电子邮件和密码。
-- **登录功能**: 使用用户提供的电子邮件和密码进行登录,并处理登录错误。
-- **用户检测**: 检测用户是否已登录,如果未登录则尝试自动登录。
-
-
-
-## 安装和使用
-
-1. **安装脚本**:
- - 将脚本复制到 Greasemonkey 或 Tampermonkey 插件中。
- - 确保脚本在你希望运行的网页上启用。
-
-2. **设置账户**:
- - 点击浏览器工具栏中的 Greasemonkey/Tampermonkey 图标。
- - 选择“Set Account”选项,输入你的电子邮件和密码,然后点击“Save”。
-
-3. **自动登录**:
- - 脚本会自动检测用户是否已登录。如果检测到未登录状态,它将使用提供的账户信息尝试登录。
-
-
-
-
-
-
-
-> ### 🔍你可能在找成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 Detection JableTV state,and automatically log in when not logged in 」
-Download:Github | ⭐Greasy - Fork
initial version: • Welcome。
-
-
-
-# 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
-
-- **Account Setup**: Allows users to set their email and password via a popup modal.
-- **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
-
-1. **Install the Script**:
- - Copy the script into the Greasemonkey or Tampermonkey extension.
- - Ensure the script is enabled on the webpage where you want it to run.
-
-2. **Set Up Account**:
- - Click on the Greasemonkey/Tampermonkey icon in your browser toolbar.
- - Select the “Set Account” option, enter your email and password, and then click “Save”.
-
-3. **Automatic Login**:
- - 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 may be looking for adult scripts
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-
-
-# MissAV AutoLogin Helper
-
-这是一个用于MissAV管理用户账户的脚本,主要功能自动登录以及检测用户是否已登录。
-
-
-
-## 功能
-
-- **设置账户**: 通过弹出模态框允许用户设置电子邮件和密码。
-- **登录功能**: 使用用户提供的电子邮件和密码进行登录,并处理登录错误。
-- **用户检测**: 检测用户是否已登录,如果未登录则尝试自动登录。
-
-
-
-## 安装和使用
-
-1. **安装脚本**:
- - 将脚本复制到 Greasemonkey 或 Tampermonkey 插件中。
- - 确保脚本在你希望运行的网页上启用。
-
-2. **设置账户**:
- - 点击浏览器工具栏中的 Greasemonkey/Tampermonkey 图标。
- - 选择“Set Account”选项,输入你的电子邮件和密码,然后点击“Save”。
-
-3. **自动登录**:
- - 脚本会自动检测用户是否已登录。如果检测到未登录状态,它将使用提供的账户信息尝试登录。
-
-
-
-
-
-
-
-> ### 🔍你可能在找成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-
-
-
-
-
-「 Detection MisssAV state,and automatically log in when not logged in 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-# 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
-
-- **Account Setup**: Allows users to set their email and password via a popup modal.
-- **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
-
-1. **Install the Script**:
- - Copy the script into the Greasemonkey or Tampermonkey extension.
- - Ensure the script is enabled on the webpage where you want it to run.
-
-2. **Set Up Account**:
- - Click on the Greasemonkey/Tampermonkey icon in your browser toolbar.
- - Select the “Set Account” option, enter your email and password, and then click “Save”.
-
-3. **Automatic Login**:
- - 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 may be looking for adult scripts
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-
-
-
-
-## Help
-
- Recommended browsers and script managers:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **If you need to know more about how to install userscripts,[click me](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)View graphic teaching!**
-
-More user scripts / -back to top↑
- - - - - -
-
-### View all publish scripts
-
-
-
-
-> ### 🔍you may be looking for ChatGPTRelated scripts
-> - [**ChatGPTCode font size reduced**](https://greasyfork.org/scripts/505209): let ChatGPT Code font size becomes smaller
-> - [**ChatGPT 聊天Copy codebutton**](https://greasyfork.org/scripts/509598): exist chatgpt.com Add an animation in the lower right corner of the upper code block“复制代码”按钮
-> - [**ChatGPT character counter**](https://greasyfork.org/scripts/506166): 添加一characters计数器到输入框,limited to 32732 characters。(ChatGPT The limit is 32732 个字符。)
-> - [**ChatGPT Collapse self message and max width**](https://greasyfork.org/scripts/504901): Automatically collapse long messages sent by you,Save screen space。Allows you to set the maximum width of the chat window,Keep long messages from exceeding the specified range。
-
-
-
-> ### 🔍you may be looking for Web related scripts
-> - [**Web page writing clip version authorization manager**](https://greasyfork.org/scripts/497403): Ban web pages from pooping on edited versions,green for release,red ban,orange temporary directions
-> - [**LiftCSDNLoginCopy限制**](https://greasyfork.org/scripts/505207): fuck you CSDN 登录复制,Copy code box content without logging in
-> - [**Beautify web forms with gorgeous gradients**](https://greasyfork.org/scripts/507036): Automatically apply color gradient beautification to all columns of tables on web pages.
-> - [**Highlight keywords on web pages+(recommend)**](https://greasyfork.org/scripts/498906): Highlight text on web pages
-> - [**Highlight web text_mini version**](https://greasyfork.org/scripts/498905): Custom keyword highlighting on web pages including dynamically loaded content on scroll
-> - [**Small window preview**](https://greasyfork.org/scripts/504880): Open link in popup window when dragging link,and provide a preview before opening,use Edge pre-reading technology。At the same time, add an acrylic effect behind the small window when it is opened.。
-> - [**Remove link underline**](https://greasyfork.org/scripts/498625): Remove underline from web links
-> - [**Small scroll button up and down**](https://greasyfork.org/scripts/497251): Add up and down scroll buttons on the right side of the page
-> - [**One-touch top and bottom buttons**](https://greasyfork.org/scripts/500255): Modified fromGreasyforkuser script Add top and bottom buttons to web pages,Facilitates quick movement to the top or bottom of long pages。 Added button color change when scrolling down,3Automatically stops if there is no scrolling within seconds
-
-
-
-> ### 🔍you may be looking for GitHubRelated scripts
-> - [**GitHubSubmit information displayHTML**](https://greasyfork.org/scripts/505830): This script will GitHub The submission information on HTML view,to see submission details more clearly。It will automatically submit the information list、The commit header and latest commit information are converted to HTML Format,Provide better visual effects and user experience。
-> - [**GitHub File list beautifier**](https://greasyfork.org/scripts/508047): 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。
-> - [**Github List of code languages show all**](https://greasyfork.org/scripts/509889): Expand Github List of languages on the repository,Show each language,Instead of hiding small parts in “other” Down
-> - [**GitHub Automatically confirm device authorization**](https://greasyfork.org/scripts/508956): existGitHubThe authorization page automatically enters the authorization code and automatically confirms it.。
-> - [**GitHubfolder下载**](https://greasyfork.org/scripts/505496): Add a download button,Allows easy downloading of specific GitHub 文件夹。
-> - [**GitHubDownload single files and copy filesURL**](https://greasyfork.org/scripts/505501): Add button at the end of each file line,to copy the original file URL and download files
-> - [**🤠 Github Enhance assistant Warehouse display size Inactive development warning Quick jump within the warehouse用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): existGithubShow warehouse size when viewing and searching warehouses ,Inactive development warning,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): Change the sorting method of warehouse list files to descending date order,Conveniently view the latest updated files。
-
-
-
-> ### 🔍you may be looking for GoogleRelated scripts
-> - [**Google Advanced search**](https://greasyfork.org/scripts/502652): This is a for Google Add user script for advanced search form。It adds a hideable advanced search form at the top of the page,Enable you to search for information more precisely。
-> - [**Google Search and block specific sites**](https://greasyfork.org/scripts/500262): Block specific sites from search engine results,Help users filter out unwanted search results。 Custom input blocking site。Format-zhihu -baidu Used to block Google search content
-
-
-
-> ### 🔍you may be looking for GreasyForkRelated scripts
-> - [**GreasyForksuitable for enhancement**](https://greasyfork.org/scripts/497317): The script details page is added. It is suitable for links to be added. Click to open the web page.,Copy web page,tire search
-> - [**GrreasyFork User-published script data visualization**](https://greasyfork.org/scripts/508968): useChart.jsObtaining and visualizing user script data,And generate a chart on the user’s personal homepage to display the detailed installation status below.
-> - [**GreaysFork Enhance WebHookSync settings**](https://greasyfork.org/scripts/506717): This script can help you quickly enter script synchronization information,And add language codes for multiple countries in batches,Instead of clicking the selection boxes one by one and going to the corresponding URL。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): Used by default in forums Markdown Format,Add format help link and Markdown Toolbar introduction
-> - [**GreasyFork Show script ratings**](https://greasyfork.org/scripts/501119): Add evaluation scores to script list
-> - [**GreasyFork Advanced search**](https://greasyfork.org/scripts/505215): Search using Google GreasyFork and SleazyFork upper script
-> - [**GreasyFork Navigation barEnhance**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,Add user list,User console etc.
-> - [**GreasyforkGlue craftsman**](https://greasyfork.org/scripts/497346): Enhancegreasyfork,Copy code,Script download,Precise time to seconds,Home page cleanup,Discuss one-click reporting,Script list jump code added download Beautify view code and display code reference files,show script icon,Jump to adult scripts and other operations
-> - [**Greasyfork Notification assistant**](https://greasyfork.org/scripts/506345): When there’s a new reply to your script or to a discussion you’re participating in,The script will display the latest discussion content in a modal window on the web page。
-> - [**Script FinderGrease Monkey Script Finder**](https://greasyfork.org/scripts/498904): Script Finder is a user script(userscript),It helps you find and manage userscripts on any website
-
-
-
-> ### 🔍you may be looking for adult script
-> - [**MiSSAVAutomatic login**](https://greasyfork.org/scripts/505325): Detection MisssAV state,and automatically log in when not logged in
-> - [**MissAVCollection manager**](https://greasyfork.org/scripts/497682): missPlaylist backup,Support downloading pictures and saving video information.Export local web page Support export towebdav
-> - [**TissAVAutomatic login**](https://greasyfork.org/scripts/506528): Detection TissAV state,and automatically log in when not logged in
-> - [**JableTVAutomatic login**](https://greasyfork.org/scripts/506730): Detection JableTV state,and automatically log in when not logged in
-
-
-
-> ### 🔍you may be looking for automatic translation
-> - [**foreign language terminator**](https://greasyfork.org/scripts/504890): Recognize non-Chinese characters,If the length is greater than 5 And the translated text does not contain Chinese,then replace it with Chinese,Need to be accessiblegooglenetwork
-> - [**web page translation——Automatically translated to Chinese**](https://greasyfork.org/scripts/505208): Give the lower right corner of each non-Chinese web page(Can be adjusted to the lower left corner)add a google Translate icon,This version is a Chinese translation version,Only translate foreign languages into Chinese,Add automatic translation
-
-
-
-
-
-
-
-「 miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav 」
-Download:Github | ⭐Greasy - Fork
-
-
-
-# Missav 批量提取器
-
-
-
-## 简介
-
-Missav 批量提取器是一个用于备份收藏夹和提取视频内容的工具。它可以抓取除了主页下的所有视频,并提供了自定义提取速度和文件命名的功能。下载完成后,生成一个包含图片的 `img` 文件夹和一个 `保存文件名.html` 命名网页文件,用于查看获得的视频信息。
-
-
-
-## 功能
-
-- **抓取视频**:可以抓取除主页外的所有视频,视频播放页面未测试过。
-- **生成按钮**:在页面右上角生成一个按钮,用于启动提取操作。
-- **自定义提取速度**:可以按自己想要的速度进行视频抓取。
-- **下载完成后生成文件**:
- - **img 图片文件夹**:存储视频缩略图。
- - **jsonindex 网页文件**:包含视频信息,包括图片预览,点击图片可查看预览视频,点击标题可跳转到 Missav 自定义翻页和显示的页面。
-- **批量下载**:支持合并所有片单进行批量下载。
-- **批量操作**:支持从多个片单中批量提取视频。
-- **自定义文件名称**:支持自定义保存文件的名称。
-- **自定义提取速度**:可以设置提取视频的速度。
-- **HTML 生成界面**:支持从网络获取图片并生成 HTML 界面。
-- **高清大图下载**:支持下载高清大图。
-- **支持WebDAV备份**:在下载同时保存到webdav。
-
-
-
-## 更新记录
-
-
-
-### 2024/6/14 更新
-
-- **批量下载合并所有片单**:支持将所有片单合并进行批量下载。
-- **除视频播放界面的所有视频提取**:提取除了视频播放界面外的所有视频。
-- **批量选取片单进行批量操作**:支持批量选取片单进行操作。
-- **去除弹出输入框**:去掉了不必要的输入框。
-- **自定义下载保存文件名称**:支持自定义下载文件的名称。
-- **自定义提取速度**:可以设置提取速度。
-- **HTML 生成的界面支持从网络获取图片**:生成的 HTML 界面可以从网络获取图片。
-- **下载高清大图**:支持下载高清大图。
-
-
-
-## 已知问题
-- **最后一页获取完成后提示获取超出最大页的信息**:实际不会去获取。
-
-
-
-## 使用说明
-
-1. **在视频分类下的首页使用**:打开视频分类页面的首页。
-2. **点击右上角的按钮**:启动提取操作。
-3. **设置提取速度**:根据需要调整提取速度。
-4. **下载视频和图片**:提取完成后会生成文件和图片。
-5. **查看 `jsonindex` 网页文件**:查看视频信息,点击图片查看预览,点击标题跳转到 Missav 页面。
-
-
-
-
-> ### 🔍你可能在找成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-
-
-
-
-## 使用帮助
-
- 推荐浏览器和脚本管理器:
-* **Greasemonkey + Waterfox**
-* **Tampermonkey/Violentmonkey + Firefox**
-* **Tampermonkey/Violentmonkey + Chrome**
-* **Userscripts + ios Safari**
-* **Violentmonkey/KiWiBrowser + Android**
-
- **如果你需要了解更多关于如何安装用户脚本,[点击我](https://github.com/ChinaGodMan/UserScripts/blob/main/docs/help/README.md)查看图文教学!**
-
-
-
-
-
-
-
-
-
-### 查看所有发布脚本
-
-
-
-
-> ### 🔍你可能在找 ChatGPT相关脚本
-> - [**ChatGPT代码字体缩小**](https://greasyfork.org/scripts/505209): 让 ChatGPT 代码字体变小
-> - [**ChatGPT 聊天复制代码按钮**](https://greasyfork.org/scripts/509598): 在 chatgpt.com 上代码块的右下角添加一个带有动画的“复制代码”按钮
-> - [**ChatGPT 字符计数器**](https://greasyfork.org/scripts/506166): 添加一个字符计数器到输入框,限制为 32732 个字符。(ChatGPT 的限制是 32732 个字符。)
-> - [**ChatGPT 折叠自己消息和最大宽度**](https://greasyfork.org/scripts/504901): 自动折叠由你发送的长消息,节省屏幕空间。允许你设置聊天窗口的最大宽度,使得长消息不会超出指定范围。
-
-
-
-> ### 🔍你可能在找 网页相关脚本
-> - [**网页写入剪辑版授权管理器**](https://greasyfork.org/scripts/497403): 禁止网页向剪辑版拉屎,绿色为放行,红色禁止,橙色临时方向
-> - [**解除CSDN登录复制限制**](https://greasyfork.org/scripts/505207): 去你妈的 CSDN 登录复制,无需登录即可复制代码框内容
-> - [**绚丽渐变美化网页表格**](https://greasyfork.org/scripts/507036): 自动为网页上的表格所有列应用颜色渐变美化.
-> - [**网页高亮关键字+(推荐)**](https://greasyfork.org/scripts/498906): 对网页上的文字进行高亮显示
-> - [**高亮网页文本_迷你版**](https://greasyfork.org/scripts/498905): 在网页上自定义关键词突出显示包括滚动时动态加载的内容
-> - [**小窗口预览**](https://greasyfork.org/scripts/504880): 拖拽链接时在弹出窗口中打开链接,并在打开前提供预览,使用 Edge 的预读技术。同时在小窗口打开时在背后添加亚克力效果。
-> - [**去除链接下划线**](https://greasyfork.org/scripts/498625): 去除网页链接的下划线
-> - [**上下滚动小按钮**](https://greasyfork.org/scripts/497251): 页面右侧添加上下滚动按钮
-> - [**一键置顶和置底按钮**](https://greasyfork.org/scripts/500255): 修改自Greasyfork用户脚本 为网页添加置顶和置底按钮,方便在长页面中快速移动到顶部或底部。 增加向下滚动时按钮变色,3秒内无滚动自动停止
-
-
-
-> ### 🔍你可能在找 GitHub相关脚本
-> - [**GitHub提交信息显示HTML**](https://greasyfork.org/scripts/505830): 该脚本将 GitHub 上的提交信息转化为 HTML 视图,以更清晰地查看提交详情。它会自动将提交信息列表、提交头部和最新提交信息转化为 HTML 格式,提供更佳的视觉效果和用户体验。
-> - [**GitHub 文件列表美化器**](https://greasyfork.org/scripts/508047): GitHub 文件列表美化器是一个用户脚本,用于增强 GitHub 仓库中的文件显示效果。它可以为文件和文件夹添加颜色,并将文件类型图标替换为小图像,使得代码库更加易于浏览和管理。
-> - [**Github 代码语言列表显示全部**](https://greasyfork.org/scripts/509889): 扩展 Github 存储库上的语言列表,显示每种语言,而不是将小部分隐藏在 “其他” 下
-> - [**GitHub 自动确认设备授权**](https://greasyfork.org/scripts/508956): 在GitHub授权页面自动输入授权码与自动确认。
-> - [**GitHub文件夹下载**](https://greasyfork.org/scripts/505496): 添加一个下载按钮,允许轻松下载特定的 GitHub 文件夹。
-> - [**GitHub下载单文件和复制文件URL**](https://greasyfork.org/scripts/505501): 在每个文件行的末尾添加按钮,以复制原始文件 URL 和下载文件
-> - [**🤠 Github 增强小助手 仓库显示大小 不活跃开发警告 仓库内快捷跳转用户其他仓库 🤠**](https://greasyfork.org/scripts/502291): 在Github查看仓库和搜索仓库时显示仓库大小 ,不活跃开发警告,仓库内快捷跳转.
-> - [**GitHub Sort by Date**](https://greasyfork.org/scripts/505218): 仓库列表文件排序方式改为日期降序,方便查看最新更新的文件。
-
-
-
-> ### 🔍你可能在找 Google相关脚本
-> - [**Google 高级搜索**](https://greasyfork.org/scripts/502652): 这是一个为 Google 添加高级搜索表单的用户脚本。它能在页面顶部添加一个可隐藏的高级搜索表单,使您能够更精确地搜索信息。
-> - [**Google 搜索屏蔽指定站点**](https://greasyfork.org/scripts/500262): 在搜索引擎结果中屏蔽特定的站点,帮助用户过滤掉不需要的搜索结果。 自定义输入屏蔽站点。格式-zhihu -baidu 用于屏蔽谷歌搜索内容
-
-
-
-> ### 🔍你可能在找 GreasyFork相关脚本
-> - [**GreasyFork适用于增强**](https://greasyfork.org/scripts/497317): 脚本详情页增加适用于链接增加点击打开网页,复制网页,轮胎搜索
-> - [**GrreasyFork 用户发布的脚本数据可视化**](https://greasyfork.org/scripts/508968): 使用Chart.js获取和可视化获取用户脚本数据,并在用户个人主页生成一个图表在下方显示详细安装情况
-> - [**GreaysFork 增强 WebHook同步设置**](https://greasyfork.org/scripts/506717): 这个脚本可以帮助你快速输入脚本同步信息,并批量增加多个国家的语言代码,而不用一个个地点击选择框再去对应的网址。
-> - [**GreasyFork Markdown toobar**](https://greasyfork.org/scripts/505164): 在论坛默认使用 Markdown 格式,添加格式帮助链接及 Markdown 工具栏绍
-> - [**GreasyFork 显示脚本评分**](https://greasyfork.org/scripts/501119): 脚本列表添加评价分数
-> - [**GreasyFork 高级搜索**](https://greasyfork.org/scripts/505215): 使用谷歌搜索 GreasyFork 和 SleazyFork 上的脚本
-> - [**GreasyFork 导航栏增强**](https://greasyfork.org/scripts/501880): 增强greasyfork导航栏,增加用户列表,用户控制台等
-> - [**Greasyfork糊裱匠**](https://greasyfork.org/scripts/497346): 增强greasyfork,复制代码,脚本下载,精确时间到秒,主页清理,讨论一键举报,脚本列表跳转代码添加下载 美化查看代码显示代码引用文件,显示脚本图标,跳转成人脚本等等一些操作
-> - [**Greasyfork 通知助手**](https://greasyfork.org/scripts/506345): 当你的脚本或你参与的讨论有新回复时,脚本会在网页上以模态窗口显示最新的讨论内容。
-> - [**Script Finder油猴脚本查找器**](https://greasyfork.org/scripts/498904): Script Finder 是一个用户脚本(userscript),它可以帮助你在任何网站上查找和管理用户脚本
-
-
-
-> ### 🔍你可能在找 成人脚本
-> - [**MiSSAV自动登录**](https://greasyfork.org/scripts/505325): 检测 MisssAV 状态,并且在未登录时自动登录
-> - [**MissAV收藏管理器**](https://greasyfork.org/scripts/497682): miss片单备份,支持下载图片保存视频信息.导出本地网页 支持导出到webdav
-> - [**TissAV自动登录**](https://greasyfork.org/scripts/506528): 检测 TissAV 状态,并且在未登录时自动登录
-> - [**JableTV自动登录**](https://greasyfork.org/scripts/506730): 检测 JableTV 状态,并且在未登录时自动登录
-
-
-
-> ### 🔍你可能在找 自动翻译
-> - [**外语终结者**](https://greasyfork.org/scripts/504890): 识别非中文字符,如果长度大于 5 且翻译文本中不含中文,则替换为中文,需要可访问google的网络
-> - [**网页翻译——自动翻译为中文**](https://greasyfork.org/scripts/505208): 给每个非中文的网页右下角(可以调整到左下角)添加一个 google 翻译图标,该版本为中文翻译版本,只把外语翻译为中文,添加自动翻译
-
-
-