SkyCrypt Themer
Create themes for SkyCrypt
SkyCrypt Themer란 무엇입니까?
SkyCrypt Themer은(는) Cookie_Wookie_7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create themes for SkyCrypt"입니다.
확장 프로그램 스크린샷
SkyCrypt Themer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SkyCrypt Themer lets you create and share Themes for SkyCrypt. Whether you are a SkyCrypt developer trying to make a new theme or a normal user that wants to add some color of your own SkyCrypt Themer is for you.
확장 프로그램 기본 정보
이름 | |
ID | eeeichgfigdfdmnbmfbeggaolpnhbffc |
공식 URL | https://chromewebstore.google.com/detail/skycrypt-themer/eeeichgfigdfdmnbmfbeggaolpnhbffc |
설명 | Create themes for SkyCrypt |
파일 크기 | 84.36 KB |
설치 횟수 | 42 |
현재 버전 | 3.0.0 |
최근 업데이트 | 2022-01-28 |
출시 날짜 | 2020-12-26 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Cookie_Wookie_7 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/nstringham/SkyCrypt-Themer |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SkyCrypt Themer", "version": "3.0.0", "description": "Create themes for SkyCrypt", "permissions": [ "storage", "declarativeContent" ], "icons": { "128": "assets\/logo-128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/sky.shiiyu.moe\/*" ], "js": [ "import-contentScript.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "contentScript.js" ], "matches": [ "https:\/\/sky.shiiyu.moe\/*" ] } ] } |