GroupMe Dark Mode
This extension adds a dark mode to the GroupMe web app
什么是GroupMe Dark Mode?
GroupMe Dark Mode是由2catteam开发的Chrome扩展程序,该扩展的主要功能是“This extension adds a dark mode to the GroupMe web app”。
扩展截图
下载GroupMe Dark Mode扩展crx文件
下载GroupMe Dark Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a dark mode to the GroupMe web app. It's not the best theme in the world, and the extension isn't the most performant, but I like to think it's good enough
扩展基本信息
名称 | GroupMe Dark Mode |
ID | gcjcbmopidlbcnnekgjaifhmlmkjikgd |
官方URL | https://chromewebstore.google.com/detail/groupme-dark-mode/gcjcbmopidlbcnnekgjaifhmlmkjikgd |
简介 | This extension adds a dark mode to the GroupMe web app |
文件大小 | 483 KB |
安装次数 | 118 |
当前版本 | 3.0 |
更新时间 | 2023-03-21 |
上架时间 | 2022-02-14 |
开发者 | 2catteam |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/2CATteam/GroupMeDarkMode |
帮助页面URL | https://github.com/2CATteam/GroupMeDarkMode/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GroupMe Dark Mode", "description": "This extension adds a dark mode to the GroupMe web app", "version": "3.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/web.groupme.com\/*", "*:\/\/beta.groupme.com\/*", "*:\/\/app.groupme.com\/*" ], "js": [ "GroupMeDarkMode.js" ], "run_at": "document_start" } ], "host_permissions": [ "*:\/\/web.groupme.com\/*", "*:\/\/beta.groupme.com\/*", "*:\/\/app.groupme.com\/*" ], "icons": { "128": "icons\/Icon-128.png", "96": "icons\/Icon-96.png", "64": "icons\/Icon-64.png", "48": "icons\/Icon-48.png", "32": "icons\/Icon-32.png", "16": "icons\/Icon-16.png" } } |