Christmasify 🎄 any Website!
Adds a christmas theme to any website you visit including google, facebook youtube and more!
什麼是Christmasify 🎄 any Website!?
Christmasify 🎄 any Website!是由calada2開發的Chrome擴展程式,該擴展的主要功能是“Adds a christmas theme to any website you visit including google, facebook youtube and more!”。
擴展截圖
下載Christmasify 🎄 any Website!擴展crx文件
下載Christmasify 🎄 any Website!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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! 擴展基本資訊
| 名稱 | |
| ID | cacclgenandnjhjmckiaadkijjpaomcg |
| 官方網址 | https://chromewebstore.google.com/detail/christmasify-%F0%9F%8E%84-any-websi/cacclgenandnjhjmckiaadkijjpaomcg |
| 簡介 | Adds a christmas theme to any website you visit including google, facebook youtube and more! |
| 檔案大小 | 194 KB |
| 安裝次數 | 267 |
| 目前版本 | 1.0 |
| 更新時間 | 2021-01-31 |
| 上架時間 | 2021-01-30 |
| 評分 | 3.25/5 共 4 次評分 |
| 開發者 | calada2 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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
} | |