SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
SO Dark Chat +란 무엇입니까?
SO Dark Chat +은(는) rlemon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides a new dark theme for stackoverflow chat."입니다.
확장 프로그램 스크린샷
SO Dark Chat + 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an ongoing development effort based on https://github.com/oliversalzburg/se-chat-dark-theme this adds some additional fixes and features (as well as a few modifications) to the existing stackoverflow chat interface. All new features and repository! User colours. Code Highlighting. Webm/Gifv oneboxing. Code Editor. And More!
확장 프로그램 기본 정보
이름 | SO Dark Chat + |
ID | bbkjccfnenmgidehjhaabamobpbaaghh |
공식 URL | https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh |
설명 | Provides a new dark theme for stackoverflow chat. |
파일 크기 | 6.61 MB |
설치 횟수 | 80 |
현재 버전 | 0.1.5 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 4.85/5 총 13 개의 평점 |
개발자 | rlemon |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/rlemon/se-chat-dark-theme-plus |
도움말 페이지 URL | https://github.com/rlemon/se-chat-dark-theme-plus/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SO Dark Chat +", "description": "Provides a new dark theme for stackoverflow chat.", "version": "0.1.5", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/chat.stackoverflow.com\/*", "*:\/\/chat.stackexchange.com\/*", "*:\/\/chat.meta.stackexchange.com\/*" ], "js": [ "script.js" ], "css": [ "css\/style.css", "CodeMirror\/css\/codemirror.css", "CodeMirror\/css\/monokai.css" ] } ], "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "icons": { "128": "img\/icon_128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ "js\/*.js", "css\/*.css", "images\/*.svg", "CodeMirror\/*", "CodeMirror\/*\/*" ] } |