GakuMei Dictionary

A Japanese-English popup dictionary with flashcard functionality.

O que é GakuMei Dictionary?

GakuMei Dictionary é uma extensão do Chrome desenvolvida por https://www.gakumei.com, e sua principal característica é "A Japanese-English popup dictionary with flashcard functionality.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão GakuMei Dictionary

Baixe arquivos de extensão GakuMei 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

                        GakuMei Dictionary helps you learn Japanese vocabulary and kanjj more efficiently.

- Translate Japanese words on any website into English by hovering.
- Save the words and kanji you look up as flashcards. All the information is pre filled for you.
- Review your flashcards.

To get started, add GakuMei Dictionary to chrome and click the "G" icon in the top right of your browser and activate the extension. Once activated, navigate to any Japanese website and hover a word to get its translation.                    

Informações Básicas da Extensão

Nome GakuMei Dictionary GakuMei Dictionary
ID ehbmofbiempneegafcaafgpdobbbbmpi
URL Oficial https://chrome.google.com/webstore/detail/gakumei-dictionary/ehbmofbiempneegafcaafgpdobbbbmpi
Descrição A Japanese-English popup dictionary with flashcard functionality.
Tamanho do Arquivo 16.02 MB
Contagem de Instalações 668
Versão Atual 1.0.2
Última Atualização 2019-08-03
Data de Publicação 2019-07-30
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://www.gakumei.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.gakumei.com
URL da Página de Política de Privacidade https://www.gakumei.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GakuMei Dictionary",
    "manifest_version": 2,
    "version": "1.0.2",
    "description": "A Japanese-English popup dictionary with flashcard functionality.",
    "icons": {
        "16": "img\/icon16px.png",
        "48": "img\/icon48px.png",
        "128": "img\/icon128px.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon48px-disabled.png",
        "default_title": "GakuMei Dictionary",
        "default_popup": "menu.html"
    },
    "web_accessible_resources": [
        "dicts\/*.json",
        "img\/*"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}