NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Chat Everywhere
// @version 0.1
// @description Encrypted Chat using on XMPP and OTR running on all websites
// @author select
// @license MIT
// @include http*://*
// @resource converseCSS https://raw.githubusercontent.com/jcbrand/converse.js/master/css/converse.min.css
// @require https://raw.githubusercontent.com/jcbrand/converse.js/master/builds/converse.min.js
// @grant GM_addStyle
// @grant GM_getResourceText
// ==/UserScript==
var newCSS = GM_getResourceText ("converseCSS");
GM_addStyle (newCSS);
require(['converse'], function (converse) {
converse.initialize({
bosh_service_url: 'https://bind.conversejs.org', // Please use this connection manager only for testing purposes
i18n: locales.en, // Refer to ./locale/locales.js to see which locales are supported
show_controlbox_by_default: true,
roster_groups: true
});
});