GakuMei Dictionary

A Japanese-English popup dictionary with flashcard functionality.

GakuMei Dictionary là gì?

GakuMei Dictionary là một tiện ích mở rộng Chrome được phát triển bởi https://www.gakumei.com, và tính năng chính của nó là "A Japanese-English popup dictionary with flashcard functionality.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GakuMei Dictionary

Tải xuống các tệp mở rộng GakuMei Dictionary dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GakuMei Dictionary GakuMei Dictionary
ID ehbmofbiempneegafcaafgpdobbbbmpi
URL Chính Thức https://chrome.google.com/webstore/detail/gakumei-dictionary/ehbmofbiempneegafcaafgpdobbbbmpi
Mô tả A Japanese-English popup dictionary with flashcard functionality.
Kích Thước Tệp 16.02 MB
Số Lần Cài Đặt 668
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-08-03
Ngày Phát Hành 2019-07-30
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.gakumei.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.gakumei.com
URL Trang Chính Sách Bảo Mật https://www.gakumei.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}