GakuMei Dictionary

A Japanese-English popup dictionary with flashcard functionality.

Cos'è GakuMei Dictionary?

GakuMei Dictionary è un'estensione di Chrome sviluppata da https://www.gakumei.com, e la sua funzione principale è "A Japanese-English popup dictionary with flashcard functionality.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione GakuMei Dictionary

Scarica i file di estensione GakuMei Dictionary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GakuMei Dictionary GakuMei Dictionary
ID ehbmofbiempneegafcaafgpdobbbbmpi
URL Ufficiale https://chrome.google.com/webstore/detail/gakumei-dictionary/ehbmofbiempneegafcaafgpdobbbbmpi
Descrizione A Japanese-English popup dictionary with flashcard functionality.
Dimensione del File 16.02 MB
Conteggio Installazioni 668
Versione Corrente 1.0.2
Ultimo Aggiornamento 2019-08-03
Data di Pubblicazione 2019-07-30
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://www.gakumei.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.gakumei.com
URL della Pagina della Politica sulla Privacy https://www.gakumei.com/privacy-policy
Lingue Supportate 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]"
        }
    }
}