Synonym Control-F
Control-F that also searches through synonyms.
什么是Synonym Control-F?
Synonym Control-F是由Neil Patil开发的Chrome扩展程序,该扩展的主要功能是“Control-F that also searches through synonyms.”。
扩展截图
下载Synonym Control-F扩展crx文件
下载Synonym Control-F扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ctrl-F that works for synonyms, too!
Ever wanted to find not just the exact word in a page, but other words like it too? Look no further.
An extremely simple utility to find all similar words in a page. 扩展基本信息
| 名称 | |
| ID | ecaoofnlakiannealbioeelkagigklll |
| 官方URL | https://chrome.google.com/webstore/detail/synonym-control-f/ecaoofnlakiannealbioeelkagigklll |
| 简介 | Control-F that also searches through synonyms. |
| 文件大小 | 3.76 MB |
| 安装次数 | 332 |
| 当前版本 | 1.1 |
| 更新时间 | 2014-08-05 |
| 上架时间 | 2014-08-05 |
| 评分 | 3.17/5 共6次评分 |
| 开发者 | Neil Patil |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Synonym Control-F",
"description": "Control-F that also searches through synonyms.",
"version": "1.1",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "Highlight synonyms",
"default_popup": "popup.html",
"default_icon": "icon\/icon-38.png"
},
"web_accessible_resources": [
"thesaurus.txt"
],
"icons": {
"16": "icon\/icon-16.png",
"48": "icon\/icon-48.png",
"128": "icon\/icon-128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Synonym Control-F"
}
}
} | |