ЛЕКСИКА! - Russian Vocabulary Tool

This extension replaces certain English nouns on a webpage with their Russian equivalents.

Что такое ЛЕКСИКА! - Russian Vocabulary Tool?

ЛЕКСИКА! - Russian Vocabulary Tool - это расширение Chrome, разработанное Brendan, и его основная функция - "This extension replaces certain English nouns on a webpage with their Russian equivalents.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ЛЕКСИКА! - Russian Vocabulary Tool

Скачайте файлы расширений ЛЕКСИКА! - Russian Vocabulary Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This is a simple extension to help you expand your Russian vocabulary. Once installed, the extension will automatically scan every website you visit for English-Russian pairs in its dictionary (currently contains over 800 word pairs) and swap in the Russian translations.

If a Russian word is giving you trouble, you can easily highlight it and right-click to have the English translation listed for you. You can also open up the extension menu to see the entire dictionary of words for that page, along with information on word gender and number. Extension settings allow you to change the density and difficulty of the Russian words used.

Sometimes you might want to quickly read a page in English if the Russian words are giving you trouble: simply press "Disable Once" in the extension's menu to switch the page back to the original English. Alternatively, if you want to prevent pages on a given website from ever being altered, just press "Disable Domain" in the extension menu.

The ONLY information stored by the extension is which sites you've chosen to disable it on. No ads, free forever, etc etc.

Version 1.6.1: minor bug-fixes with the right-click menu.                    

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

Название ЛЕКСИКА! - Russian Vocabulary Tool ЛЕКСИКА! - Russian Vocabulary Tool
ID nhkfellofhhgdjhhlpmjpfkakobinldf
Официальный URL https://chromewebstore.google.com/detail/%D0%BB%D0%B5%D0%BA%D1%81%D0%B8%D0%BA%D0%B0-russian-vocabular/nhkfellofhhgdjhhlpmjpfkakobinldf
Описание This extension replaces certain English nouns on a webpage with their Russian equivalents.
Размер файла 131 KB
Количество установок 92
Текущая Версия 1.6.1
Последнее Обновление 2017-03-28
Дата публикации 2017-03-28
Рейтинг 3.80/5 Всего 10 оценок
Разработчик Brendan
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\u041b\u0415\u041a\u0421\u0418\u041a\u0410! - Russian Vocabulary Tool",
    "short_name": "\u041b\u0415\u041a\u0421\u0418\u041a\u0410!",
    "description": "This extension replaces certain English nouns on a webpage with their Russian equivalents.",
    "version": "1.6.1",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "\u041b\u0415\u041a\u0421\u0418\u041a\u0410!"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "contextMenuEvent.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "dictionary.js",
                "swapscript.js"
            ]
        }
    ],
    "icons": {
        "16": "16icon.png",
        "48": "48icon.png",
        "128": "128icon.png"
    }
}