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”。
扩展截图
下载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 |
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:\/\/*\/*" ] } ] } |