Instant Dictionary
View definition in both English and Chinese as you browse the web.
什么是Instant Dictionary?
Instant Dictionary是由Peter Pi开发的Chrome扩展程序,该扩展的主要功能是“View definition in both English and Chinese as you browse the web.”。
扩展截图
下载Instant Dictionary扩展crx文件
下载Instant Dictionary扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
IMPORTANT: - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome. Instant Dictionary helps to make the translation become more convenient. Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.
扩展基本信息
名称 | |
ID | hjpcapcphfbomgjkghdiiogelgikcmpa |
官方URL | https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa |
简介 | View definition in both English and Chinese as you browse the web. |
文件大小 | 696 KB |
安装次数 | 121 |
当前版本 | 1.0.6 |
更新时间 | 2022-01-08 |
上架时间 | 2020-04-18 |
评分 | 5.00/5 共1次评分 |
开发者 | Peter Pi |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instant Dictionary", "version": "1.0.6", "description": "View definition in both English and Chinese as you browse the web.", "author": "Peter Pi", "icons": { "128": "icon_128.png" }, "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "Styles.css" ], "js": [ "content.js", "jquery-3.4.1.min.js" ] } ], "permissions": [ "activeTab", "storage" ] } |