MOJiDict Helper

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

Что такое MOJiDict Helper?

MOJiDict Helper - это расширение Chrome, разработанное Yukai Huang, и его основная функция - "Show popup of Japanese vocabulary when double clicking on any text in webpage".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения MOJiDict Helper

Скачайте файлы расширений MOJiDict Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

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

Основная информация о расширении

Название MOJiDict Helper MOJiDict Helper
ID eknkjedaohafedihakaobhjfaabelkem
Официальный URL 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
Электронная почта support@yukai.dev
Тип оплаты 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"
    ]
}