Cursor Highlighter
Add a visual indicator to your mouse cursor for better visibility
Was ist Cursor Highlighter?
Cursor Highlighter ist eine Chrome-Erweiterung, die von Alexander Lyon entwickelt wurde, und ihr Hauptmerkmal ist "Add a visual indicator to your mouse cursor for better visibility".
Erweiterungsscreenshots
Cursor Highlighter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Cursor Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | echjgnggfpiohepohkpfknhjbnccdjlo |
| Offizielle URL | https://chromewebstore.google.com/detail/cursor-highlighter/echjgnggfpiohepohkpfknhjbnccdjlo |
| Beschreibung | Add a visual indicator to your mouse cursor for better visibility |
| Dateigröße | 60.86 KB |
| Installationsanzahl | 11,158 |
| Aktuelle Version | 2.1.0 |
| Letztes Update | 2022-08-08 |
| Veröffentlichungsdatum | 2020-09-20 |
| Bewertung | 3.43/5 Insgesamt 28 Bewertungen |
| Entwickler | Alexander Lyon |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |