Christmasify 🎄 any Website!
Adds a christmas theme to any website you visit including google, facebook youtube and more!
Hvad er Christmasify 🎄 any Website!?
Christmasify 🎄 any Website! er en Chrome-udvidelse udviklet af calada2, og dens hovedfunktion er "Adds a christmas theme to any website you visit including google, facebook youtube and more!".
Udvidelsesskærmbilleder
Download Christmasify 🎄 any Website!-udvidelses-CRX-fil
Download Christmasify 🎄 any Website!-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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! Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cacclgenandnjhjmckiaadkijjpaomcg |
| Officiel URL | https://chromewebstore.google.com/detail/christmasify-%F0%9F%8E%84-any-websi/cacclgenandnjhjmckiaadkijjpaomcg |
| Beskrivelse | Adds a christmas theme to any website you visit including google, facebook youtube and more! |
| Filstørrelse | 194 KB |
| Antal Installationer | 267 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2021-01-31 |
| Udgivelsesdato | 2021-01-30 |
| Bedømmelse | 3.25/5 Samlet 4 Bedømmelser |
| Udvikler | calada2 |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |