NHK Easy Furigana on Hover

Hides furigana on the NHK easy news unless the user is hovering over the related kanji.

Что такое NHK Easy Furigana on Hover?

NHK Easy Furigana on Hover - это расширение Chrome, разработанное skywalk211, и его основная функция - "Hides furigana on the NHK easy news unless the user is hovering over the related kanji.".

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

screenshot

Скачать файл CRX расширения NHK Easy Furigana on Hover

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

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

                        This extension modifies the CSS on https://www3.nhk.or.jp/news/easy/ to hide furigana unless the user is hovering over the related kanji. This allows a reader to try and recall the reading of the kanji without the hiragana being directly above it.                    

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

Название NHK Easy Furigana on Hover NHK Easy Furigana on Hover
ID jkochgjgpeebeliibinpgdhddchgpdkm
Официальный URL https://chromewebstore.google.com/detail/nhk-easy-furigana-on-hove/jkochgjgpeebeliibinpgdhddchgpdkm
Описание Hides furigana on the NHK easy news unless the user is hovering over the related kanji.
Размер файла 6.87 KB
Количество установок 132
Текущая Версия 1.0.0
Последнее Обновление 2021-10-29
Дата публикации 2021-10-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик skywalk211
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NHK Easy Furigana on Hover",
    "version": "1.0.0",
    "icons": {
        "128": "128.png"
    },
    "description": "Hides furigana on the NHK easy news unless the user is hovering over the related kanji.",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/www3.nhk.or.jp\/news\/easy\/*"
            ]
        }
    ]
}