Dictionary+

An advanced dictionary.

What is Dictionary+?

Dictionary+ is a Chrome extension developed by http://www.tanmaypatil.me, and its main feature is "An advanced dictionary.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Dictionary+ Extension CRX File

Download Dictionary+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Dictionary+ Dictionary+
ID kokooihpgalpliadoojifljfgpeeddmc
Official URL https://chrome.google.com/webstore/detail/dictionary+/kokooihpgalpliadoojifljfgpeeddmc
Description An advanced dictionary.
File Size 482 KB
Installation Count 774
Current Version 0.1.4
Last Updated 2014-03-11
Publish Date 2014-03-11
Rating 4.90/5 Total 10 Ratings
Developer http://www.tanmaypatil.me
Payment Type free
Supported Languages 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"
            }
        }
    }
}