Android iMessage Messages Theme

A Chrome Extension that gives the Android Messages Web Client an iMessage Theme

Co to jest Android iMessage Messages Theme?

Android iMessage Messages Theme to rozszerzenie Chrome opracowane przez johnuberbacher, a jego główną funkcją jest „A Chrome Extension that gives the Android Messages Web Client an iMessage Theme”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Android iMessage Messages Theme

Pobierz pliki rozszerzeń Android iMessage Messages Theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Android iMessage Messages Theme Android iMessage Messages Theme
ID gckjoaicbopdnkkkcmbhmamioeepjjkn
Oficjalny URL https://chromewebstore.google.com/detail/android-imessage-messages/gckjoaicbopdnkkkcmbhmamioeepjjkn
Opis A Chrome Extension that gives the Android Messages Web Client an iMessage Theme
Rozmiar pliku 40.19 KB
Liczba instalacji 1,663
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2019-12-01
Data Publikacji 2019-12-01
Ocena 1.54/5 Łącznie 13 Oceny
Deweloper johnuberbacher
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}