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 |
| 公式URL | 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 |
| Eメール | [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
} | |