GlitterEverywhere

Leaves a glitter trail behind your mouse

Что такое GlitterEverywhere?

GlitterEverywhere - это расширение Chrome, разработанное EgoisticalGoat, и его основная функция - "Leaves a glitter trail behind your mouse".

Скачать файл CRX расширения GlitterEverywhere

Скачайте файлы расширений GlitterEverywhere в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Leaves a trail of glitter behind your mouse on every movement.
Useful if your browsing experience is getting too boring and you want to add a splash of color.                    

Основная информация о расширении

Название GlitterEverywhere GlitterEverywhere
ID iiaegbhgobfchilmdhkcijeejmcnicpp
Официальный URL https://chrome.google.com/webstore/detail/glittereverywhere/iiaegbhgobfchilmdhkcijeejmcnicpp
Описание Leaves a glitter trail behind your mouse
Размер файла 38.51 KB
Количество установок 306
Текущая Версия 0.1.0
Последнее Обновление 2017-01-31
Дата публикации 2017-01-31
Рейтинг 3.80/5 Всего 5 оценок
Разработчик EgoisticalGoat
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GlitterEverywhere",
    "description": "Leaves a glitter trail behind your mouse",
    "manifest_version": 2,
    "version": "0.1.0",
    "content_scripts": [
        {
            "js": [
                "glitter_script.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}