EhSyringe is a free, open source browsers & extensions project written in TypeScript and released under MIT. It has 3,704 GitHub stars, 123 forks and 14 open issues, and was last pushed 2 months ago. On this registry it ranks #48 of 65 tracked projects in Browsers & Extensions, with 5 head-to-head comparisons available.

What is EhSyringe?

What it is

EhSyringe is browser extension and userscript for E-Hentai. It injects Chinese translation into site interface, tags, tag descriptions, and search hints. Project lives in TypeScript, MIT license, browser-extension ecosystem, and userscript ecosystem. Repository has 3705 stars, 124 forks, 14 open issues, seven-year age, and last push on 2026-07-12.

It solves missing Chinese text on E-Hentai pages for Chinese readers. EhSyringe replaces visible text with Chinese translation during DOM loading, so page appears Chinese after load without flash. It also updates tag translation data from project database.

Key capabilities

  • Site-wide translation for most pages, replacing visible interface text with Chinese.
  • Tag translation for tags shown in lists and detail pages.
  • Tag introduction translation, showing Chinese explanations for tag descriptions.
  • Search box tag input hints, helping users enter tags.
  • Tag translation data update, using project database list at ehtt.vercel.app/list/all.
  • Chrome extension, Firefox extension, and userscript install paths.
  • Mobile browser support for Via, Alook, and custom script loading.
  • UI translation data maintained in src/services/ui-translation/data.

Who uses it and how

  • Chinese-speaking E-Hentai visitors install Chrome extension to read translated interface and tags.
  • Firefox users install xpi on ESR, Developer Edition, or Nightly, after disabling add-on signature requirement.
  • Userscript users install from Sleazy Fork or GitHub Release through user script manager.
  • Mobile browser users add custom script snippet to load EhSyringe on e-hentai.org or exhentai.org pages.
  • Users of E-Hentai-Downloader and 熊猫书签 can use it while keeping compatibility with those tools.
  • Developers can update UI translation data in src/services/ui-translation/data and publish new release with pnpm version.
  • Users can browse EhTagTranslation/UserScripts for related user script tools.

Getting started

Typical install uses Chrome zip loaded unpacked in developer mode, Firefox xpi installed in ESR, Developer Edition, or Nightly, or userscript installed from Sleazy Fork or GitHub Release, with release assets ehsyringe.chrome.zip, ehsyringe.firefox.xpi, and ehsyringe.user.js. Development release uses pnpm version, git push --follow-tags, and GitHub Actions.

When to use it — and when not to

Use EhSyringe when user wants Chinese translation inside E-Hentai pages and can install browser extension or userscript. Avoid it if user needs fully translated all text, because README says most site-wide translation only. Firefox install needs unsigned add-on setting, Chrome install needs unpacked extension, and translation quality depends on project tag database.

project readme (upstream, from github) — read inline

EhSyringe

Build Status

GitHub All Releases GitHub Releases (by Asset) GitHub Releases (by Asset) GitHub Releases (by Asset)

E 站注射器,将中文翻译注入到 E 站体内。

这一针打下去你就会说中文了。

Syringe

安装

Chrome 安装方法

  1. 前往 Release 页面下载 zip 文件并解压
  2. 打开 Chrome 扩展程序管理器 chrome://extensions
  3. 勾选 开发者模式
  4. 点击 加载已解压的扩展程序,选择本扩展所在目录

Firefox 安装方法

  1. 前往 Release 页面下载 xpi 文件
  2. 安装 Firefox 的延长支持版(ESR)开发者版Nightly 版
  3. 打开 Firefox 配置编辑器(about:config 页),搜索 xpinstall.signatures.required 并将值设置为 false
  4. 打开 Firefox 附加组件管理器 about:addons,点击右上角设置菜单,选择“从文件安装附加组件”,选择下载的 xpi 文件

参考 Firefox 中的附加组件签名

用户脚本(UserScript)安装方法

  1. 安装一个用户脚本管理器
  2. 前往 Sleazy Fork 安装最新版本

也可以从 GitHub Release 安装

如果你使用的是 Via、Alook 等对用户脚本支持不完善的浏览器,可以考虑使用以下代码加载插件

(function () {
    if (/(^|\.)e[-x]hentai\.org$/i.test(location.hostname) && !document.getElementById('EhSyringe-Script')) {
        var script = document.createElement('script');
        script.;
        script.src = 'https://sleazyfork.org/scripts/407833-ehsyringe/code/EhSyringe.user.js';
        document.documentElement.append(script);
    }
})();

功能

  • 全站翻译(大部分)
  • 标签翻译
  • 标签介绍
  • 标签翻译数据更新(当前数据库包含 all 条标签翻译)
  • 搜索框标签输入提示
  • 支持 Via、Alook 等支持自定义脚本的手机浏览器

特点

  • 兼容 E-Hentai-Downloader 及熊猫书签
  • 在加载 DOM 过程替换翻译, 页面加载完直接是中文不会闪烁

截图预览

搜索列表 详情页(标签描述)
搜索提示/补全 标签数据更新

小工具

更新日志

开发

开发指南

发布新版本

  1. 编辑 CHANGELOG.md 并加入暂存区
  2. 运行 pnpm version --no-git-checks 更新版本号
  3. 运行 git push --follow-tags 推送新版本
  4. 等待 GitHub Actions 自动编译并发布新版本

Frequently asked questions

Is EhSyringe free to use?

EhSyringe is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does EhSyringe do?

E 站注射器,将中文翻译注入到 E 站体内

What is EhSyringe written in?

EhSyringe is primarily written in TypeScript. Its source is publicly available at https://github.com/EhTagTranslation/EhSyringe, and it has 3,704 GitHub stars.