Session Desktop - Onion routing based messenger
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
lilia ac5c359053 Fix strange loop in sendMessageProto
Don't declare a new `var i`  within the scope of an existing `var i`.

Fixes #63
11 years ago
css Refactor options page and style using bootstrap 11 years ago
images with love from tyler 11 years ago
js Fix strange loop in sendMessageProto 11 years ago
js-deps Avoid background thread overwriting outgoing messages 11 years ago
nacl JS ed25519 11 years ago
protos Fix a missing function and dont blow up on delivery receipts 11 years ago
stylesheets Quickfix for wonky tagsinput 11 years ago
test Reorganize message view test a bit 11 years ago
GPL LGPL license (I'd like to be an axolotl/TS JS lib in the future) 11 years ago
LGPL LGPL license (I'd like to be an axolotl/TS JS lib in the future) 11 years ago
README.md Update readme 11 years ago
background.html Add phone number utils to background page 11 years ago
icon.png Random things from James-Firth incl update icon 11 years ago
index.html More frontend groups fixes 11 years ago
manifest.json use new index page for popup 11 years ago
options.html Refactor options page and style using bootstrap 11 years ago
popup.html Fix message sending 11 years ago
test.html Add missing blanket-js file 11 years ago

README.md

TextSecure Chromium Implementation

This is very early stuff and exists primarily to get the crypto in place. This does not currently work, dont bother trying to use it seriously yet

Getting Started with Development

  • Clone the repo
  • Open Chrome
  • Go to chrome://extensions/
  • Enable developer mode (checkbox on the top right)
  • Click "Load unpacked extension..."
  • Point to the repo's directory

Tests

Please write tests! Our testing framework is mocha and our assertion library is chai:

Tips/Tricks

  • Loading the test.html page may read, write or clear localStorage. To avoid having to choose between running tests and preserving your existing messages, keys, and other extension data, much of the test suite can be run by starting a local webserver in the repository root, e.g. python -m SimpleHTTPServer. You can then access the test page at http://0.0.0.0:8000/test.html.