Ddict Translate: Translator - Dictionary

Instantly translate sentences and look up words on website. Just by a mouse click or a keypress.

Ddict Translate: Translator - Dictionary란 무엇입니까?

Ddict Translate: Translator - Dictionary은(는) https://ddict.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly translate sentences and look up words on website. Just by a mouse click or a keypress."입니다.

확장 프로그램 스크린샷

screenshot

Ddict Translate: Translator - Dictionary 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ddict translates directly on the websites without leaving what are you reading.

There are many ways to translate:
- Double click on word.
- Select text and press "Shift" button.
- Select text and click on the Ddict icon next to it.
- Context menu: right-click menu.
- Hotkeys: Alt + D or Alt + Shift + D for Popup
- Ddict Popup also give you another way to type in and translate on the fly.

There are many features:
- Auto text-to-speech.
- Dictionary.
- Definitions.
- Synonyms.
- Examples
...

Ddict respect your privacy, we do not collect, store or send your information to the third-party.

Give Ddict a try, and you can't browse the web without it anymore.                    

확장 프로그램 기본 정보

이름 Ddict Translate: Translator - Dictionary Ddict Translate: Translator - Dictionary
ID bpggmmljdiliancllaapiggllnkbjocb
공식 URL https://chromewebstore.google.com/detail/ddict-translate-translato/bpggmmljdiliancllaapiggllnkbjocb
설명 Instantly translate sentences and look up words on website. Just by a mouse click or a keypress.
파일 크기 97.99 KB
설치 횟수 127,769
현재 버전 5.2.14
최근 업데이트 2024-02-23
출시 날짜 2020-03-09
평점 4.25/5 총 638 개의 평점
개발자 https://ddict.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://ddict.me/
도움말 페이지 URL http://ddict.me/
개인정보 보호 정책 페이지 URL https://ddict.me/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ddict Translate: Translator - Dictionary",
    "description": "Instantly translate sentences and look up words on website. Just by a mouse click or a keypress.",
    "version": "5.2.14",
    "manifest_version": 3,
    "icons": {
        "16": "logo\/16.png",
        "48": "logo\/48.png",
        "128": "logo\/icon.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            }
        },
        "translate": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Translate"
        }
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/spin.gif",
                "img\/audio.png",
                "logo\/48.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Ddict Translate: Translator - Dictionary",
        "default_popup": "popup.html",
        "default_icon": "logo\/icon.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/translate.google.com\/*",
        "*:\/\/translate.googleapis.com\/*",
        "*:\/\/ddict.me\/*",
        "*:\/\/*.ddict.me\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rule1",
                "enabled": true,
                "path": "netRules.json"
            }
        ]
    }
}