Cursorlux - Mouse Highlighter

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

Τι είναι το Cursorlux - Mouse Highlighter;

Το Cursorlux - Mouse Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Joshua Daniel, και η κύρια λειτουργία του είναι "A customizable mouse highlighter extension to highlight your cursor and clicks!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cursorlux - Mouse Highlighter

Λήψη αρχείων επέκτασης 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
}