Chinese Notes Chinese-English Dictionary

The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.

Chinese Notes Chinese-English Dictionary란 무엇입니까?

Chinese Notes Chinese-English Dictionary은(는) https://chinesenotes.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Chinese Notes Chinese-English Dictionary 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension adds a context menu when text on a web page is selected so that term can be used to lookup and entry in the Chinese dictionary. You can lookup terms with simplified or traditional Chinese or pinyin, or reverse lookup with an English equivalent.                    

확장 프로그램 기본 정보

이름 Chinese Notes Chinese-English Dictionary Chinese Notes Chinese-English Dictionary
ID pamihenokjbcmbinloihppkjplfdifak
공식 URL https://chromewebstore.google.com/detail/chinese-notes-chinese-eng/pamihenokjbcmbinloihppkjplfdifak
설명 The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.
파일 크기 8.53 MB
설치 횟수 39
현재 버전 0.0.5
최근 업데이트 2021-05-08
출시 날짜 2021-04-26
개발자 https://chinesenotes.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://chinesenotes.com
도움말 페이지 URL https://github.com/alexamies/chinesenotes-dart/blob/master/chrome-ext/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chinese Notes Chinese-English Dictionary",
    "short_name": "Chinese Notes",
    "description": "The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.",
    "author": "Alex Amies",
    "version": "0.0.5",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "serviceworker_ext.dart.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Chinese Notes Chinese-English Dictionary",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.google.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.facebook.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.yahoo.com\/*",
                "https:\/\/*.reddit.com\/*",
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.ebay.com\/*",
                "https:\/\/*.instagram.com\/*",
                "https:\/\/*.cnn.com\/*",
                "https:\/\/*.zoom.us\/*",
                "https:\/\/*.craigslist.org\/*",
                "https:\/\/*.weather.com\/*",
                "https:\/\/*.stackoverflow.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.dart.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    }
}