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" } |