diff --git a/src/Linkification/Linkify.coffee b/src/Linkification/Linkify.coffee
index 204ce9fa5..591f13173 100755
--- a/src/Linkification/Linkify.coffee
+++ b/src/Linkification/Linkify.coffee
@@ -342,6 +342,31 @@ Linkify =
el: (a) ->
$.el 'iframe',
src: "http://strawpoll.me/embed_1/#{a.dataset.uid}"
+ ,
+ key: 'TwitchTV'
+ regExp: /.*(?:twitch.tv\/)([^#\&\?]*).*/
+ style: "border: none; width: 640px; height: 360px;"
+ el: (a) ->
+ if result = /(\w+)\/(?:[a-z]\/)?(\d+)/i.exec a.dataset.uid
+ [_, channel, chapter] = result
+
+ $.el 'object',
+ data: 'http://www.twitch.tv/widgets/archive_embed_player.swf'
+ innerHTML: """
+
+
+"""
+
+ else
+ channel = (/(\w+)/.exec a.dataset.uid)[0]
+
+ $.el 'object',
+ data: "http://www.twitch.tv/widgets/live_embed_player.swf?channel=#{channel}"
+ innerHTML: """
+
+
+
+"""
,
key: 'Vocaroo'
regExp: /.*(?:vocaroo.com\/)([^#\&\?]*).*/