RedditChat
Chat with other users in real-time on Reddit.com
Co to jest RedditChat?
RedditChat to rozszerzenie Chrome opracowane przez mattstrikes, a jego główną funkcją jest „Chat with other users in real-time on Reddit.com”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RedditChat
Pobierz pliki rozszerzeń RedditChat w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nfnghkklhcimalbkmgonecegncodeajo |
Oficjalny URL | https://chrome.google.com/webstore/detail/redditchat/nfnghkklhcimalbkmgonecegncodeajo |
Opis | Chat with other users in real-time on Reddit.com |
Rozmiar pliku | 198 KB |
Liczba instalacji | 13 |
Aktualna Wersja | 0.0.4 |
Ostatnia Aktualizacja | 2014-06-13 |
Data Publikacji | 2014-06-13 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | mattstrikes |
Typ Płatności | free |
Obsługiwane Języki | 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.*" ] } |