Cursor Highlighter
Add a visual indicator to your mouse cursor for better visibility
什么是Cursor Highlighter?
Cursor Highlighter是由Alexander Lyon开发的Chrome扩展程序,该扩展的主要功能是“Add a visual indicator to your mouse cursor for better visibility”。
扩展截图
下载Cursor Highlighter扩展crx文件
下载Cursor Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add a customizable visual indicator to your mouse cursor on any website. Whether to assist those who are visually impaired or for presentation/education purposes, this will make your cursor stand out!
Select one of the default colors, or use the built-in color picker to choose your own unique color to fit your personality! 扩展基本信息
| 名称 | |
| ID | echjgnggfpiohepohkpfknhjbnccdjlo |
| 官方URL | https://chromewebstore.google.com/detail/cursor-highlighter/echjgnggfpiohepohkpfknhjbnccdjlo |
| 简介 | Add a visual indicator to your mouse cursor for better visibility |
| 文件大小 | 60.86 KB |
| 安装次数 | 11,158 |
| 当前版本 | 2.1.0 |
| 更新时间 | 2022-08-08 |
| 上架时间 | 2020-09-20 |
| 评分 | 3.43/5 共28次评分 |
| 开发者 | Alexander Lyon |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Cursor Highlighter",
"description": "Add a visual indicator to your mouse cursor for better visibility",
"version": "2.1.0",
"manifest_version": 2,
"options_page": "options\/options.html",
"permissions": [
"storage"
],
"browser_action": {
"default_popup": "options\/options.html",
"default_icon": "images\/cursor-highlighter-logo-sm.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"all_frames": false,
"js": [
"dist\/main.bundle.js"
]
}
],
"icons": {
"16": "images\/cursor-highlighter-logo-sm.png",
"48": "images\/cursor-highlighter-logo-md.png",
"128": "images\/cursor-highlighter-logo-lg.png"
}
} | |