MAX30 / smotriChatResizer

// ==UserScript==
// @name smotriChatResizer
// @description Saves the position and size of the chat window
// @version 1.1
// @author  Max Max
// @license MIT
// @include http://smotri.com/live/*
// @include http://*/live/*
// @match http://smotri.com/live/*
// @match http://*/live/*
// @icon http://i58.tinypic.com/1tpu1l.png
// @run-at document-end
// @grant none
// ==/UserScript==

// [1] не запускаем скрипт во фреймах
if (window.self != window.top) {return;}
// [2] дополнительная проверка для хрома
if (!window.location.href.match(/\/live\//)) {return;} 
// [3] не хлопаем ушами - без регистрации выход
if (!document.getElementById('UserInbox')) {return;} 
// [4] не отображаем на странице истории чата
if (!document.getElementById('flashcontent')) {return;}