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 là gì?

Dictionary Tool là một tiện ích mở rộng Chrome được phát triển bởi https://stlwebsitedevelopment.com, và tính năng chính của nó là "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dictionary Tool

Tải xuống các tệp mở rộng Dictionary Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
URL Chính Thức https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
Mô tả This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Kích Thước Tệp 181 KB
Số Lần Cài Đặt 577
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2023-01-26
Ngày Phát Hành 2017-07-31
Đánh Giá 2.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://stlwebsitedevelopment.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}