Qiita投稿の編集画面に、投稿本文の文字数をカウントして表示してくれるChrome用のブックマークレットです。
ブックマークレット
const counter = $("<small id=\"char_counter\">").prependTo(".editorFooter");
const preview = $(".js-preview");
function update() {
const all = preview.text().replace(/\s/g, "").length;
const text = preview.children().filter(":not(.code-frame)").text().replace(/\s/g, "").length;
counter.text(all + "文字 (テキスト: " + text + "文字)");
}
(new MutationObserver(update)).observe(preview[0], { childList: true});
update();
サンプル
