GlitterEverywhere

Leaves a glitter trail behind your mouse

Co to jest GlitterEverywhere?

GlitterEverywhere to rozszerzenie Chrome opracowane przez EgoisticalGoat, a jego główną funkcją jest „Leaves a glitter trail behind your mouse”.

Pobierz plik CRX rozszerzenia GlitterEverywhere

Pobierz pliki rozszerzeń GlitterEverywhere 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GlitterEverywhere GlitterEverywhere
ID iiaegbhgobfchilmdhkcijeejmcnicpp
Oficjalny URL https://chrome.google.com/webstore/detail/glittereverywhere/iiaegbhgobfchilmdhkcijeejmcnicpp
Opis Leaves a glitter trail behind your mouse
Rozmiar pliku 38.51 KB
Liczba instalacji 306
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2017-01-31
Data Publikacji 2017-01-31
Ocena 3.80/5 Łącznie 5 Oceny
Deweloper EgoisticalGoat
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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",
        "*:\/\/*\/*"
    ]
}