Let It Snow
Add cute snowflakes to your browser on every page.
Cos'è Let It Snow?
Let It Snow è un'estensione di Chrome sviluppata da kravse, e la sua funzione principale è "Add cute snowflakes to your browser on every page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Let It Snow
Scarica i file di estensione Let It Snow in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Simple animation to add snowflakes to any website. Toggle it on/off whenever you want. Informazioni di Base sull'Estensione
| Nome | |
| ID | himjfahoodiglodlcapifigneoepnkbk |
| URL Ufficiale | https://chrome.google.com/webstore/detail/let-it-snow/himjfahoodiglodlcapifigneoepnkbk |
| Descrizione | Add cute snowflakes to your browser on every page. |
| Dimensione del File | 6.37 MB |
| Conteggio Installazioni | 19 |
| Versione Corrente | 0.1.3 |
| Ultimo Aggiornamento | 2020-12-08 |
| Data di Pubblicazione | 2020-12-08 |
| Sviluppatore | kravse |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://kravse.dev |
| URL della Pagina di Aiuto | https://github.com/kravse/let-it-snow/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Let It Snow",
"developer": {
"name": "Jared Krause",
"url": "https:\/\/kravse.dev"
},
"version": "0.1.3",
"description": "Add cute snowflakes to your browser on every page.",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon.png",
"128": "images\/icon128.png"
},
"permissions": [
"storage",
"activeTab"
],
"browser_action": {
"default_icon": "images\/icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_idle",
"js": [
"assets\/christmas.js"
],
"css": [
"assets\/main.css"
]
}
]
} | |