Cursor Motion Blur

Add motion blur to your cursor

Cursor Motion Blur란 무엇입니까?

Cursor Motion Blur은(는) covector에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add motion blur to your cursor"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Cursor Motion Blur 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
}