Easy Definition (Highlight and Ctrl+Space)

Easy Definition (Highlight and Ctrl+Space)

什麼是Easy Definition (Highlight and Ctrl+Space)?

Easy Definition (Highlight and Ctrl+Space)是由Prateek Jha開發的Chrome擴展程式,該擴展的主要功能是“Easy Definition (Highlight and Ctrl+Space)”。

擴展截圖

screenshot
screenshot

下載Easy Definition (Highlight and Ctrl+Space)擴展crx文件

下載Easy Definition (Highlight and Ctrl+Space)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Easily get the definition of any word by pressing Ctrl + Space.

How to use:
On any web page highlight the word using mouse pointer and Press CTRL+Space

No need to open new tabs and loose sight of your working page even for a second. It gets you the simplest ever meaning of the selected word from web.

To change the shortcut command go to chrome://extensions/shortcuts. Find Easy Definition and choose any set of available commands.

For any complains and queries reach us at [email protected].                    

擴展基本資訊

名稱 Easy Definition (Highlight and Ctrl+Space) Easy Definition (Highlight and Ctrl+Space)
ID oiphjheegkcofbmfcjjjgpeeieddfnml
官方網址 https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml
簡介 Easy Definition (Highlight and Ctrl+Space)
檔案大小 17.79 KB
安裝次數 21
目前版本 1.0.0
更新時間 2020-04-13
上架時間 2020-04-10
評分 5.00/5 共 3 次評分
開發者 Prateek Jha
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Definition (Highlight and Ctrl+Space)",
    "version": "1.0.0",
    "description": "Easy Definition (Highlight and Ctrl+Space)",
    "icons": {
        "128": "finder_128.png"
    },
    "browser_action": {
        "default_icon": "finder_128_popup.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "MacCtrl+Space"
            }
        }
    }
}