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