RedditChat
Chat with other users in real-time on Reddit.com
RedditChat란 무엇입니까?
RedditChat은(는) mattstrikes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chat with other users in real-time on Reddit.com"입니다.
확장 프로그램 스크린샷
RedditChat 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.*" ] } |