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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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:\/\/*\/*"
]
}
]
} | |