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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
| 이메일 | [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
} | |