GlitterEverywhere
Leaves a glitter trail behind your mouse
Vad är GlitterEverywhere?
GlitterEverywhere är en Chrome-tillägg utvecklad av EgoisticalGoat, och dess huvudfunktion är "Leaves a glitter trail behind your mouse".
Ladda ner GlitterEverywhere-förlängningens CRX-fil
Ladda ner GlitterEverywhere-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | iiaegbhgobfchilmdhkcijeejmcnicpp |
Officiell webbadress | https://chrome.google.com/webstore/detail/glittereverywhere/iiaegbhgobfchilmdhkcijeejmcnicpp |
Beskrivning | Leaves a glitter trail behind your mouse |
Filstorlek | 38.51 KB |
Antal Installationer | 306 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2017-01-31 |
Publiceringsdatum | 2017-01-31 |
Betyg | 3.80/5 Totalt 5 Betyg |
Utvecklare | EgoisticalGoat |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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", "*:\/\/*\/*" ] } |