Highlight anon replies

make it so that mods comments show up with the little line on the left side

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Highlight anon replies
// @namespace    metafilter
// @version      0.1
// @description  make it so that mods comments show up with the little line on the left side
// @author       [email protected]
// @grant        none
// @include      *://ask.metafilter.com/*
// ==/UserScript==
/* jshint -W097 */
'use strict';

// requested in a comment: http://metatalk.metafilter.com/19656/Where-are-you-located-Where-are-you-located-Where-are-you-located#801909 

var comment_identifier = 'class="comments"';
var indicator_text = "From the OP";
var allowed_posters = ["cortex", "restless_nomad", "taz", "LobsterMitten", "goodnewsfortheinsane", "Eyebrows McGee", "pb", "vacapinta", "jessamyn"]; //http://faq.metafilter.com/#33 + jessamyn for historical threads

var comments = document.getElementsByClassName("comments");

var select_this_comment = function(cmt){
    if (cmt.innerText.toLowerCase().indexOf(indicator_text.toLowerCase()) < 0) { //console.log("not by OP");
        return false; }
    for (var i in allowed_posters){
        if (cmt.children[1].innerText.toLowerCase().indexOf(allowed_posters[i].toLowerCase()) >= 0) {
            console.log("Anon update posted by", allowed_posters[i]);
            return cmt;
        }
       // console.log(allowed_posters[i], "not found");
    }
    return false; //didn't find a mod name 
};

var responses = [];
for (var i =0; i<comments.length; i++) {
    
    var comment = comments[i];
   // console.log("working on ", comment);
    if (!comment.innerHTML) { continue; }
    if (comment.className != "comments") { 
        //console.log("bad element: ", comment); 
        continue; }
    else {
        //console.log("comment found", comment);
        if (select_this_comment(comment)){ 
            console.log("found response ", responses.length+1);
            responses[responses.length] = comment; 
        }
    }
}
console.log("found:", responses);
for (var j = 0; j < responses.length; j++){
    console.log(responses[j]);
    responses[j].className += " bestleft"
}