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ファイルをダウンロード
SO Dark Chat +拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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\/*\/*" ] } |