RedditChat
Chat with other users in real-time on Reddit.com
Cos'è RedditChat?
RedditChat è un'estensione di Chrome sviluppata da mattstrikes, e la sua funzione principale è "Chat with other users in real-time on Reddit.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RedditChat
Scarica i file di estensione RedditChat in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | nfnghkklhcimalbkmgonecegncodeajo |
URL Ufficiale | https://chrome.google.com/webstore/detail/redditchat/nfnghkklhcimalbkmgonecegncodeajo |
Descrizione | Chat with other users in real-time on Reddit.com |
Dimensione del File | 198 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2014-06-13 |
Data di Pubblicazione | 2014-06-13 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | mattstrikes |
Tipo di Pagamento | free |
Lingue Supportate | 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.*" ] } |