SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
SO Dark Chat + क्या है?
SO Dark Chat + rlemon द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides a new dark theme for stackoverflow chat."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SO Dark Chat + एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*\/*" ] } |