Kite Cursor

A kite that follows your cursor!

Kite Cursor란 무엇입니까?

Kite Cursor은(는) venashial에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A kite that follows your cursor!"입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Reminiscent of an older internet, this extension brings kites to follow your mouse cursor around, adding a little fun to your internet use. The kite is yellow, red, blue, and green, and has a few little bows attached to the string. On every website, the kite will follow your mouse. The kite follows gravity, but if you move quick enough, you can do a few fun flips!

To disable the kite, click on its icon in the toolbar.                    

확장 프로그램 기본 정보

이름 Kite Cursor Kite Cursor
ID elcniipaedflgjligleppinfkhocdcdh
공식 URL https://chromewebstore.google.com/detail/kite-cursor/elcniipaedflgjligleppinfkhocdcdh
설명 A kite that follows your cursor!
파일 크기 16.03 KB
설치 횟수 64
현재 버전 0.0.2
최근 업데이트 2023-11-15
출시 날짜 2022-03-28
평점 5.00/5 총 1 개의 평점
개발자 venashial
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/venashial/kite-cursor
도움말 페이지 URL https://github.com/venashial/kite-cursor/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kite Cursor",
    "description": "A kite that follows your cursor!",
    "version": "0.0.2",
    "homepage_url": "https:\/\/github.com\/venashial\/kite-cursor#readme",
    "icons": {
        "48": "icons\/48.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loader.js"
            ]
        }
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png"
        },
        "default_title": "Kite Cursor"
    }
}