Android iMessage Messages Theme
A Chrome Extension that gives the Android Messages Web Client an iMessage Theme
What is Android iMessage Messages Theme?
Android iMessage Messages Theme is a Chrome extension developed by johnuberbacher, and its main feature is "A Chrome Extension that gives the Android Messages Web Client an iMessage Theme".
Extension Screenshots
Download Android iMessage Messages Theme Extension CRX File
Download Android iMessage Messages Theme extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Android iMessage Messages Theme |
ID | gckjoaicbopdnkkkcmbhmamioeepjjkn |
Official URL | https://chromewebstore.google.com/detail/android-imessage-messages/gckjoaicbopdnkkkcmbhmamioeepjjkn |
Description | A Chrome Extension that gives the Android Messages Web Client an iMessage Theme |
File Size | 40.19 KB |
Installation Count | 1,663 |
Current Version | 0.0.1 |
Last Updated | 2019-12-01 |
Publish Date | 2019-12-01 |
Rating | 1.54/5 Total 13 Ratings |
Developer | johnuberbacher |
Payment Type | free |
Supported Languages | 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" } ] } |