Dictionary+

An advanced dictionary.

Что такое Dictionary+?

Dictionary+ - это расширение Chrome, разработанное http://www.tanmaypatil.me, и его основная функция - "An advanced dictionary.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        View more than definitions while you browse the web.
With this extension, you can:
1) Search a word and get definitions, examples and related words.
2) Get complete definitions with all parts of speech possible.
3) Extension's user interface is focused on a better readability while browsing above features.
4) Get word of the day everyday.

This is a very basic version of the extension. Many features due in next updates. 
Stay tuned for the updates! ;)

Upcoming features:
1) Double-click to search a word: with a bubble pop-up.
2) History of words searched.
3) Web and wiki definitions.
4) Pronunciations.

NOTE: This extension uses Wordnik API to fetch definitions, examples and related words.                    

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

Название Dictionary+ Dictionary+
ID kokooihpgalpliadoojifljfgpeeddmc
Официальный URL https://chrome.google.com/webstore/detail/dictionary+/kokooihpgalpliadoojifljfgpeeddmc
Описание An advanced dictionary.
Размер файла 482 KB
Количество установок 774
Текущая Версия 0.1.4
Последнее Обновление 2014-03-11
Дата публикации 2014-03-11
Рейтинг 4.90/5 Всего 10 оценок
Разработчик http://www.tanmaypatil.me
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "name": "Dictionary+",
    "description": "An advanced dictionary.",
    "version": "0.1.4",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/developer.wordnik.com\/*",
        "http:\/\/developer.wordnik.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "static\/icon128.png",
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "static\/icon19.png"
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Toggle Dictionary+"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}