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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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:\/\/*\/*"
            ]
        }
    ]
}