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”。

扩展截图

screenshot

下载Android iMessage Messages Theme扩展crx文件

下载Android iMessage Messages Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
        }
    ]
}