Quick Define

Shows popup definition of selected term

What is Quick Define?

Quick Define is a Chrome extension developed by Anton Samoylov, and its main feature is "Shows popup definition of selected term".

Extension Screenshots

screenshot
screenshot

Download Quick Define Extension CRX File

Download Quick Define 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

                        The wisdom of humankind two clicks away! Select any text in Chrome to receive instant definition and answers; no need to copy and paste! Also you won't lose your context, as the definition is showed on the same page.                    

Extension Basic Information

Name Quick Define Quick Define
ID dklgknckeahgflaffkncodfpjcignmin
Official URL https://chrome.google.com/webstore/detail/quick-define/dklgknckeahgflaffkncodfpjcignmin
Description Shows popup definition of selected term
File Size 15.18 KB
Installation Count 45
Current Version 0.0.2
Last Updated 2015-01-12
Publish Date 2015-01-12
Rating 1.00/5 Total 1 Ratings
Developer Anton Samoylov
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Define",
    "description": "Shows popup definition of selected term",
    "version": "0.0.2",
    "permissions": [
        "contextMenus",
        "activeTab",
        "https:\/\/www.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "page.js",
                "popup.js"
            ],
            "css": [
                "popup.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "QuickDefineLogoBlack128.png"
    },
    "manifest_version": 2
}