Light Saber

light saber cursor that follows you

Light Saber क्या है?

Light Saber FranPR9 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "light saber cursor that follows you"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Light Saber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/"
    ]
}