네이버 중국어사전

네이버 중국어 사전 크롬 익스텐션

What is 네이버 중국어사전?

네이버 중국어사전 is a Chrome extension developed by pelogvc, and its main feature is "네이버 중국어 사전 크롬 익스텐션".

Extension Screenshots

screenshot
screenshot

Download 네이버 중국어사전 Extension CRX File

Download 네이버 중국어사전 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        네이버 중국어 사전 (비공식)

인터넷을 보다가 드래그만으로 중국어 사전을 검색해보세요.

[버전기록]
3.0.4
- 일부사이트 디자인 오류 수정
3.0.3
- 오류수정
3.0.1
- 일부 사이트에서 검색 안되던 오류 수정
- 이제 오른쪽 마우스로 단어검색이 가능합니다.
3.0.0
- 코드 리팩토링
- 단어장 병음 오류 수정
2.1.2
- 병음 오류 수정
2.1.1
- 단어장 예문 한글/중국어 위치 변경
2.1.0
- 데이터베이스 수정(1.x.x버전의 단어장 기록이 삭제됩니다)
- 오류해결
2.0.1
- 오류해결
2.0.0
- 앱 리뉴얼
- 검색 기능 개선
- 검색시 병음 소리 기능 추가
(기존에 사용하시던 회원님은 단어장 이용을 위해 불가피하게 재설치가 필요합니다. 죄송합니다.)
0.9.0
- 단어장 기능 추가
- 안내 화면 추가
- 검색 기능 개선
0.0.5
- 에러 수정
0.0.4
- 비슷한 단어, 상반된 단어 기능 추가
- 예문 추가
0.0.1
확장앱 출시                    

Extension Basic Information

Name 네이버 중국어사전 네이버 중국어사전
ID cbidecgildpdieiebjdcddmhkjkknkid
Official URL https://chrome.google.com/webstore/detail/%EB%84%A4%EC%9D%B4%EB%B2%84-%EC%A4%91%EA%B5%AD%EC%96%B4%EC%82%AC%EC%A0%84/cbidecgildpdieiebjdcddmhkjkknkid
Description 네이버 중국어 사전 크롬 익스텐션
File Size 839 KB
Installation Count 1,000
Current Version 3.0.4
Last Updated 2022-01-08
Publish Date 2019-11-17
Rating 4.80/5 Total 10 Ratings
Developer pelogvc
Email [email protected]
Payment Type free
Extension Website https://github.com/pelogvc/chinese-dictionary-chrome-extension-v2
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\ub124\uc774\ubc84 \uc911\uad6d\uc5b4\uc0ac\uc804",
    "description": "\ub124\uc774\ubc84 \uc911\uad6d\uc5b4 \uc0ac\uc804 \ud06c\ub86c \uc775\uc2a4\ud150\uc158",
    "version": "3.0.4",
    "background": {
        "default_icon": "assets\/128.png",
        "scripts": [
            ".\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": ".\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                ".\/assets\/css\/contentScript.css"
            ],
            "js": [
                ".\/contentScripts.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "128": "assets\/icons\/128.png"
    },
    "options_ui": {
        "chrome_style": false,
        "page": ".\/options.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs",
        "webRequest",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "search.html"
    ]
}