Light Saber

light saber cursor that follows you

Co to jest Light Saber?

Light Saber to rozszerzenie Chrome opracowane przez FranPR9, a jego główną funkcją jest „light saber cursor that follows you”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Light Saber

Pobierz pliki rozszerzeń Light Saber w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Light Saber Light Saber
ID ecjhncafajenonjhgojomkbpbnbclkbk
Oficjalny URL https://chrome.google.com/webstore/detail/light-saber/ecjhncafajenonjhgojomkbpbnbclkbk
Opis light saber cursor that follows you
Rozmiar pliku 175 KB
Liczba instalacji 510
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2015-12-16
Data Publikacji 2015-12-16
Ocena 1.62/5 Łącznie 13 Oceny
Deweloper FranPR9
Typ Płatności free
Strona Rozszerzenia https://github.com/FranPR9/light_saber
Obsługiwane Języki 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\/"
    ]
}