Cursor Pet

A cute little pet that follows your cursor.

什麼是Cursor Pet?

Cursor Pet是由April Huang開發的Chrome擴展程式,該擴展的主要功能是“A cute little pet that follows your cursor.”。

擴展截圖

screenshot
screenshot

下載Cursor Pet擴展crx文件

下載Cursor Pet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        FEATURES
- A floating Paimon companion that follows your cursor.
- Never lose track of your cursor.
- The image is non-intrusive and doesn't block mouse clicks.
- The image temporarily disappears when the cursor idles.

v1.1.0 NEW FEATURES
- Change icon to any image of your choice.
- Change size of the image, flip the image, and adjust distance from the cursor.

This extension should work on most web pages (the image will not appear on new tabs, the Chrome Web Store pages, and some other sites).                    

擴展基本資訊

名稱 Cursor Pet Cursor Pet
ID iiabgfkclnahbclmddagjnkjhloepclb
官方網址 https://chromewebstore.google.com/detail/cursor-pet/iiabgfkclnahbclmddagjnkjhloepclb
簡介 A cute little pet that follows your cursor.
檔案大小 134 KB
安裝次數 81
目前版本 1.1.0
更新時間 2023-12-13
上架時間 2023-06-25
評分 5.00/5 共 1 次評分
開發者 April Huang
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cursor Pet",
    "version": "1.1.0",
    "description": "A cute little pet that follows your cursor.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chibi_paimon_cautious.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}