Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Подсветка ответов ((You)) для синча
- // @version 0.1
- // @description none
- // @author (You)
- // @match *://syn-ch.com/*
- // @exclude *catalog*
- // @grant none
- // @version 1.3
- // @require http://code.jquery.com/jquery-1.11.1.min.js
- // @run-at document-end
- // ==/UserScript==
- $(document).ready(
- function() {
- $('body').append('<input id="de-highlight-you" type="button" value="Найти ответы">');
- var button=document.getElementById("de-highlight-you");
- button.onclick=function(){
- var posts = document.querySelectorAll('.post.reply');
- for (var i = 0; i < posts.length; i++){
- if(posts[i].querySelectorAll('.de-ref-my').length > 0)
- posts[i].style.backgroundColor = '#9FE89F';
- }
- highlightPosts(); // Call after fetching and displaying new posts.
- };
- });
Advertisement
Add Comment
Please, Sign In to add comment