Cursor Motion Blur
Add motion blur to your cursor
Τι είναι το Cursor Motion Blur;
Το Cursor Motion Blur είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον covector, και η κύρια λειτουργία του είναι "Add motion blur to your cursor".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Cursor Motion Blur
Λήψη αρχείων επέκτασης Cursor Motion Blur σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
An open-source project that adds cursor motion blur effect to your Google Chrome browser. After you toggle the extension to "ON", the effect will be present in any website, as long as they start with "http://" or "https://" The effect is customizable. You can change the cursor image to match your OS cursor, increase the length of the motion blur, etc. For more information on the activation or customization process, please visit the GitHub page of this project: https://github.com/covector/cursor-motion-blur#readme
Βασικές Πληροφορίες Επέκτασης
Όνομα | Cursor Motion Blur |
ID | afehkdebfodlbdmohfkiocgjehoendfd |
Επίσημο URL | https://chromewebstore.google.com/detail/cursor-motion-blur/afehkdebfodlbdmohfkiocgjehoendfd |
Περιγραφή | Add motion blur to your cursor |
Μέγεθος Αρχείου | 71.42 KB |
Αριθμός Εγκαταστάσεων | 7,295 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2021-04-23 |
Ημερομηνία Δημοσίευσης | 2021-04-20 |
Αξιολόγηση | 3.05/5 Συνολικά 43 Αξιολογήσεις |
Προγραμματιστής | covector |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/covector/cursor-motion-blur/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cursor Motion Blur", "description": "Add motion blur to your cursor", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/covector.github.io\/cursor-motion-blur\/demo\/" ], "css": [ "moblur-style.css" ], "js": [ "lib\/jquery.js", "lib\/gsap.js", "moblur-script.js" ], "run_at": "document_idle" } ], "icons": { "16": "\/icons\/moblur-icon_16.png", "32": "\/icons\/moblur-icon_32.png", "48": "\/icons\/moblur-icon_48.png", "128": "\/icons\/moblur-icon_128.png" }, "action": { "default_icon": { "16": "\/icons\/moblur-icon_16.png", "32": "\/icons\/moblur-icon_32.png", "48": "\/icons\/moblur-icon_48.png", "128": "\/icons\/moblur-icon_128.png" } }, "options_page": "options.html" } |