Dictionary+

An advanced dictionary.

Qu'est-ce que Dictionary+ ?

Dictionary+ est une extension Chrome développée par http://www.tanmaypatil.me, et sa fonction principale est "An advanced dictionary.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Dictionary+

Téléchargez les fichiers d'extension Dictionary+ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Dictionary+ Dictionary+
ID kokooihpgalpliadoojifljfgpeeddmc
URL Officiel https://chrome.google.com/webstore/detail/dictionary+/kokooihpgalpliadoojifljfgpeeddmc
Description An advanced dictionary.
Taille du Fichier 482 KB
Nombre d'Installations 774
Version Actuelle 0.1.4
Dernière Mise à Jour 2014-03-11
Date de Publication 2014-03-11
Évaluation 4.90/5 Total 10 Évaluations
Développeur http://www.tanmaypatil.me
Type de Paiement free
Langues Prises en Charge 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"
            }
        }
    }
}