Christmasify 🎄 any Website!
Adds a christmas theme to any website you visit including google, facebook youtube and more!
Cos'è Christmasify 🎄 any Website!?
Christmasify 🎄 any Website! è un'estensione di Chrome sviluppata da calada2, e la sua funzione principale è "Adds a christmas theme to any website you visit including google, facebook youtube and more!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Christmasify 🎄 any Website!
Scarica i file di estensione Christmasify 🎄 any Website! 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
Adds a christmas theme to any website you visit including google, facebook youtube and more! The christmas theme includes snowing, christmas ornaments and a beautiful pine forest! Informazioni di Base sull'Estensione
| Nome | |
| ID | cacclgenandnjhjmckiaadkijjpaomcg |
| URL Ufficiale | https://chromewebstore.google.com/detail/christmasify-%F0%9F%8E%84-any-websi/cacclgenandnjhjmckiaadkijjpaomcg |
| Descrizione | Adds a christmas theme to any website you visit including google, facebook youtube and more! |
| Dimensione del File | 194 KB |
| Conteggio Installazioni | 267 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-01-31 |
| Data di Pubblicazione | 2021-01-30 |
| Valutazione | 3.25/5 Totale 4 Valutazioni |
| Sviluppatore | calada2 |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Christmasify \ud83c\udf84 any Website!",
"version": "1.0",
"description": "Adds a christmas theme to any website you visit including google, facebook youtube and more!",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"web_accessible_resources": [
"images\/snow.png",
"images\/ornament0.png",
"images\/ornament1.png",
"images\/ornament2.png",
"images\/ornament3.png",
"images\/forest.png",
"images\/forest2.png"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"contentScript.js"
]
}
],
"manifest_version": 2
} | |