Cursor Motion Blur
Add motion blur to your cursor
Cursor Motion Blurとは何ですか?
Cursor Motion Blurはcovectorによって開発されたChromeの拡張機能で、その主な機能は「Add motion blur to your cursor」です。
拡張機能のスクリーンショット
Cursor Motion Blur拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } |