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文件

下載Chinese Notes Chinese-English Dictionary擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}