5ch_chikan2

5ちゃんねるの文字列を変換する。

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        5ch_chikan2
// @namespace   https://catherine.v0cyc1pp.com/5ch_chikan2.user.js
// @include     http://*.5ch.net/*
// @include     https://*.5ch.net/*
// @author      greg10
// @run-at      document-end
// @license     GPL 3.0
// @version     2.0
// @grant       none
// @description 5ちゃんねるの文字列を変換する。
// ==/UserScript==
console.log("5ch_chikan2 start");

//================================
// Configurations
//   - 変換文字列を指定してください。
var g_list = [
    ["/変換前の文字列/", "変換後の文字列"],
    ["/ブス/", "bs"],
];
//================================



// 置換
function chikan() {
    document.querySelectorAll("span,dd,.message,.name").forEach(function(elem) {
        var str = elem.innerHTML;
        //console.log("str="+str);
        if (str == null || str == undefined) {
            str = "";
        }
        for (var i = 0; i < g_list.length; ++i) {
            var pair = g_list[i];

            var mae = pair[0];
            var ato = pair[1];

            //console.log("mae="+mae);
            //console.log("ato="+ato);

            //var obj = new RegExp( mae, "i");
            var index = str.search(eval(mae));
            if (index != -1) {
                var result = str.replace(eval(mae), ato);
                elem.innerHTML = result;
            }
        }
    });
}

function main() {
    chikan();
}


main();