GakuMei Dictionary

A Japanese-English popup dictionary with flashcard functionality.

Hvad er GakuMei Dictionary?

GakuMei Dictionary er en Chrome-udvidelse udviklet af https://www.gakumei.com, og dens hovedfunktion er "A Japanese-English popup dictionary with flashcard functionality.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download GakuMei Dictionary-udvidelses-CRX-fil

Download GakuMei Dictionary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GakuMei Dictionary GakuMei Dictionary
ID ehbmofbiempneegafcaafgpdobbbbmpi
Officiel URL https://chrome.google.com/webstore/detail/gakumei-dictionary/ehbmofbiempneegafcaafgpdobbbbmpi
Beskrivelse A Japanese-English popup dictionary with flashcard functionality.
Filstørrelse 16.02 MB
Antal Installationer 668
Nuværende Version 1.0.2
Senest Opdateret 2019-08-03
Udgivelsesdato 2019-07-30
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler https://www.gakumei.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.gakumei.com
URL til Fortrolighedspolitik Side https://www.gakumei.com/privacy-policy
Understøttede Sprog 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]"
        }
    }
}