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.

O que é Chinese Notes Chinese-English Dictionary?

Chinese Notes Chinese-English Dictionary é uma extensão do Chrome desenvolvida por https://chinesenotes.com, e sua principal característica é "The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Chinese Notes Chinese-English Dictionary

Baixe arquivos de extensão Chinese Notes Chinese-English Dictionary no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Chinese Notes Chinese-English Dictionary Chinese Notes Chinese-English Dictionary
ID pamihenokjbcmbinloihppkjplfdifak
URL Oficial https://chromewebstore.google.com/detail/chinese-notes-chinese-eng/pamihenokjbcmbinloihppkjplfdifak
Descrição The dictionary can be used to lookup Chinese words by simplified or traditional Chinese or reverse lookup from English equivalent.
Tamanho do Arquivo 8.53 MB
Contagem de Instalações 39
Versão Atual 0.0.5
Última Atualização 2021-05-08
Data de Publicação 2021-04-26
Desenvolvedor https://chinesenotes.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://chinesenotes.com
URL da Página de Ajuda https://github.com/alexamies/chinesenotes-dart/blob/master/chrome-ext/README.md
Idiomas Suportados 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"
    }
}