Bonho 769 Report post Posted June 12, 2016 Убран правый блок, добавлен статус (онлайн\оффлайн), кол-во сообщений и репутация рядом с ником пользователя 1. Скачать расширение Tampermonkey (Chrome, Firefox) 2. Добавить туда скрипт // ==UserScript== // @name valkyrie-wow Custom Script // @version 1.1 // @author bonho // @match https://*valkyrie-wow.org/forum* // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function() { 'use strict'; $('#index_stats').remove(); $('#board_index').css('padding-right', '0px'); $('.foot').remove(); $('#footer_utilities').remove(); function getUrlVars(url) { var vars = {}; var parts = url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m, key, value) { vars[key] = value; }); return vars; } function addUserStat(id, online, stat) { var user_links = $('a[hovercard-id="' + id + '"]').each(function(k, userObj) { // console.log(userObj); //online status var online_circle = $("<div/>").css({ "width": "6px", "height": "6px", "-webkit-border-radius": "4px", "-moz-border-radius": "4px", "border-radius": "5px", "background": online ? "green" : "red", "display": "inline-block", "margin-left": "3px", "border": "2px solid #FFF", "box-shadow": "0 0 2px #888", "vertical-align": "middle", "opacity": online ? 0.8 : 0.3 }); $(userObj).append(online_circle); //stat var stat_span = $("<span/>").css({ "font-size": "smaller", "font-weight": "bold", "padding-left": "3px", "opacity": 0.5, "vertical-align":"bottom" }); stat_span.html(stat); $(userObj).append(stat_span); }); } var member_ids = {}; var member_links = $('a[hovercard-ref="member"]').each(function(k, v) { var href = $(v).attr('href'); var user_id = (getUrlVars(href)).showuser; // console.log(user_id); member_ids[user_id] = null; }); console.log('Found member links -', member_links.length, 'effective -', Object.keys(member_ids).length); $.each(member_ids, function( id, n ) { $.ajax({ url: "https://valkyrie-wow.org/forum/index.php", type: "get", //send it through get method data: { app: 'members', module: 'ajax', secure_key: ipb.vars.secure_hash, section: 'card', mid: id }, success: function(response) { var rep = $('.reputation', response).children().first().html(); var msgs = $('dt:contains("Сообщений: ")', response).next().html(); var online = $('span.ipsBadge_green', response).length == 1; console.log('id', id, 'rep', rep, 'msgs', msgs, 'online', online); addUserStat(id, online, msgs + ' [' + ((rep.indexOf('-') == -1 && parseInt(rep) > 0) ? '+' : '') + rep + ']'); }, error: function(xhr) { console.log('error', xhr); } }); }); })(); 3. Пожинать плоды 1 Share this post Link to post Share on other sites
Yo-Yo 367 Report post Posted June 12, 2016 Полезненько для начинающих. Старички же друг друга в лицо ник знают. 0 Share this post Link to post Share on other sites
Bonho 769 Report post Posted June 12, 2016 Р - Разнообразие 0 Share this post Link to post Share on other sites
Motorbreath 923 Report post Posted June 12, 2016 красные фломастеры быстрее, это все знают. 2 Share this post Link to post Share on other sites
Berloga 3 Report post Posted June 12, 2016 круто,щас попробую 0 Share this post Link to post Share on other sites