Element Text Selector
Highlights text based on elements.
什么是Element Text Selector?
Element Text Selector是由HobbyDev开发的Chrome扩展程序,该扩展的主要功能是“Highlights text based on elements.”。
扩展截图
下载Element Text Selector扩展crx文件
下载Element Text Selector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension highlights text based on elements. Useful for text-to-speech and other applications.
Click or select a place to start and activate it through the toolbar icon, right-click menu, or with Ctrl+Shift+A. Activate it multiple times to step through parent elements. 扩展基本信息
| 名称 | |
| ID | ajjdehfgjbdjiinaipdglfppekcnigjd |
| 官方URL | https://chromewebstore.google.com/detail/element-text-selector/ajjdehfgjbdjiinaipdglfppekcnigjd |
| 简介 | Highlights text based on elements. |
| 文件大小 | 16.19 KB |
| 安装次数 | 1,449 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-05-27 |
| 上架时间 | 2018-05-27 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | HobbyDev |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Element Text Selector",
"version": "1.0",
"description": "Highlights text based on elements.",
"permissions": [
"contextMenus",
"activeTab"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "16.png"
},
"commands": {
"usedHotkey": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"windows": "Ctrl+Shift+A",
"mac": "Command+Shift+A"
},
"description": "Highlights text"
}
},
"manifest_version": 2,
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
}
} | |