initialize: function (ignoredProjectsStore) {
    this.ignoredProjectsStore = ignoredProjectsStore;

    this._load();

    Fluxo.Radio.subscribe("listenedProjectsChanged", this._load.bind(this));
  },
 _onToggleAccount: function() {
   Fluxo.Radio.publish("listenedProjectsChanged");
   chrome.runtime.getBackgroundPage(function(page) { page.location.reload(); });
 }