Christmasify 🎄 any Website!
Adds a christmas theme to any website you visit including google, facebook youtube and more!
What is Christmasify 🎄 any Website!?
Christmasify 🎄 any Website! is a Chrome extension developed by calada2, and its main feature is "Adds a christmas theme to any website you visit including google, facebook youtube and more!".
Extension Screenshots
Download Christmasify 🎄 any Website! Extension CRX File
Download Christmasify 🎄 any Website! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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! Extension Basic Information
| Name | |
| ID | cacclgenandnjhjmckiaadkijjpaomcg |
| Official URL | https://chromewebstore.google.com/detail/christmasify-%F0%9F%8E%84-any-websi/cacclgenandnjhjmckiaadkijjpaomcg |
| Description | Adds a christmas theme to any website you visit including google, facebook youtube and more! |
| File Size | 194 KB |
| Installation Count | 267 |
| Current Version | 1.0 |
| Last Updated | 2021-01-31 |
| Publish Date | 2021-01-30 |
| Rating | 3.25/5 Total 4 Ratings |
| Developer | calada2 |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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
} | |