Android iMessage Messages Theme
A Chrome Extension that gives the Android Messages Web Client an iMessage Theme
Android iMessage Messages Theme란 무엇입니까?
Android iMessage Messages Theme은(는) johnuberbacher에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension that gives the Android Messages Web Client an iMessage Theme"입니다.
확장 프로그램 스크린샷
Android iMessage Messages Theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you're a fan of the OSX iMessage UI and layout on desktop, this Chrome Extension gives the Android Messages Web Client an iMessage Theme. It's even compatible when adding Messages to your desktop as a Chrome App! (Leave Dark Mode off for the theme to work properly) Required: Messages for Web https://messages.google.com/web/ Leave any comments or suggestions you'd like to see in the next update.
확장 프로그램 기본 정보
이름 | Android iMessage Messages Theme |
ID | gckjoaicbopdnkkkcmbhmamioeepjjkn |
공식 URL | https://chromewebstore.google.com/detail/android-imessage-messages/gckjoaicbopdnkkkcmbhmamioeepjjkn |
설명 | A Chrome Extension that gives the Android Messages Web Client an iMessage Theme |
파일 크기 | 40.19 KB |
설치 횟수 | 1,663 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2019-12-01 |
출시 날짜 | 2019-12-01 |
평점 | 1.54/5 총 13 개의 평점 |
개발자 | johnuberbacher |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Android iMessage Messages Theme", "version": "0.0.1", "description": "A Chrome Extension that gives the Android Messages Web Client an iMessage Theme", "icons": { "16": "images\/icon-32.png", "48": "images\/icon-64.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": { "16": "images\/icon-32.png", "48": "images\/icon-64.png", "128": "images\/icon-128.png" }, "default_title": "Android iMessage Messages Theme" }, "web_accessible_resources": [ "images\/bg.jpg", "style.css" ], "permissions": [ "https:\/\/messages.google.com\/web\/*" ], "content_scripts": [ { "matches": [ "https:\/\/messages.google.com\/web\/*" ], "css": [ "style.css" ], "js": [ "script.js" ], "run_at": "document_idle" } ] } |