Dictionary Tool

This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension

什麼是Dictionary Tool?

Dictionary Tool是由https://stlwebsitedevelopment.com開發的Chrome擴展程式,該擴展的主要功能是“This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension”。

擴展截圖

screenshot

下載Dictionary Tool擴展crx文件

下載Dictionary Tool擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A chrome extension that allows you to highlight a word on the page, click on my extension and get a definition of the word you have highlighted. The extension is connected to a dictionary database and uses a special algorithm to retrieve the highlighted text, query the database and retrieve the definition for you in an elegant, simple, and well designed chrome extension.                    

擴展基本資訊

名稱 Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
官方網址 https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
簡介 This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
檔案大小 181 KB
安裝次數 577
目前版本 2.1
更新時間 2023-01-26
上架時間 2017-07-31
評分 2.00/5 共 4 次評分
開發者 https://stlwebsitedevelopment.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary Tool",
    "description": "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension",
    "version": "2.1",
    "author": "Leon Krugliakov",
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js",
                "scripts\/jquery.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}