tumblr-megaeditor-tag-fix

unescapes non-ascii chars escaped on tumblr mega-editor's tag edit tab.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name tumblr-megaeditor-tag-fix
// @description unescapes non-ascii chars escaped on tumblr mega-editor's tag edit tab.
// @description:ja Tumblrの複数投稿編集ツール(mega-editor)での日本語タグなどの非Asciiタグが文字化け(エスケープ: %uXXXX形式に変換)されてしまうのを修正します。
// @namespace http://reppets.hatenablog.com/
// @version 1.0.0
// @compatible firefox (verified with 43.0.4)
// @compatible chrome (verified with  47.0.2526.111)
// @license https://raw.githubusercontent.com/reppets/tumblr-megaeditor-tag-fix/master/LICENSE
// @include https://www.tumblr.com/mega-editor/*
// ==/UserScript==
var observer = new MutationObserver(function(records, observer) {
	var nodeList = document.querySelectorAll('#tags label');
	var nodes = Array.prototype.slice.call(nodeList,0);  // to use forEach() method.
	nodes.forEach(function(elem, index, array){
		elem.textContent = unescape(elem.textContent);
	});
});

observer.observe(document.getElementById('tags'), {childList: true});