social stream

deobfuscated for research purposes

by jack gold

HTML

<script src="http://www.designchemical.com/blog/wp-content/themes/dc2011/dcwss/js/jquery.social.stream.wall.1.3.js"></script>
<div id="social-stream"></div>

JavaScript

/*
  * DC jQuery Social Stream
  * Copyright (c) 2013 Design Chemical
  * http://www.designchemical.com/blog/index.php/premium-jquery-plugins/jquery-social-stream-plugin/
  * Version 1.5 (24-2-2013)
  */
 (function ($) {
     SocialStreamObject = function (el, options) {
         this.create(el, options)
     };
     $.extend(SocialStreamObject.prototype, {
         version: "1.5",
         create: function (el, options) {
             this.defaults = {
                 feeds: {
                     facebook: {
                         id: "",
                         intro: "Posted",
                         out: "intro,thumb,title,text,user,share",
                         text: "content",
                         comments: 3,
                         image_width: 6,
                         icon: "facebook.png"
                     },
                     twitter: {
                         id: "",
                         intro: "Tweeted",
                         search: "Tweeted",
                         out: "intro,thumb,text,share",
                         retweets: false,
                         replies: false,
                         images: "",
                         url: "http://www.designchemical.com/blog/wp-content/themes/dc2011/dcsns/twitter.php",
                         icon: "twitter.png"
                     },
                     google: {
                         id: "",
                         intro: "Shared",
                         out: "intro,thumb,title,text,share",
                         api_key: "",
                         image_height: 75,
                         image_width: 75,
                         shares: true,
                         icon: "google.png"
                     },
                     youtube: {
                         id: "",
                         intro: "Uploaded,Favorite,New Video",
                         search: "Search",
                         out: "intro,thumb,title,text,user,share",
   ...