Cursorlux - Mouse Highlighter

A customizable mouse highlighter extension to highlight your cursor and clicks!

什么是Cursorlux - Mouse Highlighter?

Cursorlux - Mouse Highlighter是由Joshua Daniel开发的Chrome扩展程序,该扩展的主要功能是“A customizable mouse highlighter extension to highlight your cursor and clicks!”。

扩展截图

screenshot
screenshot
screenshot

下载Cursorlux - Mouse Highlighter扩展crx文件

下载Cursorlux - Mouse Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        What Cursorlux does:
★ Highlights your cursor and clicks
★ Allows you to customize the color, size, opacity, etc.
★ Provides you options for click, background, and border styles
★ Syncs your custom settings across your various Google accounts
★ Enables you to activate/pause the extension on the fly

Use Cases:
★ Screen Sharing
★ Screen Recording (Tutorials, Demos, etc.)
★ Accessibility Needs for the Visually Impaired
★ Or you just want your cursor to stand out more!

==============================

Free and Open Source:
https://github.com/joshuajadaniel/cursorlux                    

扩展基本信息

名称 Cursorlux - Mouse Highlighter Cursorlux - Mouse Highlighter
ID nbnfkhblcofmmbeamohjmmjfmfmhknpj
官方URL https://chromewebstore.google.com/detail/cursorlux-mouse-highlight/nbnfkhblcofmmbeamohjmmjfmfmhknpj
简介 A customizable mouse highlighter extension to highlight your cursor and clicks!
文件大小 146 KB
安装次数 2,411
当前版本 1.0.0
更新时间 2021-03-20
上架时间 2021-03-20
评分 4.23/5 共13次评分
开发者 Joshua Daniel
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Cursorlux",
    "name": "Cursorlux - Mouse Highlighter",
    "homepage_url": "https:\/\/github.com\/joshuajadaniel\/cursorlux",
    "version": "1.0.0",
    "description": "A customizable mouse highlighter extension to highlight your cursor and clicks!",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "css": [
                "foreground.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}