RedditChat
Chat with other users in real-time on Reddit.com
RedditChat क्या है?
RedditChat mattstrikes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chat with other users in real-time on Reddit.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RedditChat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Add a real-time chat window to all Reddit comment threads and talk to other RedditChat users. RedditChat connects you with likeminded people to discuss current events, great for: * breaking news * sports games * AMAs * TV shows Note: user must be logged in to Reddit to use!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nfnghkklhcimalbkmgonecegncodeajo |
आधिकारिक URL | https://chrome.google.com/webstore/detail/redditchat/nfnghkklhcimalbkmgonecegncodeajo |
विवरण | Chat with other users in real-time on Reddit.com |
फ़ाइल का आकार | 198 KB |
स्थापना संख्या | 13 |
वर्तमान संस्करण | 0.0.4 |
अंतिम अपडेट | 2014-06-13 |
प्रकाशन तिथि | 2014-06-13 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | mattstrikes |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RedditChat", "description": "Chat with other users in real-time on Reddit.com", "version": "0.0.4", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_title": "RedditChat - real-time chat for Reddit!", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "https:\/\/www.reddit.com\/*", "http:\/\/www.reddit.com\/*", "tabs", "activeTab", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*" ], "js": [ "socketio.js", "insto.js", "jquery.js", "bootstrap.min.js", "redditchat.js" ], "css": [ "bootstrap.min.css", "redditchat.css" ] } ], "web_accessible_resources": [ "icon.png", "glyphicons-halflings-regular.*" ] } |