ChordWikiShowNotes

コードの構成音を示すプログラムです。

// ==UserScript==
// @name         ChordWikiShowNotes
// @namespace    https://twitter.com/graphemec1uster
// @version      1.0
// @description  コードの構成音を示すプログラムです。
// @author       ぐらふぃーむ
// @match        *://ja.chordwiki.org/wiki*
// @noframes
// ==/UserScript==

var script = document.createElement("script");
script.src = "https://graphemecluster.github.io/ChordNote.js";
script.onload = function() {
	[].forEach.call(document.getElementsByClassName("chord"), function(item) {
		var chord = item.innerText, div = document.createElement("div");
		div.innerText = parseContent(chord);
		div.style.fontSize = "70%";
		div.style.lineHeight = "50%";
		div.style.color = "green";
		div.style.marginTop = "10px";
		item.innerHTML = "";
		item.appendChild(div);
		div = document.createElement("div");
		div.innerText = chord;
		item.appendChild(div);
		item.style.display = "inline-block";
	});
};
document.getElementsByTagName("head")[0].appendChild(script);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址