Cursor Motion Blur
Add motion blur to your cursor
O que é Cursor Motion Blur?
Cursor Motion Blur é uma extensão do Chrome desenvolvida por covector, e sua principal característica é "Add motion blur to your cursor".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cursor Motion Blur
Baixe arquivos de extensão Cursor Motion Blur no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Cursor Motion Blur |
ID | afehkdebfodlbdmohfkiocgjehoendfd |
URL Oficial | https://chromewebstore.google.com/detail/cursor-motion-blur/afehkdebfodlbdmohfkiocgjehoendfd |
Descrição | Add motion blur to your cursor |
Tamanho do Arquivo | 71.42 KB |
Contagem de Instalações | 7,295 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-04-23 |
Data de Publicação | 2021-04-20 |
Classificação | 3.05/5 Total de 43 Avaliações |
Desenvolvedor | covector |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/covector/cursor-motion-blur/ |
Idiomas Suportados | 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" } |