HipChat Web Xtras
Adds additional features to the HipChat web interface.
Cos'è HipChat Web Xtras?
HipChat Web Xtras è un'estensione di Chrome sviluppata da jaswsinc.com, e la sua funzione principale è "Adds additional features to the HipChat web interface.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HipChat Web Xtras
Scarica i file di estensione HipChat Web Xtras 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
Adds Xtra features to the HipChat web interface. Current Xtras Include... - Custom HipChat web themes! - Zen Mode (compose chat messages fullscreen w/ keyboard shortcuts). - Tab Override (allows TAB key in message composition). Great for code samples. - Automatic quoted replies in HipChat (just like GitHub). Select any text and press the `R` key for an automatic quoted reply in HipChat. - Options panel integrated w/ HipChat. This allows you to pick and choose the HipChat Web Xtras you'd like to enable.
Informazioni di Base sull'Estensione
Nome | HipChat Web Xtras |
ID | emcmdhbblifmpnanccioifmlokbmgicb |
URL Ufficiale | https://chromewebstore.google.com/detail/hipchat-web-xtras/emcmdhbblifmpnanccioifmlokbmgicb |
Descrizione | Adds additional features to the HipChat web interface. |
Dimensione del File | 751 KB |
Conteggio Installazioni | 14 |
Versione Corrente | 14.3.20 |
Ultimo Aggiornamento | 2014-03-22 |
Data di Pubblicazione | 2014-03-21 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | jaswsinc.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/WebSharks/HipChat-Web-Xtras |
URL della Pagina di Aiuto | https://github.com/WebSharks/HipChat-Web-Xtras/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "14.3.20", "name": "HipChat Web Xtras", "description": "Adds additional features to the HipChat web interface.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.hipchat.com\/chat*" ], "css": [ "styles\/web-xtras.css" ], "js": [ "scripts\/jquery.min.js", "scripts\/taboverride.min.js", "scripts\/web-xtras.js" ] } ], "permissions": [ "*:\/\/*.hipchat.com\/" ], "web_accessible_resources": [ "images\/*", "styles\/*", "scripts\/*" ] } |