Fixes new expandos that break on the old redesign
目前為
// ==UserScript==
// @name fix-reddit-posts
// @namespace http://azzurite.tv/
// @version 1.1
// @description Fixes new expandos that break on the old redesign
// @author You
// @match https://*.reddit.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
const weirdExpandos = document.querySelectorAll('[data-cachedhtml]');
[].slice.call(weirdExpandos).forEach((expando) => {
expando.innerHTML = expando.dataset.cachedhtml;
});
}, 2000);
})();