RedditChat
Chat with other users in real-time on Reddit.com
Что такое RedditChat?
RedditChat - это расширение Chrome, разработанное mattstrikes, и его основная функция - "Chat with other users in real-time on Reddit.com".
Снимки экрана расширения
Скачать файл CRX расширения RedditChat
Скачайте файлы расширений RedditChat в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.*" ] } |