Light Saber

light saber cursor that follows you

Light Saberคืออะไร?

Light Saber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย FranPR9 และคุณลักษณะหลักของมันคือ "light saber cursor that follows you"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Light Saber

ดาวน์โหลดไฟล์ส่วนขยาย Light Saber ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/"
    ]
}