Cursor Motion Blur
Add motion blur to your cursor
Co to jest Cursor Motion Blur?
Cursor Motion Blur to rozszerzenie Chrome opracowane przez covector, a jego główną funkcją jest „Add motion blur to your cursor”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Cursor Motion Blur
Pobierz pliki rozszerzeń Cursor Motion Blur w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Cursor Motion Blur |
ID | afehkdebfodlbdmohfkiocgjehoendfd |
Oficjalny URL | https://chromewebstore.google.com/detail/cursor-motion-blur/afehkdebfodlbdmohfkiocgjehoendfd |
Opis | Add motion blur to your cursor |
Rozmiar pliku | 71.42 KB |
Liczba instalacji | 7,295 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2021-04-23 |
Data Publikacji | 2021-04-20 |
Ocena | 3.05/5 Łącznie 43 Oceny |
Deweloper | covector |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/covector/cursor-motion-blur/ |
Obsługiwane Języki | 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" } |