MOJiDict Helper

Show popup of Japanese vocabulary when double clicking on any text in webpage

MOJiDict Helper là gì?

MOJiDict Helper là một tiện ích mở rộng Chrome được phát triển bởi Yukai Huang, và tính năng chính của nó là "Show popup of Japanese vocabulary when double clicking on any text in webpage".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng MOJiDict Helper 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

                        只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字!

背後利用了「MOJi辞書」mojidict.com 的 API                    

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

Tên MOJiDict Helper MOJiDict Helper
ID eknkjedaohafedihakaobhjfaabelkem
URL Chính Thức https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem
Mô tả Show popup of Japanese vocabulary when double clicking on any text in webpage
Kích Thước Tệp 37.34 KB
Số Lần Cài Đặt 225
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2020-03-25
Ngày Phát Hành 2020-03-22
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Yukai Huang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Yukaii/mojidict-helper
URL Trang Trợ Giúp https://github.com/Yukaii/mojidict-helper/issues
Ngôn Ngữ Được Hỗ Trợ zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MOJiDict Helper",
    "description": "Show popup of Japanese vocabulary when double clicking on any text in webpage",
    "version": "1.1.0",
    "incognito": "split",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.mojidict.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "images\/loading.gif"
    ]
}