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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

BingTranslatorX 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        一个基于必应词典的翻译工具, 支持鼠标选择/悬浮取词、英美音标和发音。如果你喜欢必应词典,不要错过哦!
A Translation tool based on Bing Dict, supports mouse hovering and selection.                    

확장 프로그램 기본 정보

이름 BingTranslatorX 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:\/\/\/*"
            ]
        }
    ]
}