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 |
| Eメール | [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"
}
} | |