// ==UserScript==
// @name VDMeuf Fontgröße-Korrektur
// @namespace viedemeuf
// @include http://viedemeuf.blogspot.com/*
// ==/UserScript==
var all;
all = document.evaluate(
"//span[@class='Apple-style-span']",
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < all.snapshotLength; i++) {
thisE = all.snapshotItem(i);
thisE.style.fontSize = '100%';
}
Keine Kommentare:
Kommentar veröffentlichen