MOJiDict Helper

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

什麼是MOJiDict Helper?

MOJiDict Helper是由Yukai Huang開發的Chrome擴展程式,該擴展的主要功能是“Show popup of Japanese vocabulary when double clicking on any text in webpage”。

擴展截圖

screenshot
screenshot

下載MOJiDict Helper擴展crx文件

下載MOJiDict Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

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

擴展基本資訊

名稱 MOJiDict Helper MOJiDict Helper
ID eknkjedaohafedihakaobhjfaabelkem
官方網址 https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem
簡介 Show popup of Japanese vocabulary when double clicking on any text in webpage
檔案大小 37.34 KB
安裝次數 225
目前版本 1.1.0
更新時間 2020-03-25
上架時間 2020-03-22
評分 5.00/5 共 6 次評分
開發者 Yukai Huang
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Yukaii/mojidict-helper
說明頁面URL https://github.com/Yukaii/mojidict-helper/issues
支援的語言 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"
    ]
}