Dictionary Search (Dictionary.com/Youglish)

Provides floating buttons for a quick search on word pronunciation on multiple websites.

Dictionary Search (Dictionary.com/Youglish)란 무엇입니까?

Dictionary Search (Dictionary.com/Youglish)은(는) Leon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides floating buttons for a quick search on word pronunciation on multiple websites."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dictionary Search (Dictionary.com/Youglish) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Currently supporting:
1. Dictionary.com
2. Cambridge Dictionary
3. Youglish
4. Howjsay

Open sourced on Github: https://github.com/leonwongdev/pronunciation-ext

Change log:
v1.0.4:
- Used website icons as buttons to reduce the menu size.                    

확장 프로그램 기본 정보

이름 Dictionary Search (Dictionary.com/Youglish) Dictionary Search (Dictionary.com/Youglish)
ID clhkbghopdclagfplhknlhcpnjefpacd
공식 URL https://chromewebstore.google.com/detail/dictionary-search-diction/clhkbghopdclagfplhknlhcpnjefpacd
설명 Provides floating buttons for a quick search on word pronunciation on multiple websites.
파일 크기 18.62 KB
설치 횟수 44
현재 버전 1.0.4
최근 업데이트 2024-02-06
출시 날짜 2023-09-04
평점 4.50/5 총 2 개의 평점
개발자 Leon
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/leonwongprsn/pronunciation-ext
도움말 페이지 URL https://github.com/leonwongdev/pronunciation-ext/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dictionary Search (Dictionary.com\/Youglish)",
    "version": "1.0.4",
    "description": "Provides floating buttons for a quick search on word pronunciation on multiple websites.",
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 3,
    "author": "Leon",
    "icons": {
        "16": "research-16.png",
        "48": "research-48.png",
        "128": "research-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Dictionary Search (Dictionary.com\/Youglish)"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/brandyg.png",
                "images\/cam-dict.jpeg",
                "images\/dict-com.png",
                "images\/howjsay.png"
            ]
        }
    ]
}