Android iMessage Messages Theme
A Chrome Extension that gives the Android Messages Web Client an iMessage Theme
Vad är Android iMessage Messages Theme?
Android iMessage Messages Theme är en Chrome-tillägg utvecklad av johnuberbacher, och dess huvudfunktion är "A Chrome Extension that gives the Android Messages Web Client an iMessage Theme".
Tilläggsskärmbilder
Ladda ner Android iMessage Messages Theme-förlängningens CRX-fil
Ladda ner Android iMessage Messages Theme-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Android iMessage Messages Theme |
ID | gckjoaicbopdnkkkcmbhmamioeepjjkn |
Officiell webbadress | https://chromewebstore.google.com/detail/android-imessage-messages/gckjoaicbopdnkkkcmbhmamioeepjjkn |
Beskrivning | A Chrome Extension that gives the Android Messages Web Client an iMessage Theme |
Filstorlek | 40.19 KB |
Antal Installationer | 1,663 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2019-12-01 |
Publiceringsdatum | 2019-12-01 |
Betyg | 1.54/5 Totalt 13 Betyg |
Utvecklare | johnuberbacher |
Betalningssätt | free |
Stödda Språk | 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" } ] } |