Light Saber

light saber cursor that follows you

Light Saber란 무엇입니까?

Light Saber은(는) FranPR9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "light saber cursor that follows you"입니다.

확장 프로그램 스크린샷

screenshot

Light Saber 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Light Saber that follows your cursor.
You can change it color, turn off the sound and send it to the back and front of your page                    

확장 프로그램 기본 정보

이름 Light Saber Light Saber
ID ecjhncafajenonjhgojomkbpbnbclkbk
공식 URL https://chrome.google.com/webstore/detail/light-saber/ecjhncafajenonjhgojomkbpbnbclkbk
설명 light saber cursor that follows you
파일 크기 175 KB
설치 횟수 510
현재 버전 0.3
최근 업데이트 2015-12-16
출시 날짜 2015-12-16
평점 1.62/5 총 13 개의 평점
개발자 FranPR9
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/FranPR9/light_saber
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Light Saber",
    "description": "light saber cursor that follows you",
    "version": "0.3",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "img\/lightsaber.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "js\/light_saber.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png",
        "audio\/*.WAV"
    ],
    "icons": {
        "16": "img\/lightsaber.png",
        "128": "img\/lightsaber.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/www.google.com\/*",
        "clipboardRead",
        "clipboardWrite",
        "https:\/\/ajax.googleapis.com\/"
    ]
}