Cursor Motion Blur
Add motion blur to your cursor
Cursor Motion Blur क्या है?
Cursor Motion Blur covector द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add motion blur to your cursor"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cursor Motion Blur एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |