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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |