BingTranslatorX
基于必应词典的中英互译, 支持鼠标悬浮取词、英美音标和发音。An English-Chinese/Chinese-English translator based on Bing dict.
什么是BingTranslatorX?
BingTranslatorX是由Hailong Cao开发的Chrome扩展程序,该扩展的主要功能是“基于必应词典的中英互译, 支持鼠标悬浮取词、英美音标和发音。An English-Chinese/Chinese-English translator based on Bing dict.”。
扩展截图
下载BingTranslatorX扩展crx文件
下载BingTranslatorX扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
一个基于必应词典的翻译工具, 支持鼠标选择/悬浮取词、英美音标和发音。如果你喜欢必应词典,不要错过哦! A Translation tool based on Bing Dict, supports mouse hovering and selection.
扩展基本信息
名称 | BingTranslatorX |
ID | jjeahpiblnooclghjhjmcdhlmmfpdjkh |
官方URL | https://chromewebstore.google.com/detail/bingtranslatorx/jjeahpiblnooclghjhjmcdhlmmfpdjkh |
简介 | 基于必应词典的中英互译, 支持鼠标悬浮取词、英美音标和发音。An English-Chinese/Chinese-English translator based on Bing dict. |
文件大小 | 1.72 MB |
安装次数 | 188 |
当前版本 | 2.0 |
更新时间 | 2023-11-14 |
上架时间 | 2019-08-11 |
评分 | 5.00/5 共3次评分 |
开发者 | Hailong Cao |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/hailengc/BingTranslatorX |
帮助页面URL | https://github.com/hailengc/BingTranslatorX/issues |
支持的语言 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BingTranslatorX", "version": "2.0", "default_locale": "en", "description": "\u57fa\u4e8e\u5fc5\u5e94\u8bcd\u5178\u7684\u4e2d\u82f1\u4e92\u8bd1, \u652f\u6301\u9f20\u6807\u60ac\u6d6e\u53d6\u8bcd\u3001\u82f1\u7f8e\u97f3\u6807\u548c\u53d1\u97f3\u3002An English-Chinese\/Chinese-English translator based on Bing dict. ", "permissions": [ "storage" ], "options_page": "setting.html", "background": { "service_worker": "service_worker.js" }, "action": { "default_popup": "setting.html", "default_title": "BingTranslatorX", "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" } }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "content_scripts": [ { "js": [ "lib\/external\/mustache.min.js", "template\/mustacheTemplates.js", "lib\/QueryTarget.js", "lib\/util.js", "content\/init.js", "content\/contentScript.js" ], "css": [ "style\/main.css" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/\/*" ] } ] } |