Quick Define

Shows popup definition of selected term

什么是Quick Define?

Quick Define是由Anton Samoylov开发的Chrome扩展程序,该扩展的主要功能是“Shows popup definition of selected term”。

扩展截图

screenshot
screenshot

下载Quick Define扩展crx文件

下载Quick Define扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Quick Define Quick Define
ID dklgknckeahgflaffkncodfpjcignmin
官方URL https://chrome.google.com/webstore/detail/quick-define/dklgknckeahgflaffkncodfpjcignmin
简介 Shows popup definition of selected term
文件大小 15.18 KB
安装次数 45
当前版本 0.0.2
更新时间 2015-01-12
上架时间 2015-01-12
评分 1.00/5 共1次评分
开发者 Anton Samoylov
付费类型 free
支持的语言 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
}