Christmasify 🎄 any Website!
Adds a christmas theme to any website you visit including google, facebook youtube and more!
Co to jest Christmasify 🎄 any Website!?
Christmasify 🎄 any Website! to rozszerzenie Chrome opracowane przez calada2, a jego główną funkcją jest „Adds a christmas theme to any website you visit including google, facebook youtube and more!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Christmasify 🎄 any Website!
Pobierz pliki rozszerzeń Christmasify 🎄 any Website! 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
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cacclgenandnjhjmckiaadkijjpaomcg |
| Oficjalny URL | https://chromewebstore.google.com/detail/christmasify-%F0%9F%8E%84-any-websi/cacclgenandnjhjmckiaadkijjpaomcg |
| Opis | Adds a christmas theme to any website you visit including google, facebook youtube and more! |
| Rozmiar pliku | 194 KB |
| Liczba instalacji | 267 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2021-01-31 |
| Data Publikacji | 2021-01-30 |
| Ocena | 3.25/5 Łącznie 4 Oceny |
| Deweloper | calada2 |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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
} | |