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!
擴展基本資訊
名稱 | Cursor Highlighter |
ID | echjgnggfpiohepohkpfknhjbnccdjlo |
官方網址 | 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" } } |