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文件

下載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 Cursor Motion Blur
ID afehkdebfodlbdmohfkiocgjehoendfd
官方網址 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"
}